Skip to content

Commit

Permalink
Fix wrong number of arguments (5 for 1..3) for puppet < 4 and ruby > 2
Browse files Browse the repository at this point in the history
Change-Id: Ia6cad9b1a213c75c4ae400aec8b63482f8d7e279
  • Loading branch information
Joseph Herlant committed Jan 25, 2017
1 parent 3b7ad65 commit b84bdc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skeleton/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ group :test do
gem 'rspec-core', '< 3.2.0' if RUBY_VERSION < '1.9'
gem 'rspec-puppet'
gem 'rspec-puppet-facts'
gem 'rubocop', if RUBY_VERSION < '2.0.0' then '< 0.42.0' end
gem 'rubocop', if RUBY_VERSION < '2.0.0' or Gem.latest_spec_for('puppet').version < Gem::Version.new('4.0.0') then '< 0.42.0' end
gem 'simplecov', '>= 0.11.0'
gem 'simplecov-console', if RUBY_VERSION < '2.0.0' then '< 0.4.0' end

Expand Down

0 comments on commit b84bdc7

Please sign in to comment.