mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 15:47:59 -05:00
This is essentially the same as `gemfiles/Gemfile.rails-6.0-stable`, but I'm keeping both for now since I want to change the main `Gemfile` later to point to Rails master (`6.1.0.alpha`), so then I won't need to recreate the `6.0-stable` Gemfile again.
40 lines
696 B
Ruby
40 lines
696 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rails", "~> 6.0.0"
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc"
|
|
|
|
gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml"
|
|
|
|
gem "rails-controller-testing"
|
|
|
|
gem "responders", "~> 3.0"
|
|
|
|
group :test do
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid"
|
|
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
|