mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Drop support for ruby 1.9.3
This commit is contained in:
parent
2e299ed0b8
commit
f63266c7f1
4 changed files with 6 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
language: ruby
|
||||
rvm:
|
||||
- 1.9.3
|
||||
- 2.0.0
|
||||
- 2.1.8
|
||||
- 2.2.4
|
||||
|
|
4
History
4
History
|
@ -1,3 +1,7 @@
|
|||
== master
|
||||
|
||||
* [Require Ruby >= 2.0.0]
|
||||
|
||||
== 0.14.0
|
||||
* [added status predicate methods to Response#respond_to?](https://github.com/jnunemaker/httparty/pull/482)
|
||||
* [allow empty array to be used as param](https://github.com/jnunemaker/httparty/pull/477)
|
||||
|
|
|
@ -10,7 +10,7 @@ gem install httparty
|
|||
|
||||
## Requirements
|
||||
|
||||
* Ruby 1.9.3 or higher
|
||||
* Ruby 2.0.0 or higher
|
||||
* multi_xml
|
||||
* You like to party!
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|||
s.summary = 'Makes http fun! Also, makes consuming restful web services dead easy.'
|
||||
s.description = 'Makes http fun! Also, makes consuming restful web services dead easy.'
|
||||
|
||||
s.required_ruby_version = '>= 1.9.3'
|
||||
s.required_ruby_version = '>= 2.0.0'
|
||||
|
||||
s.add_dependency 'multi_xml', ">= 0.5.2"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue