mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 06:48:01 -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.
39 lines
605 B
Ruby
39 lines
605 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rails", "~> 8.1.0"
|
|
gem "rdoc"
|
|
|
|
gem "rails-controller-testing"
|
|
|
|
gem "responders", "~> 3.1"
|
|
|
|
group :test do
|
|
gem "mocha", "~> 2.1", require: false
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid"
|
|
gem "rexml"
|
|
gem "timecop"
|
|
gem "webrat"
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3", "~> 2.1"
|
|
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
|