mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-08 22:37:57 -05:00
We pointed to github to fix issues with Ruby 2.7 and kwargs, but since then a version 1.0.5 was released which includes those fixes. There's a few more things in their main, but nothing we need if all is green.
26 lines
388 B
Plaintext
26 lines
388 B
Plaintext
source "https://rubygems.org"
|
|
|
|
gemspec path: ".."
|
|
|
|
gem "rails", "~> 8.0.0"
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc"
|
|
|
|
gem "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", "~> 2.1"
|
|
end
|