mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 14:58:05 -05:00
* Drop support for Rails < 7 and Ruby < 2.7 * Add tests to support to Rails 8+ * Fix test suite across all supported versions
26 lines
430 B
Plaintext
26 lines
430 B
Plaintext
source "https://rubygems.org"
|
|
|
|
gemspec path: ".."
|
|
|
|
gem "rails", "~> 7.1.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 "omniauth-facebook"
|
|
gem "omniauth-openid"
|
|
gem "rexml"
|
|
gem "timecop"
|
|
gem "webrat"
|
|
gem "mocha", "~> 2.1", require: false
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3", "~> 1.4"
|
|
end
|