Ensure rake v10 is used for ruby 1.8.7

This commit is contained in:
Anders Larsson 2016-03-22 07:09:32 +01:00
parent 82962f61ae
commit 5b24bcbd70

View File

@ -26,5 +26,8 @@ gem 'puppet-lint-variable_contains_upcase'
# rspec must be v2 for ruby 1.8.7 # rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9' if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
# rake >=11 does not support ruby 1.8.7
gem 'rspec', '~> 2.0' gem 'rspec', '~> 2.0'
gem 'rake', '~> 10.0'
end end