-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not override Object#to_json with mimic_json if ActiveSupport is ex…
…isted (#936) * Do not override Object#to_json with mimic_json * Add gemfile for Rails 7.1 / 7.2 * Add workaround for Rails 7.2 * Rails 7.2 supports Ruby 3.1 or later * Remove Rails 7.1 and 7.2 from windows lane * Revert "Do not override Object#to_json with mimic_json" This reverts commit 63df8d6. * Do not override Object#to_json with mimic_json if ActiveSupport is existed
- Loading branch information
1 parent
f5e928a
commit 2570138
Showing
5 changed files
with
39 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 7.1.3' | ||
gem 'sqlite3' | ||
gem 'mutex_m' | ||
gem 'base64' | ||
gem 'drb' | ||
|
||
gemspec :path => '../' |
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,11 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 7.2.0' | ||
gem 'sqlite3' | ||
gem 'mutex_m' | ||
gem 'base64' | ||
gem 'drb' | ||
|
||
gemspec :path => '../' |
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