diff options
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -2,9 +2,20 @@ source 'https://rubygems.org' group :development, :test do gem 'puppetlabs_spec_helper', :require => false - gem 'puppet-lint' - gem 'puppet-lint-param-docs', '1.1.0' + + gem 'puppet-lint', '~> 1.1' 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 'rake', '10.1.1' gem 'puppet-syntax' gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git' @@ -13,6 +24,7 @@ group :development, :test do gem 'webmock' gem 'r10k' gem 'librarian-puppet-simple', '~> 0.0.3' + end if puppetversion = ENV['PUPPET_GEM_VERSION'] |