mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
Allow using recent versions of http.rb (#9)
Most of the major breaking changes to http.rb since 2.x were to drop old Ruby versions that are no longer supported so it looks safe to allow up to the current version, 5.x.
This commit is contained in:
parent
1edfbecac6
commit
2491f64040
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ require 'instapaper/version'
|
|||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.add_dependency 'addressable', '~> 2.3'
|
||||
spec.add_dependency 'http', '~> 2'
|
||||
spec.add_dependency 'http', '>= 2', '< 6'
|
||||
spec.add_dependency 'multi_json', '~> 1'
|
||||
spec.add_dependency 'simple_oauth', '~> 0.3'
|
||||
spec.add_dependency 'virtus', '~> 1'
|
||||
|
|
|
|||
Loading…
Reference in a new issue