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 912c220 commit 34923a0Copy full SHA for 34923a0
Gemfile
@@ -15,10 +15,13 @@ group :tests do
15
gem 'rubocop-rspec'
16
# rubocop 0.58 throws when testing against ruby 2.1, so pin to the latest,
17
# unless we're dealing with jruby...
18
- if RUBY_PLATFORM == 'java'
19
- gem 'rubocop'
20
- else
+ if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.0')
21
gem 'rubocop', '0.57.2'
+ gem 'parallel', '1.13.0'
+ else
22
+ # 2.1-compatible analysis was dropped after version 0.58
23
+ # This needs to be removed once we drop puppet4 support.
24
+ gem 'rubocop', '~> 0.57.0'
25
end
26
gem 'simplecov-console'
27
# the test gems required for module testing
0 commit comments