mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
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).
17 lines
246 B
Ruby
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
|