From 171566335f723f04c6ba3f228fd14856d37a712d Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Tue, 15 Mar 2022 15:27:41 +0100 Subject: [PATCH] Use Rails 6-1-stable branch The fix has been merged, but not released yet --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 8731162477..53ab7137c9 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ gemspec rails_version = ENV.fetch("RAILS_VERSION", 6.1).to_f if rails_version.to_s.match?(/6.1/) - gem "rails", git: "https://github.com/fatkodima/rails", branch: "fix-polymorphic-index-compat-6-1" + gem "rails", git: "https://github.com/rails/rails", branch: "6-1-stable" else gem "rails", "~> #{rails_version}.0" end