forked from devise-security/devise-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appraisals
26 lines (21 loc) · 923 Bytes
/
Appraisals
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
# frozen_string_literal: true
appraise 'rails-5.2' do
gem 'railties', '~> 5.2.0'
gem 'minitest-rails', '~> 5.2.0'
end
appraise 'rails-6.0' do
gem 'railties', '~> 6.0.0'
gem 'minitest-rails', '~> 6.0.0'
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
# Taken from https://github.com/rails/rails/pull/42366
gem 'net-smtp', require: false
end
appraise 'rails-6.1' do
gem 'railties', '~> 6.1.0'
gem 'minitest-rails', '~> 6.1.0'
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
# Taken from https://github.com/rails/rails/pull/42366
gem 'net-smtp', require: false
end