@@ -4,9 +4,6 @@ lib = File.expand_path("../lib", __FILE__)
4
4
$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
5
5
require "jekyll-redirect-from/version"
6
6
7
- # See https://github.com/bbatsov/rubocop/issues/75
8
- require "english"
9
-
10
7
Gem ::Specification . new do |spec |
11
8
spec . name = "jekyll-redirect-from"
12
9
spec . version = JekyllRedirectFrom ::VERSION
@@ -17,7 +14,10 @@ Gem::Specification.new do |spec|
17
14
spec . homepage = "https://github.com/jekyll/jekyll-redirect-from"
18
15
spec . license = "MIT"
19
16
20
- spec . files = `git ls-files` . split ( $INPUT_RECORD_SEPARATOR)
17
+ # rubocop:disable Style/SpecialGlobalVars
18
+ spec . files = `git ls-files` . split ( $/)
19
+ # rubocop:enable Style/SpecialGlobalVars
20
+
21
21
spec . executables = spec . files . grep ( %r!^bin/! ) { |f | File . basename ( f ) }
22
22
spec . test_files = spec . files . grep ( %r!^(test|spec|features)/! )
23
23
spec . require_paths = [ "lib" ]
@@ -28,5 +28,4 @@ Gem::Specification.new do |spec|
28
28
spec . add_development_dependency "rake" , "~> 12.0"
29
29
spec . add_development_dependency "jekyll-sitemap" , "~> 0.8.1"
30
30
spec . add_development_dependency "rubocop" , "~> 0.43"
31
- spec . add_development_dependency "english" , "~> 0.6"
32
31
end
0 commit comments