mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
45016829d6
It was necessary to manually set the `sqlite3` Gem version after the release of version `1.4.0`. See https://github.com/rails/rails/issues/35153 for more info.
34 lines
652 B
Text
34 lines
652 B
Text
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec path: ".."
|
|
|
|
gem "rails", github: "rails/rails", branch: "4-2-stable"
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc", "~> 5.1"
|
|
gem "nokogiri", "1.9.1"
|
|
|
|
group :test do
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid"
|
|
gem "timecop"
|
|
gem "webrat", "0.7.3", require: false
|
|
gem "mocha", "~> 1.1", require: false
|
|
gem 'test_after_commit', require: false
|
|
end
|
|
|
|
platforms :jruby do
|
|
gem "activerecord-jdbc-adapter"
|
|
gem "activerecord-jdbcsqlite3-adapter"
|
|
gem "jruby-openssl"
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3", "~> 1.3.6"
|
|
end
|
|
|
|
group :mongoid do
|
|
gem "mongoid", "~> 4.0"
|
|
end
|