forked from devise-security/devise-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
33 lines (26 loc) · 768 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
# Oldest Rails version getting security patches is 6.0
gem 'minitest-rails', '~> 6.0.0'
gem 'railties', '~> 6.0.0'
group :active_record do
gem 'pg'
gem 'sqlite3'
end
group :mongoid do
gem 'mongoid', '~> 8.0'
group :test do
gem 'database_cleaner-mongoid', '~> 2.0'
end
end
# This dependency is here to support an older style of testing that was used
# with Rails 4.2. It can be dropped after we get rid of the older style tests.
# Note that Devise itself still uses controller testing so we may need to retain
# this for consistency.
group :test do
gem 'rails-controller-testing'
end
# Dependencies for Ruby 3.4 and up
gem 'bigdecimal', require: false
gem 'drb', require: false