From 5998e683e90f30e9de93c45aa01a9f0d91b28c73 Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr" Date: Sat, 1 Jul 2017 00:03:48 -0300 Subject: Require 'English' for rubocop autofixed files --- lib/highline.rb | 1 + lib/highline/question.rb | 1 + lib/highline/wrapper.rb | 2 ++ 3 files changed, 4 insertions(+) (limited to 'lib') 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 -- cgit v1.2.1