mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-13 16:57:57 -05:00
Unfortunately we can't enforce the version in the gemspec because responders only supports Rails 5.2 now, and Devise still supports previous versions. We'll drop support for those in a future major release, so for now I'm not adding any version. This also adds a warning in case someone is using an older version of responders and tries to set the error/redirect statuses via Devise, so that they know what to do (upgrade responders) in that case.
40 lines
699 B
Ruby
40 lines
699 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rails", "~> 7.0.0"
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc"
|
|
|
|
gem "rails-controller-testing", github: "rails/rails-controller-testing"
|
|
|
|
gem "responders", "~> 3.1"
|
|
|
|
group :test do
|
|
gem "nokogiri", "< 1.13"
|
|
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
|
|
|
|
# platforms :jruby do
|
|
# gem "activerecord-jdbc-adapter"
|
|
# gem "activerecord-jdbcsqlite3-adapter"
|
|
# gem "jruby-openssl"
|
|
# end
|
|
|
|
# TODO:
|
|
# group :mongoid do
|
|
# gem "mongoid", "~> 4.0.0"
|
|
# end
|