Skip to content

Commit a3099db

Browse files
committed
Relax version constraints to allow for Ruby 2.6
1 parent b3d1a85 commit a3099db

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
ruby: ["3.0", "3.1", "3.2", "3.3", "3.4"]
26+
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
2727
steps:
2828
- uses: actions/checkout@v4
2929
- uses: ruby/setup-ruby@v1

indieweb-endpoints.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "lib/indieweb/endpoints/version"
44

55
Gem::Specification.new do |spec|
6-
spec.required_ruby_version = ">= 3.0"
6+
spec.required_ruby_version = ">= 2.6"
77

88
spec.name = "indieweb-endpoints"
99
spec.version = IndieWeb::Endpoints::VERSION
@@ -31,6 +31,6 @@ Gem::Specification.new do |spec|
3131
}
3232

3333
spec.add_dependency "http", "~> 5.2"
34-
spec.add_dependency "link-header-parser", "~> 5.1"
35-
spec.add_dependency "nokogiri", ">= 1.16"
34+
spec.add_dependency "link-header-parser", "~> 6.1"
35+
spec.add_dependency "nokogiri", ">= 1.13"
3636
end

0 commit comments

Comments
 (0)