From 5b24bcbd70ab26b7204258a8750737402d25f54c Mon Sep 17 00:00:00 2001 From: Anders Larsson Date: Tue, 22 Mar 2016 07:09:32 +0100 Subject: [PATCH] Ensure rake v10 is used for ruby 1.8.7 --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 3cf09bb..5f09b4b 100644 --- a/Gemfile +++ b/Gemfile @@ -26,5 +26,8 @@ gem 'puppet-lint-variable_contains_upcase' # rspec must be v2 for ruby 1.8.7 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 'rake', '~> 10.0' end +