From 19acde05c09ddc595e6a07b192767d3562c2f345 Mon Sep 17 00:00:00 2001 From: Brian Shand Date: Wed, 5 Feb 2025 14:46:52 +0000 Subject: [PATCH] Fix concurrent-ruby version to 1.3.4 for older Rails versions --- gemfiles/Gemfile.rails70 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gemfiles/Gemfile.rails70 b/gemfiles/Gemfile.rails70 index 0da36f5..4446ecb 100644 --- a/gemfiles/Gemfile.rails70 +++ b/gemfiles/Gemfile.rails70 @@ -4,3 +4,6 @@ gemspec path: '..' gem 'activerecord', '~> 7.0.0' gem 'activesupport', '~> 7.0.0' + +# Latest concurrent-ruby breaks Rails < 7.1. See https://github.com/rails/rails/issues/54260 +gem 'concurrent-ruby', '1.3.4'