From a43938f7909b149b1b3a50140c154127259fcaec Mon Sep 17 00:00:00 2001 From: Chris Hoge Date: Mon, 24 Mar 2014 15:28:37 -0700 Subject: [PATCH] Fixed gate by Updating Gemfile to pin Rake to 10.1.1 The latest Rake update requires Ruby >= 1.9. Bundler in the current gate uses 1.8.x. This update fixes the gate by pinning Rake to the last known working version. Change-Id: I857f6638a54160a315d5d98c77357a7f6449f3bd --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 89f2e1b..0d35201 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,7 @@ source 'https://rubygems.org' group :development, :test do gem 'puppetlabs_spec_helper', :require => false gem 'puppet-lint', '~> 0.3.2' + gem 'rake', '10.1.1' end if puppetversion = ENV['PUPPET_GEM_VERSION'] -- 2.45.2