-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Run CI against Rails 7.2 * Reorganize Gemfiles if a specific version of rails require corresponding gem version, it should be in each Gemfile under gemfiles/ * Add exception to test matrix
- Loading branch information
Showing
6 changed files
with
66 additions
and
19 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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# frozen_string_literal: true | ||
|
||
eval_gemfile '../Gemfile' | ||
|
||
gem 'rails', '~> 7.2.0' | ||
|
||
group :test do | ||
# JDBC versions track Rails versions | ||
gem 'activerecord-jdbc-adapter', '~> 71.0', | ||
platform: :jruby, | ||
# this is not published for some reason | ||
git: 'https://github.com/jruby/activerecord-jdbc-adapter', | ||
glob: 'activerecord-jdbc-adapter.gemspec' | ||
gem 'activerecord-jdbcsqlite3-adapter', '~> 71.0', | ||
platform: :jruby, | ||
# this is not published for some reason | ||
git: 'https://github.com/jruby/activerecord-jdbc-adapter', | ||
glob: 'activerecord-jdbcsqlite3-adapter/activerecord-jdbcsqlite3-adapter.gemspec' | ||
# last supported version of sqlite3 for minimum ruby | ||
gem 'sqlite3', '~> 1.6.0', platform: :ruby | ||
end |
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