summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2017-06-29 03:44:00 -0300
committerAbinoam P. Marques Jr <abinoam@gmail.com>2017-06-29 03:44:00 -0300
commit74454525b43d340396fb64d147d9f620ebae40d5 (patch)
treea15fc7da5a8bc56b0a183dab4908ed2becf712e5
parent998e2171551687bf6a390b90d11636c17492c41a (diff)
downloadhighline-74454525b43d340396fb64d147d9f620ebae40d5.tar.gz
Redirect delegations to HighLine class
-rw-r--r--lib/highline/import.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/highline/import.rb b/lib/highline/import.rb
index 931d15b..c093a74 100644
--- a/lib/highline/import.rb
+++ b/lib/highline/import.rb
@@ -22,7 +22,7 @@ require "forwardable"
#
module Kernel
extend Forwardable
- def_delegators :$terminal, :agree, :ask, :choose, :say,
+ def_delegators :HighLine, :agree, :ask, :choose, :say,
:use_color=, :use_color?, :reset_use_color
end