diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ddc1ee4..2080f2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: matrix: ruby: ["3.0", "3.1", "3.2", "3.3"] - gemfile: [ "rails_6_1", "rails_7_0"] + gemfile: [ "rails_6_1", "rails_7_0", "rails_head"] experimental: [false] #include: diff --git a/Appraisals b/Appraisals index 32030d8..f34115e 100644 --- a/Appraisals +++ b/Appraisals @@ -6,6 +6,11 @@ appraise "rails-7-0" do gem "rails", "~> 7.0.0" end -appraise "rails-7-1" do - gem "rails", "~> 7.1.0" +# Currently there is not Rails 7.1 release that is compatible with pbbuilder, but 7.1.4 should include a fix that will make it compatible again. +#appraise "rails-7-1" do +# gem "rails", "~> 7.1.0" +#end + +appraise "rails-head" do + gem "rails", github: "rails/rails", branch: "main" end \ No newline at end of file diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile deleted file mode 100644 index 0601fc9..0000000 --- a/gemfiles/rails_7_1.gemfile +++ /dev/null @@ -1,10 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rake" -gem "appraisal" -gem "ruby-lsp" -gem "rails", "~> 7.1.0" - -gemspec path: "../" diff --git a/gemfiles/rails_head.gemfile b/gemfiles/rails_head.gemfile index 7903192..f8b5641 100644 --- a/gemfiles/rails_head.gemfile +++ b/gemfiles/rails_head.gemfile @@ -4,6 +4,7 @@ source "https://rubygems.org" gem "rake" gem "appraisal" +gem "ruby-lsp" gem "rails", github: "rails/rails", branch: "main" gemspec path: "../"