From 774de4dfbeb3c56f30ccbdb3c6696b0823c059ed Mon Sep 17 00:00:00 2001 From: Luke Reeves Date: Thu, 29 Jan 2015 23:42:31 -0500 Subject: [PATCH] Update gemfile - source and rspec version This is a small update to to the project Gemfile to rspec at the expected version, and to point at the HTTPS version of Rubygems.org. The specs then pass with supported Ruby versions (anything above 1.8 really). --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index a48348b..d20a8e7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -source :rubygems +source 'https://rubygems.org' gem 'rake' gem 'yard' @@ -9,7 +9,7 @@ end group :test do gem 'json', :platforms => :ruby_18 - gem 'rspec' + gem 'rspec', '~> 2.99' gem 'timecop' gem 'webmock', '>= 1.10.1' end