mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 14:58:05 -05:00
There's a number of deprecation warnings to work through related to mocha updates in v2+, we'll get through those on a separate change. https://github.com/freerange/mocha/blob/main/RELEASE.md#200 The main issue is with Minitest, fixed in v2.1: https://github.com/freerange/mocha/blob/main/RELEASE.md#210 Also run `bundle update` on the main Gemfile to update all dependencies there to latest.
31 lines
596 B
Plaintext
31 lines
596 B
Plaintext
source "https://rubygems.org"
|
|
|
|
gemspec path: ".."
|
|
|
|
gem "rails", '~> 5.1.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
|
|
|
|
if RUBY_VERSION < "2.3.0"
|
|
# We're getting version 2.2.0 which doesn't play nice with Ruby 2.2, using
|
|
# `Object.deprecate_constant` which isn't available.
|
|
gem "multipart-post", "2.1.1"
|
|
end
|