-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI matrix to make sure recent Ruby and ActiveRecord versions a…
…re supported (#65) * Update Ruby and Rails versions in CI matrix * Rails 8 needs Ruby 3.2 or higher * Rails 7.1 seems to wrap the error * Add Ruby 3.4 to the matrix * Comment on the proper line * Add comment why we want to continue on error * Include gems with older Rails versions This is actually only required for Ruby 3.4 compatibility. * Remove references about Rails 5, that's not supported anymore * Update local Ruby version to most recent one
- Loading branch information
Showing
10 changed files
with
20 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.1.2 | ||
3.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
source "https://rubygems.org" | ||
gemspec path: "../.." | ||
gem "activerecord", "~> 6.1.0" | ||
|
||
gem "bigdecimal" | ||
gem "drb" | ||
gem "mutex_m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
source "https://rubygems.org" | ||
gemspec path: "../.." | ||
gem "activerecord", "~> 7.0.0" | ||
|
||
gem "bigdecimal" | ||
gem "drb" | ||
gem "mutex_m" |
2 changes: 1 addition & 1 deletion
2
test/gemfiles/rails-5.0.gemfile → test/gemfiles/rails-7.1.gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source "https://rubygems.org" | ||
gemspec path: "../.." | ||
gem "activerecord", "~> 5.0.0" | ||
gem "activerecord", "~> 7.1.0" |
2 changes: 1 addition & 1 deletion
2
test/gemfiles/rails-5.1.gemfile → test/gemfiles/rails-8.0.gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source "https://rubygems.org" | ||
gemspec path: "../.." | ||
gem "activerecord", "~> 5.1.0" | ||
gem "activerecord", "~> 8.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters