Skip to content

Commit 5246105

Browse files
committed
chore: Add support for Ruby 3.4
1 parent 29be131 commit 5246105

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby:
15+
- "3.4"
1516
- "3.3"
1617
- "3.2"
1718
- "3.1"
@@ -34,6 +35,12 @@ jobs:
3435
ruby: "3.0"
3536
- gemfile: rails_7.2.gemfile
3637
ruby: "2.7"
38+
- gemfile: rails_7.1.gemfile
39+
ruby: "3.4"
40+
- gemfile: rails_7.0.gemfile
41+
ruby: "3.4"
42+
- gemfile: rails_6.1.gemfile
43+
ruby: "3.4"
3744
fail-fast: False
3845

3946
env:
@@ -75,7 +82,7 @@ jobs:
7582
- uses: actions/checkout@master
7683
- uses: ruby/setup-ruby@v1
7784
with:
78-
ruby-version: "3.4.1"
85+
ruby-version: "3.4"
7986
bundler-cache: True
8087

8188
- run: bundle exec rubocop --parallel --color

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
99

1010
### New
1111

12+
- Support for Ruby 3.4
13+
1214
### Changes
1315

1416
### Fixes

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
[![Gem Version](https://img.shields.io/gem/v/rails-rfc6570?logo=ruby)](https://rubygems.org/gems/rails-rfc6570)
44
[![Build Status](https://img.shields.io/github/actions/workflow/status/jgraichen/rails-rfc6570/test.yml?logo=github)](https://github.com/jgraichen/rails-rfc6570/actions/workflows/test.yml)
55

6-
Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0, 7.1, 7.2 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3.
6+
Pragmatic access to your Rails routes as RFC6570 URI templates.
7+
8+
Tested with Rails 6.1, 7.0, 7.1, 7.2 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3, and 3.4.
79

810
## Installation
911

0 commit comments

Comments
 (0)