
metadata-json-lint is a little tool to check the validity of Puppet metatdata.json files. puppet-syntax tool check the validity of templates,manifests and hiera files (the goal here is to replace manual checks in the gate by a standard? check `rake syntax`). Change-Id: I60b9cdfe27eeb8a8f5ad3a238dd847ed3096cb6b
21 lines
424 B
Ruby
21 lines
424 B
Ruby
source 'https://rubygems.org'
|
|
|
|
group :development, :test do
|
|
gem 'puppetlabs_spec_helper', :require => false
|
|
gem 'puppet-lint', '~> 0.3.2'
|
|
gem 'metadata-json-lint'
|
|
gem 'puppet-syntax'
|
|
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
|