mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
a793472a3e
This allows us to remove the dependency on the XML serializer provided by the external `activemodel-serializers-xml` gem, and eliminates the following deprecation warning: DEPRECATION WARNING: ActiveModel::Errors#to_xml is deprecated and will be removed in Rails 6.2. Please note: this does not mean Devise doesn't support XML, it simply means our test suite will use JSON to test non-navigatable formats instead of XML, for simplicity. Devise's job is not to test object serialization, so as long as your objects properly serialize to XML/JSON/any other format, it should work out of the box.
38 lines
672 B
Ruby
38 lines
672 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rails", "~> 6.1.0"
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc"
|
|
|
|
gem "rails-controller-testing", github: "rails/rails-controller-testing"
|
|
|
|
gem "responders", "~> 3.0"
|
|
|
|
group :test do
|
|
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
|