mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 07:38:07 -05:00
There's some incompatibility issue with loofah there since it uses an older version of nokogiri, so I'm locking it on those older versions to try to get a green build again there.
28 lines
493 B
Plaintext
28 lines
493 B
Plaintext
source "https://rubygems.org"
|
|
|
|
gemspec path: ".."
|
|
|
|
gem "rails", '~> 5.2.0'
|
|
gem "omniauth"
|
|
gem "omniauth-oauth2"
|
|
gem "rdoc"
|
|
|
|
gem "rails-controller-testing"
|
|
|
|
gem "responders", "~> 2.1"
|
|
|
|
group :test do
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-openid"
|
|
gem "timecop"
|
|
gem "webrat", "0.7.3", require: false
|
|
gem "mocha", "~> 2.1", require: false
|
|
end
|
|
|
|
platforms :ruby do
|
|
gem "sqlite3", "~> 1.3.6"
|
|
end
|
|
|
|
# There's a build incompatibility issue with nokogiri and loofah
|
|
gem "loofah", "~> 2.20.0"
|