Add temporary compatibility layer for Tty.white.

This commit is contained in:
Markus Reiter 2016-10-01 20:15:17 +02:00
parent 884b268506
commit 1eab17235c
2 changed files with 9 additions and 0 deletions

View File

@ -15,3 +15,4 @@ require "compat/dependency_collector"
require "compat/language/haskell"
require "compat/xcode"
require "compat/software_spec"
require "compat/utils"

View File

@ -8,3 +8,11 @@ def shell_profile
else "~/.bash_profile"
end
end
module Tty
module_function
def white
reset.bold
end
end