forked from devise-security/devise-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (22 loc) · 662 Bytes
/
Gemfile
File metadata and controls
28 lines (22 loc) · 662 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
# Oldest Rails version getting security patches is 5.2
gem 'minitest-rails', '~> 5.2.0'
gem 'railties', '~> 5.2.8'
group :active_record do
gem 'sqlite3'
end
group :mongoid do
gem 'mongoid', '~> 7.4'
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