diff options
author | Abinoam P. Marques Jr <abinoam@gmail.com> | 2017-07-01 00:03:48 -0300 |
---|---|---|
committer | Abinoam P. Marques Jr <abinoam@gmail.com> | 2017-07-01 00:03:52 -0300 |
commit | 5998e683e90f30e9de93c45aa01a9f0d91b28c73 (patch) | |
tree | 67a537ce9517ad4480f4fd00a89fe2c6141361a0 /lib | |
parent | 97888f5f91f9675ef2f7809fe1cb423abf6099c8 (diff) | |
download | highline-5998e683e90f30e9de93c45aa01a9f0d91b28c73.tar.gz |
Require 'English' for rubocop autofixed files
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/highline.rb | 1 | ||||
-rwxr-xr-x | lib/highline/question.rb | 1 | ||||
-rw-r--r-- | lib/highline/wrapper.rb | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/lib/highline.rb b/lib/highline.rb index 7612674..be5adda 100755 --- a/lib/highline.rb +++ b/lib/highline.rb @@ -10,6 +10,7 @@ # # This is Free Software. See LICENSE and COPYING for details. +require "English" require "erb" require "optparse" require "stringio" diff --git a/lib/highline/question.rb b/lib/highline/question.rb index 4d390dc..98b3fa9 100755 --- a/lib/highline/question.rb +++ b/lib/highline/question.rb @@ -8,6 +8,7 @@ # # This is Free Software. See LICENSE and COPYING for details. +require "English" require "optparse" require "date" require "pathname" diff --git a/lib/highline/wrapper.rb b/lib/highline/wrapper.rb index eb3c138..4b17666 100644 --- a/lib/highline/wrapper.rb +++ b/lib/highline/wrapper.rb @@ -1,5 +1,7 @@ # coding: utf-8 +require "English" + class HighLine # A simple Wrapper module that is aware of ANSI escape codes. # It compensates for the ANSI escape codes so it works on the |