We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace2f2b commit 7222bc7Copy full SHA for 7222bc7
Gemfile
@@ -57,9 +57,10 @@ if RUBY_VERSION <= '1.8.7'
57
gem 'rubyzip', '< 1.0'
58
end
59
60
-unless RUBY_VERSION >= '2.4.0'
+if RUBY_VERSION >= '2.0.0' && RUBY_VERSION < '2.2.0'
61
# our current rubocop version doesnt support the json version required by Ruby 2.4
62
- gem 'rubocop', "~> 0.23.0", :platform => [:ruby_20, :ruby_21]
+ # our rails rubocop setup only supports 2.0 and 2.1
63
+ gem 'rubocop', "~> 0.23.0"
64
65
66
custom_gemfile = File.expand_path("../Gemfile-custom", __FILE__)
0 commit comments