From 73518f9d41df9b41f50561a5e1bb99da52e28957 Mon Sep 17 00:00:00 2001 From: Hailee Kenney Date: Mon, 25 Apr 2016 16:45:52 -0700 Subject: [PATCH] (maint) Require rspec 3 Prior to this commit, the Gemfile did not specify an rspec version but relied on methods that were only in rspec 3. In order to prevent failures when running with versions older than 3, tie the specs to 3.1 or greater, which is what puppet does. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e461bf9..5a27a60 100644 --- a/Gemfile +++ b/Gemfile @@ -14,7 +14,7 @@ else end group :test do - gem "rspec" + gem "rspec", "~> 3.1" gem 'mocha' gem 'puppetlabs_spec_helper' gem 'serverspec'