-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test against Rails main and remove `ActiveSupport::Dependencies.refer…
…ence` (#5357) Remove `ActiveSupport::Dependencies.reference` This was deleted from Rails: rails/rails@14d4edd As far as I can tell, it was meant to add a performance boost at some point in the past but doesn't seem to do anything useful these days.
- Loading branch information
1 parent
366a428
commit b39faff
Showing
8 changed files
with
89 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "rails", '~> 6.1.0' | ||
gem "omniauth" | ||
gem "omniauth-oauth2" | ||
gem "rdoc" | ||
|
||
gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml" | ||
|
||
gem "rails-controller-testing", github: "rails/rails-controller-testing" | ||
|
||
gem "responders", "~> 3.0" | ||
|
||
group :test do | ||
gem "omniauth-facebook" | ||
gem "omniauth-openid" | ||
gem "rexml" | ||
gem "timecop" | ||
gem "webrat", "0.7.3", require: false | ||
gem "mocha", "~> 1.1", require: false | ||
end | ||
|
||
platforms :ruby do | ||
gem "sqlite3", "~> 1.4" | ||
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "rails", github: "rails/rails", branch: "main" | ||
gem "omniauth" | ||
gem "omniauth-oauth2" | ||
gem "rdoc" | ||
|
||
gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml" | ||
|
||
gem "rails-controller-testing", github: "rails/rails-controller-testing" | ||
|
||
gem "responders", "~> 3.0" | ||
|
||
group :test do | ||
gem "omniauth-facebook" | ||
gem "omniauth-openid" | ||
gem "rexml" | ||
gem "timecop" | ||
gem "webrat", "0.7.3", require: false | ||
gem "mocha", "~> 1.1", require: false | ||
end | ||
|
||
platforms :ruby do | ||
gem "sqlite3", "~> 1.4" | ||
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
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