From c3bdb7fd54ff60f950759e4b4e33bf74e6664f97 Mon Sep 17 00:00:00 2001 From: Clayton O'Neill Date: Wed, 18 Jun 2014 08:55:26 -0400 Subject: [PATCH] Pin gem versions for stable branch 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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 0d35201b4..6fe7cf750 100644 --- 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']