File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,13 @@ group :tests do
1515 gem 'rubocop-rspec'
1616 # rubocop 0.58 throws when testing against ruby 2.1, so pin to the latest,
1717 # unless we're dealing with jruby...
18- if RUBY_PLATFORM == 'java'
19- gem 'rubocop'
20- else
18+ if Gem ::Version . new ( RUBY_VERSION ) < Gem ::Version . new ( '2.2.0' )
2119 gem 'rubocop' , '0.57.2'
20+ gem 'parallel' , '1.13.0'
21+ 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'
2225 end
2326 gem 'simplecov-console'
2427 # the test gems required for module testing
Original file line number Diff line number Diff line change 11module Puppet
22 module ResourceApi
3- VERSION = '1.6.5 ' . freeze
3+ VERSION = '1.6.4 ' . freeze
44 end
55end
You can’t perform that action at this time.
0 commit comments