diff --git a/Appraisals b/Appraisals index 5c1085b..e392ade 100644 --- a/Appraisals +++ b/Appraisals @@ -2,10 +2,6 @@ appraise "rails-7-0" do gem "rails", "~> 7.0.0" end -appraise "rails-7-1" do - gem "rails", "~> 7.1.0" -end - appraise "rails-7-2" do gem "rails", "~> 7.2.0" end diff --git a/README.md b/README.md index 33fd64c..b027306 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ PBBuilder generates [Protobuf](https://developers.google.com/protocol-buffers) Messages with a simple DSL similar to the [JBuilder](https://rubygems.org/gems/jbuilder) gem. ## Requirements -This gem only supports Rails 7.0 annd Rails 7.2, **7.1 is not supported**. +This gem only supports Rails 7.0 and Rails 7.2, **7.1 is not supported**. There currently is a regression in ActionView (the part of Rails which renders) that forces rendered objects into strings, but for Pbbuilder we need the raw objects. This is only present in Rails 7.1, and a fix is released in Rails 7.2. https://github.com/rails/rails/pull/51023 -It might work on rails v6, but we don't guarantee that. +It might work on rails v6 (it worked previously), but we don't guarantee that and don't test against these versions anymore. ## Compatibility with jBuilder We don't aim to have 100% compitability and coverage with jbuilder gem, but we closely follow jbuilder's API design to maintain familiarity. diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile deleted file mode 100644 index 9780a19..0000000 --- a/gemfiles/rails_7_1.gemfile +++ /dev/null @@ -1,9 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rake" -gem "appraisal" -gem "rails", "~> 7.1.0" - -gemspec path: "../"