diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d663d..cf83433 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: - '3.1' - 'head' rails: + - rails_7.2.0 - rails_7.1.3 - rails_7.0.8 diff --git a/Appraisals b/Appraisals index bbe69cd..13da73e 100644 --- a/Appraisals +++ b/Appraisals @@ -3,6 +3,7 @@ RAILS_VERSIONS = %w[ 7.0.8 7.1.3 + 7.2.0 ].freeze RAILS_VERSIONS.each do |version| diff --git a/gemfiles/rails_7.2.0.gemfile b/gemfiles/rails_7.2.0.gemfile new file mode 100644 index 0000000..29f287e --- /dev/null +++ b/gemfiles/rails_7.2.0.gemfile @@ -0,0 +1,21 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "appraisal", git: "https://github.com/n-rodriguez/appraisal.git", branch: "wip/combustion" +gem "guard-rspec" +gem "puma" +gem "rake" +gem "rspec-rails" +gem "rubocop" +gem "rubocop-rails" +gem "rubocop-rake" +gem "rubocop-rspec" +gem "simplecov" +gem "sqlite3", "~> 1.5.0" +gem "foo", path: "../spec/dummy/engines/foo" +gem "bar", path: "../spec/dummy/engines/bar" +gem "baz", path: "../spec/dummy/engines/baz" +gem "rails", "7.2.0" + +gemspec path: "../"