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: Ib36f65ae8ef03329d407929973dba2db1156cf74
This commit is contained in:
Chris Hoge 2014-03-24 16:06:52 -07:00
parent 32b9729b60
commit 8c02b2adcc
1 changed files with 1 additions and 0 deletions

View File

@ -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']