From adbcd9a55afdec7944c6ae1998c67c512e4c70bf Mon Sep 17 00:00:00 2001 From: Nicolas Rodriguez Date: Sun, 11 Aug 2024 05:46:42 +0200 Subject: [PATCH] Add support for Rails 7.2 --- .github/workflows/ci.yml | 1 + Appraisals | 1 + gemfiles/rails_7.2.0.gemfile | 17 +++++++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 gemfiles/rails_7.2.0.gemfile 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..3569b16 --- /dev/null +++ b/gemfiles/rails_7.2.0.gemfile @@ -0,0 +1,17 @@ +# 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 "pry" +gem "rake" +gem "rspec-rails" +gem "rubocop" +gem "rubocop-rake" +gem "rubocop-rspec" +gem "simplecov" +gem "sqlite3", "~> 1.5.0" +gem "rails", "7.2.0" + +gemspec path: "../"