paper-trail-gem--paper_trail/Appraisals

39 lines
1.1 KiB
Plaintext
Raw Normal View History

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
appraise "ar-4.2" do
2017-10-17 18:14:16 -04:00
gem "activerecord", "~> 4.2.10"
gem "database_cleaner", "~> 1.6"
2018-08-18 17:36:07 -04:00
# not compatible with mysql2 0.5
# https://github.com/brianmario/mysql2/issues/950#issuecomment-376259151
gem "mysql2", "~> 0.4.10"
# not compatible with pg 1.0.0
gem "pg", "~> 0.21.0"
2016-01-04 22:32:39 -05:00
end
2017-04-27 00:21:04 -04:00
appraise "ar-5.1" do
2018-03-27 18:06:54 -04:00
gem "activerecord", "~> 5.1.5"
gem "rails-controller-testing", "~> 1.0.2"
end
2018-03-20 11:25:13 -04:00
appraise "ar-5.2" do
gem "activerecord", "~> 5.2.1"
gem "rails-controller-testing", "~> 1.0.2"
2018-03-20 11:25:13 -04:00
end
appraise "ar-6.0" do
2019-01-25 11:13:41 -05:00
# TODO: Use actual version number once 6.0 final is released
gem "activerecord", "~> 6.0.0.beta1"
gem "rails-controller-testing", "~> 1.0.3"
end