0f1a965e43
This changes the puppet-lint requirement to 1.1.x, so that we can use puppet-lint plugins. Most of these plugins are for 4.x compat, but some just catch common errors. Change-Id: I5d8988653943631d5d2179702de1220263b67850 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
33 lines
797 B
Ruby
33 lines
797 B
Ruby
source 'https://rubygems.org'
|
|
|
|
group :development, :test do
|
|
gem 'puppetlabs_spec_helper', :require => false
|
|
|
|
gem 'puppet-lint', '~> 1.1.0'
|
|
gem 'metadata-json-lint'
|
|
gem 'puppet-lint-param-docs'
|
|
gem 'puppet-lint-absolute_classname-check'
|
|
gem 'puppet-lint-absolute_template_path'
|
|
gem 'puppet-lint-trailing_newline-check'
|
|
|
|
# Puppet 4.x related lint checks
|
|
gem 'puppet-lint-unquoted_string-check'
|
|
gem 'puppet-lint-leading_zero-check'
|
|
gem 'puppet-lint-variable_contains_upcase'
|
|
gem 'puppet-lint-numericvariable'
|
|
|
|
gem 'rspec-puppet', '~> 1.0.1'
|
|
gem 'rake', '10.1.1'
|
|
gem 'rspec', '< 2.99'
|
|
gem 'json'
|
|
gem 'webmock'
|
|
end
|
|
|
|
if puppetversion = ENV['PUPPET_GEM_VERSION']
|
|
gem 'puppet', puppetversion, :require => false
|
|
else
|
|
gem 'puppet', :require => false
|
|
end
|
|
|
|
# vim:ft=ruby
|