Fix Gemfile to work with ruby 1.8.7
This commit is contained in:
parent
8ae775fb3a
commit
608801c838
1 changed files with 7 additions and 1 deletions
8
Gemfile
8
Gemfile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue