From 27579e7233a619d707802edaaf8ca68cc73541ae Mon Sep 17 00:00:00 2001 From: Chris Hoge Date: Mon, 24 Mar 2014 15:39:02 -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: I8f798a71246c39deb91610bad1d0261aaa485a75 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 89f2e1b2..0d35201b 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']