mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
87f2fa9767
With this patch, functionality is added to expire the confirmation tokens that are being sent by email. For example, if a token is valid for 3 days only, it cannot be used for confirmation on the 4th day.
38 lines
681 B
Ruby
38 lines
681 B
Ruby
source "http://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rails", "~> 3.2.6"
|
|
gem "omniauth", "~> 1.0.0"
|
|
gem "omniauth-oauth2", "~> 1.0.0"
|
|
gem "rdoc"
|
|
|
|
group :test do
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid", "~> 1.0.1"
|
|
gem "webrat", "0.7.2", :require => false
|
|
gem "mocha", :require => false
|
|
|
|
platforms :mri_18 do
|
|
gem "ruby-debug", ">= 0.10.3"
|
|
end
|
|
platforms :mri_19 do
|
|
gem 'debugger'
|
|
end
|
|
end
|
|
|
|
platforms :jruby do
|
|
gem "activerecord-jdbc-adapter"
|
|
gem "activerecord-jdbcsqlite3-adapter"
|
|
gem "jruby-openssl"
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3"
|
|
|
|
group :mongoid do
|
|
gem "mongo", "~> 1.3.0"
|
|
gem "mongoid", "~> 2.0"
|
|
gem "bson_ext", "~> 1.3.0"
|
|
end
|
|
end
|