Skip to content

Commit

Permalink
fix: Depend on net-http-persistent 4.x in gemspec (#11)
Browse files Browse the repository at this point in the history
This bumps the minimum Ruby version supported to 2.5.

Also: Add a specific Changelog URI.
  • Loading branch information
olleolleolle authored Nov 1, 2021
1 parent 0304f95 commit 5486294
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions faraday-net_http_persistent.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/lostisland/faraday-net_http_persistent"
spec.license = "MIT"

spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/lostisland/faraday-net_http_persistent"
spec.metadata["changelog_uri"] = "https://github.com/lostisland/faraday-net_http_persistent"
spec.metadata["changelog_uri"] = "https://github.com/lostisland/faraday-net_http_persistent/releases/tag/v#{spec.version}"

spec.files = Dir.glob("lib/**/*") + %w[README.md LICENSE.md]
spec.require_paths = ["lib"]

spec.add_dependency "faraday", ">= 2.0.0.alpha.pre.2"
spec.add_dependency "faraday-net_http"
spec.add_dependency "net-http-persistent", ">= 3.1"
spec.add_dependency "net-http-persistent", "~> 4.0"
end

0 comments on commit 5486294

Please sign in to comment.