From 93e584524df635f07fe41a124bb210c8a2f6146c Mon Sep 17 00:00:00 2001 From: Hailee Kenney Date: Wed, 18 Feb 2015 09:53:41 -0800 Subject: [PATCH] (maint) Update rspec to 2.14.1 for Jenkins Prior to this commit the Gemfile required rspec 2.14.0 which was not available in the rubbygems mirror for Jenkins. To prevent the spec tests from failing in Jenkins, use rspec 2.14.1 instead. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4ee0853..f73d80f 100644 --- a/Gemfile +++ b/Gemfile @@ -14,7 +14,7 @@ else end group :test do - gem "rspec", "~> 2.14.0", :require => false + gem "rspec", "~> 2.14.1", :require => false gem 'mocha' gem 'puppetlabs_spec_helper' gem 'rspec-html-matchers'