]> review.fuel-infra Code Review - puppet-modules/puppet-ceilometer.git/commitdiff
Pin gem versions for stable branch
authorClayton O'Neill <clayton@oneill.net>
Wed, 18 Jun 2014 12:55:26 +0000 (08:55 -0400)
committerClayton O'Neill <clayton@oneill.net>
Wed, 18 Jun 2014 13:01:53 +0000 (13:01 +0000)
This intends to pin all the major gems to the version they were during
development cycle.  This should isolate the existing tests from changes in
rspec, etc.

Change-Id: If7e1b8a7a0f170fe901646f77e9f2f07d0f8ae5b

Gemfile

diff --git a/Gemfile b/Gemfile
index 0d35201b4dc1016115ed7931629dcc7634ddbee2..6fe7cf750f4989f3ffcafcf7580183e50cbe2a45 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -1,9 +1,13 @@
 source 'https://rubygems.org'
 
 group :development, :test do
-  gem 'puppetlabs_spec_helper', :require => false
+  gem 'puppetlabs_spec_helper', '~> 0.4.1', :require => false
+  gem 'rspec', '~> 2.14.0'
+  gem 'mocha', '~> 0.10.5'
+  gem 'rspec-puppet', '~> 1.0.1'
   gem 'puppet-lint', '~> 0.3.2'
   gem 'rake', '10.1.1'
+  gem 'webmock', '~> 1.18.0'
 end
 
 if puppetversion = ENV['PUPPET_GEM_VERSION']