From: Chris Hoge Date: Mon, 24 Mar 2014 22:28:37 +0000 (-0700) Subject: Fixed gate by Updating Gemfile to pin Rake to 10.1.1 X-Git-Tag: 4.0.0~7 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=a43938f7909b149b1b3a50140c154127259fcaec;p=puppet-modules%2Fpuppet-ceilometer.git 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 --- 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']