-
-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add Rails 7.2 and Ruby 3.3 to testing matrix (#1032)
* chore: Fix deprecation warnings * test: Add spec for BackDoor middleware * ci: Run tests against Rails 7.2 and Ruby 3.3 * chore: Fix rack deprecation warning in BackDoor middleware * test: Use default settings of Rails version under test Standardizes the setup of the dummy application for testing purposes. This simplifies the configuration and removes some of the monkey-patching that was necessary in the old setup. * test: Remove dependency on timecop gem Use ActiveSupport::Testing::TimeHelpers instead
- Loading branch information
Showing
34 changed files
with
326 additions
and
285 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,26 @@ | ||
appraise "rails_6.1" do | ||
gem "railties", "~> 6.1.0" | ||
gem "net-smtp", require: false # not bundled in ruby 3.1 | ||
# The following gems will not be bundled with Ruby 3.4 | ||
gem "base64", require: false | ||
gem "bigdecimal", require: false | ||
gem "drb", require: false | ||
gem "mutex_m", require: false | ||
end | ||
|
||
appraise "rails_7.0" do | ||
gem "railties", "~> 7.0.0" | ||
# The following gems will not be bundled with Ruby 3.4 | ||
gem "base64", require: false | ||
gem "bigdecimal", require: false | ||
gem "drb", require: false | ||
gem "mutex_m", require: false | ||
end | ||
|
||
appraise "rails_7.1" do | ||
gem "railties", "~> 7.1.0" | ||
end | ||
|
||
appraise "rails_7.2" do | ||
gem "railties", "~> 7.2.0" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,3 @@ gem 'rails-controller-testing' | |
gem 'rspec-rails' | ||
gem 'shoulda-matchers' | ||
gem 'sqlite3', '~> 1.7' | ||
gem 'timecop' |
Oops, something went wrong.