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).
This commit is contained in:
Luke Reeves 2015-01-29 23:42:31 -05:00
parent 9b11f2d27e
commit 774de4dfbe

View file

@ -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