Gemfile 498 B

1234567891011121314151617
  1. source ENV['GEM_SOURCE'] || "https://rubygems.org"
  2. # special dependencies for Ruby 1.8
  3. # since there are still several OSes with it
  4. if RUBY_VERSION =~ /^1\.8\./
  5. gem 'rspec-core', '~> 3.1.7'
  6. gem 'nokogiri', '~> 1.5.0'
  7. end
  8. gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}.0" : '>= 2.7'
  9. gem 'rspec-puppet', '~> 2.0'
  10. gem 'puppetlabs_spec_helper', '>= 0.1.0'
  11. gem 'puppet-lint', '>= 2'
  12. gem 'facter', '>= 1.7.0'
  13. gem 'metadata-json-lint'
  14. gem 'puppet-lint-strict_indent-check'