diff options
author | David Schmitt <david.schmitt@puppet.com> | 2016-07-27 15:44:31 +0100 |
---|---|---|
committer | David Schmitt <david.schmitt@puppet.com> | 2016-07-27 15:44:31 +0100 |
commit | f152a031b70cb57307ca2d1aa8c28784773d5f2a (patch) | |
tree | ce1e3e040e5beb391c7f08bb57085e6efe5505c4 /Gemfile | |
parent | 6e525fdc1f898202bb63ab4d199f965a7fca24f2 (diff) |
(MAINT) Update for modulesync_config 72d19f184
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -13,14 +13,12 @@ def location_for(place, version = nil) end group :development, :unit_tests do - gem 'json', :require => false - gem 'metadata-json-lint', :require => false - gem 'puppet_facts', :require => false - gem 'puppetlabs_spec_helper', :require => false - gem 'rspec-puppet', '>= 2.3.2', :require => false - gem 'simplecov', :require => false - gem 'puppet-blacksmith', :require => false - gem 'rest-client', '~> 1.8.0', :require => false + gem 'metadata-json-lint', :require => false + gem 'puppet_facts', :require => false + gem 'puppet-blacksmith', '>= 3.4.0', :require => false + gem 'puppetlabs_spec_helper', :require => false + gem 'rspec-puppet', '>= 2.3.2', :require => false + gem 'simplecov', :require => false end group :system_tests do gem 'beaker-rspec', *location_for(ENV['BEAKER_RSPEC_VERSION'] || '>= 3.4') @@ -31,10 +29,13 @@ group :system_tests do gem 'beaker-hostgenerator', *location_for(ENV['BEAKER_HOSTGENERATOR_VERSION']) end +# json_pure 2.0.2 added a requirement on ruby >= 2. We pin to json_pure 2.0.1 +# if using ruby 1.x +gem 'json_pure', '<=2.0.1', :require => false if RUBY_VERSION =~ /^1\./ + gem 'facter', *location_for(ENV['FACTER_GEM_VERSION']) gem 'puppet', *location_for(ENV['PUPPET_GEM_VERSION']) - if File.exists? "#{__FILE__}.local" eval(File.read("#{__FILE__}.local"), binding) end |