2017-12-10 23:05:11 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-01-04 22:32:39 -05:00
|
|
|
# Specify here only version constraints that differ from
|
|
|
|
# `paper_trail.gemspec`.
|
|
|
|
#
|
|
|
|
# > The dependencies in your Appraisals file are combined with dependencies in
|
2016-05-09 10:20:56 -04:00
|
|
|
# > your Gemfile, so you don't need to repeat anything that's the same for each
|
2016-01-04 22:32:39 -05:00
|
|
|
# > appraisal. If something is specified in both the Gemfile and an appraisal,
|
|
|
|
# > the version from the appraisal takes precedence.
|
|
|
|
# > https://github.com/thoughtbot/appraisal
|
2020-12-14 16:03:52 -05:00
|
|
|
#
|
|
|
|
#
|
2020-12-15 12:43:29 -05:00
|
|
|
appraise "rails-5.2" do
|
2020-12-14 16:03:52 -05:00
|
|
|
gem "rails", "~> 5.2.4"
|
2018-08-14 01:29:08 -04:00
|
|
|
gem "rails-controller-testing", "~> 1.0.2"
|
2018-03-20 11:25:13 -04:00
|
|
|
end
|
2018-12-04 16:10:35 -05:00
|
|
|
|
2020-12-15 12:43:29 -05:00
|
|
|
appraise "rails-6.0" do
|
2020-12-14 16:03:52 -05:00
|
|
|
gem "rails", "~> 6.0.3"
|
2018-12-04 16:10:35 -05:00
|
|
|
gem "rails-controller-testing", "~> 1.0.3"
|
|
|
|
end
|
2020-12-10 03:15:59 -05:00
|
|
|
|
2020-12-15 12:43:29 -05:00
|
|
|
appraise "rails-6.1" do
|
2020-12-15 12:38:55 -05:00
|
|
|
gem "rails", "~> 6.1.0"
|
2020-12-10 03:15:59 -05:00
|
|
|
gem "rails-controller-testing", "~> 1.0.5"
|
|
|
|
end
|