Skip to content

Commit 096be0a

Browse files
committed
Unpin rubocop gem to be compatible with latest rake version when ruby >= 2
1 parent 733fa78 commit 096be0a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

skeleton/Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ group :test do
88
gem 'puppetlabs_spec_helper'
99
gem 'metadata-json-lint'
1010
gem 'rspec-puppet-facts'
11-
gem 'rubocop', '0.33.0'
11+
if RUBY_VERSION < '2.0.0'
12+
gem 'rubocop', '< 0.42.0'
13+
else
14+
gem 'rubocop'
15+
end
1216
gem 'simplecov', '>= 0.11.0'
1317
gem 'simplecov-console'
1418

0 commit comments

Comments
 (0)