# frozen_string_literal: true # Specify here only version constraints that differ from # `paper_trail.gemspec`. # # > The dependencies in your Appraisals file are combined with dependencies in # > your Gemfile, so you don't need to repeat anything that's the same for each # > 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-5.2" do gem "activerecord", [">= 5.2.2.1", "< 5.3"] gem "rails-controller-testing", "~> 1.0.2" end appraise "ar-6.0" do gem "activerecord", ["6.0.0"] gem "rails-controller-testing", "~> 1.0.3" end