From a22b5865fb4a9a6c4f5fbf56c955f19638e9a36e Mon Sep 17 00:00:00 2001 From: William Johnston Date: Tue, 1 Mar 2016 09:51:47 -0600 Subject: [PATCH] Add english require to affected files. --- capistrano.gemspec | 2 ++ features/support/vagrant_helpers.rb | 2 ++ spec/support/test_app.rb | 1 + 3 files changed, 5 insertions(+) diff --git a/capistrano.gemspec b/capistrano.gemspec index 4ac404d0..a46feb32 100644 --- a/capistrano.gemspec +++ b/capistrano.gemspec @@ -3,6 +3,8 @@ lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "capistrano/version" +require "English" + Gem::Specification.new do |gem| gem.name = "capistrano" gem.version = Capistrano::VERSION diff --git a/features/support/vagrant_helpers.rb b/features/support/vagrant_helpers.rb index c9f276f6..9a30d116 100644 --- a/features/support/vagrant_helpers.rb +++ b/features/support/vagrant_helpers.rb @@ -1,3 +1,5 @@ +require "English" + module VagrantHelpers extend self diff --git a/spec/support/test_app.rb b/spec/support/test_app.rb index 0770825c..6af53815 100644 --- a/spec/support/test_app.rb +++ b/spec/support/test_app.rb @@ -1,3 +1,4 @@ +require "English" require "fileutils" require "pathname"