mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
78bbf6dcc4
Call send_on_create_confirmation_instructions in after_commit instead of after_create, I think this is no harm in general and it makes things like async job work. Fix #4062
30 lines
547 B
Ruby
30 lines
547 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rails", "~> 4.2.6"
|
|
gem "omniauth", "~> 1.3"
|
|
gem "omniauth-oauth2", "~> 1.4"
|
|
gem "rdoc"
|
|
|
|
group :test do
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid", "~> 1.0.1"
|
|
gem "webrat", "0.7.3", require: false
|
|
gem "mocha", "~> 1.1", require: false
|
|
gem 'test_after_commit', require: false
|
|
end
|
|
|
|
platforms :jruby do
|
|
gem "activerecord-jdbc-adapter"
|
|
gem "activerecord-jdbcsqlite3-adapter"
|
|
gem "jruby-openssl"
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3"
|
|
end
|
|
|
|
group :mongoid do
|
|
gem "mongoid", "~> 5.0"
|
|
end
|