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:
parent
0bc47d8679
commit
abc39d66f8
4 changed files with 15 additions and 9 deletions
|
@ -1,6 +1,5 @@
|
||||||
language: ruby
|
language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
- "1.9.2"
|
|
||||||
- "1.9.3"
|
- "1.9.3"
|
||||||
- "2.0.0"
|
- "2.0.0"
|
||||||
# Forgo 2.1.0 until Travis has a satisfactory fix for
|
# Forgo 2.1.0 until Travis has a satisfactory fix for
|
||||||
|
|
15
README.rdoc
15
README.rdoc
|
@ -10,14 +10,15 @@ of specifying actions: get, put, post, delete.
|
||||||
|
|
||||||
== Requirements
|
== Requirements
|
||||||
|
|
||||||
MRI Ruby 1.9.2 and newer are supported. Alternative interpreters compatible with
|
MRI Ruby 1.9.3 and newer are supported. Alternative interpreters compatible with
|
||||||
1.9.1+ should work as well.
|
1.9+ should work as well.
|
||||||
|
|
||||||
Ruby 1.8.7 is no longer supported. That's because the Ruby 1.8.7 interpreter
|
Earlier Ruby versions such as 1.8.7 and 1.9.2 are no longer supported. These
|
||||||
itself no longer has official support, _not_ _even_ _security_ _patches!_ If you
|
versions are no longer have any official support, and do not receive security
|
||||||
have been putting off upgrading your servers, now is the time.
|
updates.
|
||||||
({More info is on the Ruby developers'
|
|
||||||
blog.}[http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/])
|
* 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:
|
The rest-client gem depends on these other gems for installation and usage:
|
||||||
|
|
||||||
|
|
|
@ -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
|
# 1.7.2
|
||||||
|
|
||||||
- Ignore duplicate certificates in CA store on Windows
|
- Ignore duplicate certificates in CA store on Windows
|
||||||
|
|
|
@ -25,5 +25,5 @@ Gem::Specification.new do |s|
|
||||||
s.add_dependency('mime-types', '>= 1.16', '< 3.0')
|
s.add_dependency('mime-types', '>= 1.16', '< 3.0')
|
||||||
s.add_dependency('netrc', '~> 0.7')
|
s.add_dependency('netrc', '~> 0.7')
|
||||||
|
|
||||||
s.required_ruby_version = '>= 1.9.2'
|
s.required_ruby_version = '>= 1.9.3'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue