Merge pull request #182 from ghoneycutt/fix_lint_version

Allow puppet-lint v1 so community plugins work
This commit is contained in:
Garrett Honeycutt 2016-07-04 20:38:26 -04:00 committed by GitHub
commit 51b988117b

View File

@ -10,7 +10,7 @@ gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper', '>= 1.1.1' gem 'puppetlabs_spec_helper', '>= 1.1.1'
gem 'facter', '>= 1.7.0' gem 'facter', '>= 1.7.0'
gem 'rspec-puppet' gem 'rspec-puppet'
gem 'puppet-lint', :git => 'https://github.com/rodjek/puppet-lint.git' gem 'puppet-lint', '>= 1.0', '< 3.0'
gem 'puppet-lint-absolute_classname-check' gem 'puppet-lint-absolute_classname-check'
gem 'puppet-lint-alias-check' gem 'puppet-lint-alias-check'
gem 'puppet-lint-empty_string-check' gem 'puppet-lint-empty_string-check'
@ -31,3 +31,6 @@ if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rake', '~> 10.0' gem 'rake', '~> 10.0'
end end
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '2.0'
gem 'json', '~> 1.0'
end