mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 14:58:05 -05:00
Remove `ActiveSupport::Dependencies.reference`
This was deleted from Rails: 14d4edd7c3
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.
28 lines
562 B
Plaintext
28 lines
562 B
Plaintext
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
|