Skip to content

Commit

Permalink
Support for Ruby 3.4.0-preview1 (#929)
Browse files Browse the repository at this point in the history
* default to 7.1 when unset

---------

Co-authored-by: Mathieu Jobin <[email protected]>
  • Loading branch information
m-nakamura145 and mathieujobin authored May 28, 2024
1 parent 03c7a4f commit 4b464be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
rails: ["7.1", "7.0", "6.1", "6.0"]
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7"]
include:
- rails: "7.1"
ruby: "3.4.0-preview1"
- rails: "5.2"
ruby: "2.7.8"
- rails: "5.1"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ source 'https://rubygems.org'
gemspec path: '.'

# use ENV vars, with default value as fallback for local setup
gem 'actionpack', "~> #{ENV['RAILS_VERSION'] || '7.0'}.0"
gem 'activesupport', "~> #{ENV['RAILS_VERSION'] || '7.0'}.0"
gem 'actionpack', "~> #{ENV['RAILS_VERSION'] || '7.1'}.0"
gem 'activesupport', "~> #{ENV['RAILS_VERSION'] || '7.1'}.0"

gem 'mime-types' # , '~> 3.0'
gem 'rails-controller-testing'
Expand Down

0 comments on commit 4b464be

Please sign in to comment.