From 17f3c54dc7542b266531bae9250a9234b3bca543 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Wed, 22 Jun 2016 22:11:20 -0400 Subject: [PATCH] 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 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 42468eb..6c4870f 100644 --- a/Gemfile +++ b/Gemfile @@ -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']