1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Drop support for Ruby 1.9.2.

This commit is contained in:
Andy Brody 2014-11-25 18:22:54 -05:00
parent 0bc47d8679
commit abc39d66f8
4 changed files with 15 additions and 9 deletions

View file

@ -1,6 +1,5 @@
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
# Forgo 2.1.0 until Travis has a satisfactory fix for

View file

@ -10,14 +10,15 @@ of specifying actions: get, put, post, delete.
== Requirements
MRI Ruby 1.9.2 and newer are supported. Alternative interpreters compatible with
1.9.1+ should work as well.
MRI Ruby 1.9.3 and newer are supported. Alternative interpreters compatible with
1.9+ should work as well.
Ruby 1.8.7 is no longer supported. That's because the Ruby 1.8.7 interpreter
itself no longer has official support, _not_ _even_ _security_ _patches!_ If you
have been putting off upgrading your servers, now is the time.
({More info is on the Ruby developers'
blog.}[http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/])
Earlier Ruby versions such as 1.8.7 and 1.9.2 are no longer supported. These
versions are no longer have any official support, and do not receive security
updates.
* http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/
* https://www.ruby-lang.org/en/news/2013/12/17/maintenance-of-1-8-7-and-1-9-2/
The rest-client gem depends on these other gems for installation and usage:

View file

@ -1,3 +1,9 @@
# 2.0.0
- Drop support for Ruby 1.9.2
- Change default Accept header to `*/*`
- Use a more descriptive User-Agent header by default
# 1.7.2
- Ignore duplicate certificates in CA store on Windows

View file

@ -25,5 +25,5 @@ Gem::Specification.new do |s|
s.add_dependency('mime-types', '>= 1.16', '< 3.0')
s.add_dependency('netrc', '~> 0.7')
s.required_ruby_version = '>= 1.9.2'
s.required_ruby_version = '>= 1.9.3'
end