Skip to content

Commit d8014f6

Browse files
committed
Expand Ruby support to include Ruby 2.6 and newer
1 parent bb7805a commit d8014f6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
## Getting Started
1717

18-
Before installing and using webmention-client-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 3.0 (or newer) installed. Using a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm) is recommended.
18+
Before installing and using webmention-client-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.6 (or newer) installed. Using a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm) is recommended.
1919

2020
webmention-client-ruby is developed using Ruby 3.4 and is tested against additional Ruby versions using [GitHub Actions](https://github.com/indieweb/webmention-client-ruby/actions).
2121

webmention.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

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

66
spec.name = "webmention"
77
spec.version = "8.0.0"
@@ -29,6 +29,6 @@ Gem::Specification.new do |spec|
2929
}
3030

3131
spec.add_dependency "http", "~> 5.2"
32-
spec.add_dependency "indieweb-endpoints", "~> 9.0"
33-
spec.add_dependency "nokogiri", ">= 1.16"
32+
spec.add_dependency "indieweb-endpoints", "~> 9.1"
33+
spec.add_dependency "nokogiri", ">= 1.13"
3434
end

0 commit comments

Comments
 (0)