pin puppet-lint to 2.x

Two reasons:
1. Newer is better!
2. Running lint < 2.0 with the current Rakefile will fail - lines longer than 80 chars will cause warnings, and Rakefile says to fail on warnings
This commit is contained in:
Matthew Haughton 2016-06-22 22:11:20 -04:00 committed by GitHub
parent ee23449b06
commit 17f3c54dc7

View file

@ -14,7 +14,7 @@ end
group :rake do
gem 'rspec-puppet', '>=2.1.0', :require => false
gem 'rake', '>=0.9.2.2'
gem 'puppet-lint', '>=1.0.1'
gem 'puppet-lint', '~> 2.0'
end
if puppetversion = ENV['PUPPET_GEM_VERSION']