Skip to content

Commit

Permalink
Drop support for ruby 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Jul 29, 2016
1 parent 2e299ed commit f63266c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
Expand Down
4 changes: 4 additions & 0 deletions History
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down
2 changes: 1 addition & 1 deletion httparty.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit f63266c

Please sign in to comment.