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
|
|
|
|
|
2016-11-30 12:03:22 -05:00
|
|
|
appraise "ar-4.2" do
|
2017-10-17 18:14:16 -04:00
|
|
|
gem "activerecord", "~> 4.2.10"
|
2017-12-20 22:47:55 -05:00
|
|
|
gem "database_cleaner", "~> 1.6"
|
2016-01-04 22:32:39 -05:00
|
|
|
end
|
|
|
|
|
2016-11-30 12:03:22 -05:00
|
|
|
appraise "ar-5.0" do
|
2017-09-20 05:09:41 -04:00
|
|
|
gem "activerecord", "~> 5.0.6"
|
2017-03-31 21:42:14 -04:00
|
|
|
gem "rails-controller-testing"
|
2016-01-04 22:32:39 -05:00
|
|
|
end
|
2016-11-30 10:46:31 -05:00
|
|
|
|
2017-04-27 00:21:04 -04:00
|
|
|
appraise "ar-5.1" do
|
2017-09-20 05:09:41 -04:00
|
|
|
gem "activerecord", "~> 5.1.4"
|
2016-11-30 10:46:31 -05:00
|
|
|
gem "rails-controller-testing"
|
|
|
|
end
|