Fix Gemfile to work with ruby 1.8.7

This commit is contained in:
Bryan Jen 2015-11-20 11:34:59 -07:00
parent 8ae775fb3a
commit 608801c838

View file

@ -11,7 +11,13 @@ def location_for(place, fake_version = nil)
end
group :development, :unit_tests do
gem 'rspec-core', '3.1.7', :require => false
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
else
gem 'rspec-core', '3.1.7', :require => false
end
gem 'puppetlabs_spec_helper', :require => false
gem 'simplecov', :require => false
gem 'json', :require => false