Bump the minimum supported Ruby version from 1.9 to 2.3 (#208)

This commit is contained in:
Yasuo Honda 2019-04-05 02:21:27 +09:00 committed by Graham Paye
parent c0f3b70072
commit 9ca53d24ff
3 changed files with 5 additions and 1 deletions

View File

@ -9,3 +9,6 @@ Metrics/ClassLength:
Max: 110
Metrics/ModuleLength:
Max: 110
Metrics/BlockLength:
Exclude:
- "googleauth.gemspec"

View File

@ -184,7 +184,7 @@ Custom storage implementations can also be used. See
## Supported Ruby Versions
This library is currently supported on Ruby 1.9+.
This library is currently supported on Ruby 2.3+.
However, Ruby 2.4 or later is strongly recommended, as earlier releases have
reached or are nearing end-of-life. After March 31, 2019, Google will provide

View File

@ -25,6 +25,7 @@ Gem::Specification.new do |gem|
end
gem.require_paths = ["lib"]
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = ">= 2.3.0"
gem.add_dependency "faraday", "~> 0.12"
gem.add_dependency "jwt", ">= 1.4", "< 3.0"