Reworked to use Ruby since its needed for Puppet

This commit is contained in:
Gene Liverman 2017-05-07 09:01:12 -07:00
parent bff34cde83
commit 4f0169d4fc
21 changed files with 73 additions and 38 deletions

View file

@ -1,34 +0,0 @@
# vim:ft=ruby
source 'https://rubygems.org'
if ENV.key?('PUPPET_VERSION')
puppetversion = "#{ENV['PUPPET_VERSION']}"
else
puppetversion = ['~> 4.0']
end
group :development, :unit_tests do
gem 'json', '>= 2.0.2'
gem 'json_pure', '>= 2.0.2'
gem 'metadata-json-lint', '~> 1.0'
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper', '~> 1.1'
gem 'r10k', '~> 2.3'
gem 'rspec-puppet', '~> 2.5'
gem 'rugged', '~> 0.24'
gem 'yamllint', '~> 0.0.9'
# puppet-lint and plugins
gem 'puppet-lint', '~> 1.1'
gem 'puppet-lint-absolute_classname-check', '~> 0.2'
gem 'puppet-lint-absolute_template_path', '~> 1.0'
gem 'puppet-lint-empty_string-check', '~> 0.2'
gem 'puppet-lint-leading_zero-check', '~> 0.1'
gem 'puppet-lint-resource_reference_syntax', '~> 1.0'
gem 'puppet-lint-spaceship_operator_without_tag-check', '~> 0.1'
gem 'puppet-lint-trailing_newline-check', '~> 1.0'
gem 'puppet-lint-undef_in_function-check', '~> 0.2'
gem 'puppet-lint-unquoted_string-check', '~> 0.3'
gem 'puppet-lint-variable_contains_upcase', '~> 1.1'
end