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.
2 parents ad44596 + 5a9fdbf commit db560d3Copy full SHA for db560d3
Gemfile
@@ -40,14 +40,8 @@ end
40
41
gem 'simplecov', '~> 0.8'
42
43
-# There is no platform :ruby_193 and Rubocop only supports >= 1.9.3
44
-unless RUBY_VERSION == "1.9.2"
45
- platforms = [:ruby_19, :ruby_20, :ruby_21, :ruby_22]
46
- # There is no platform :ruby_23 on JRuby currently.
47
- platforms << :ruby_23 if Bundler::Dependency::PLATFORM_MAP[:ruby_23]
48
- gem "rubocop",
49
- "~> 0.32.1",
50
- :platform => platforms
+if RUBY_VERSION >= '1.9.3' && RUBY_VERSION < '2.4.0'
+ gem "rubocop", "~> 0.32.1"
51
end
52
53
gem 'test-unit', '~> 3.0' if RUBY_VERSION.to_f >= 2.2
0 commit comments