Skip to content

Commit

Permalink
chore: Add support for Ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Jan 31, 2025
1 parent 29be131 commit 5246105
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.1"
Expand All @@ -34,6 +35,12 @@ jobs:
ruby: "3.0"
- gemfile: rails_7.2.gemfile
ruby: "2.7"
- gemfile: rails_7.1.gemfile
ruby: "3.4"
- gemfile: rails_7.0.gemfile
ruby: "3.4"
- gemfile: rails_6.1.gemfile
ruby: "3.4"
fail-fast: False

env:
Expand Down Expand Up @@ -75,7 +82,7 @@ jobs:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4.1"
ruby-version: "3.4"
bundler-cache: True

- run: bundle exec rubocop --parallel --color
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch

### New

- Support for Ruby 3.4

### Changes

### Fixes
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
[![Gem Version](https://img.shields.io/gem/v/rails-rfc6570?logo=ruby)](https://rubygems.org/gems/rails-rfc6570)
[![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)

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.
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, and 3.4.

## Installation

Expand Down

0 comments on commit 5246105

Please sign in to comment.