instapaper/Gemfile
Luke Reeves 774de4dfbe 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).
2015-01-29 23:42:31 -05:00

17 lines
246 B
Ruby

source 'https://rubygems.org'
gem 'rake'
gem 'yard'
platforms :jruby do
gem 'jruby-openssl', '~> 0.7'
end
group :test do
gem 'json', :platforms => :ruby_18
gem 'rspec', '~> 2.99'
gem 'timecop'
gem 'webmock', '>= 1.10.1'
end
gemspec