We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d64db commit ffcacf6Copy full SHA for ffcacf6
Gemfile
@@ -1,9 +1,9 @@
1
source 'https://rubygems.org'
2
3
if ENV.key?('PUPPET_VERSION')
4
- puppetversion = "#{ENV['PUPPET_VERSION']}"
+ puppetversion = "#{ENV['PUPPET_VERSION']}"
5
else
6
- puppetversion = "~> 2.7.0"
+ puppetversion = "~> 3.8.0"
7
end
8
9
# pin rake to this version for as long as we need to test against
@@ -16,3 +16,7 @@ gem 'puppetlabs_spec_helper'
16
# pin rspec to < 3.0.0 until rspec-puppet supports rspec > 3.0.0
17
# https://github.com/rodjek/rspec-puppet/issues/200
18
gem 'rspec', '~> 2.0'
19
+
20
+if RUBY_VERSION == '1.8.7'
21
+ gem 'json_pure', "1.8.3"
22
+end
0 commit comments