Sha256: 7a1a97a400ce7f4de2d45f69d2c951e8c033b0194a7176d8be941f40ebd65fb5
Contents?: true
Size: 852 Bytes
Versions: 4
Compression:
Stored size: 852 Bytes
Contents
# Appraisal integrates with bundler and rake to test your library # against different versions of dependencies in repeatable scenarios called "appraisals" # https://github.com/thoughtbot/appraisal # # The dependencies in your Appraisals file are combined with dependencies in your Gemfile # # Install the dependencies for each appraisal # $ bundle exec appraisal install # which generates a Gemfile for each appraisal in the gemfiles directory # # Run each appraisal in turn or a single appraisal:- # $ bundle exec appraisal rspec # $ bundle exec appraisal rails-6-1 rspec appraise "rails-7-0" do gem "activerecord", "~> 7.0" gem "activesupport", "~> 7.0" end appraise "rails-6-1" do gem "activerecord", "~> 6.1" gem "activesupport", "~> 6.1" end appraise "rails-6-0" do gem "activerecord", "~> 6.0.1" gem "activesupport", "~> 6.0.1" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
active_manageable-0.2.0 | Appraisals |
active_manageable-0.1.2 | Appraisals |
active_manageable-0.1.1 | Appraisals |
active_manageable-0.1.0 | Appraisals |