Skip to content

Commit 0aaec5f

Browse files
committed
Change http gem constraint to allow for v6
The http gem v6.x is Ruby 3.2 and up only, so the constraint here should allow for installation of v5 on older Ruby versions and v6 on newer. See-also: https://github.com/httprb/http/blob/v6.0.3/CHANGELOG.md
1 parent e82cdf4 commit 0aaec5f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
indieweb-endpoints (10.0.2)
5-
http (~> 5.3)
5+
http (>= 5.3)
66
link-header-parser (~> 7.0, >= 7.0.1)
77
nokogiri-html-ext (~> 1.7)
88

indieweb-endpoints.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
2828
"source_code_uri" => "#{spec.homepage}/tree/v#{spec.version}",
2929
}
3030

31-
spec.add_dependency "http", "~> 5.3"
31+
spec.add_dependency "http", ">= 5.3"
3232
spec.add_dependency "link-header-parser", "~> 7.0", ">= 7.0.1"
3333
spec.add_dependency "nokogiri-html-ext", "~> 1.7"
3434
end

0 commit comments

Comments
 (0)