From 94e07e302dee2f25c6856955e9384cac97484cf2 Mon Sep 17 00:00:00 2001 From: Jordan Hollinger Date: Tue, 21 Jan 2025 15:01:45 -0500 Subject: [PATCH] Pins concurrent-ruby to 1.3.4 for older versions of ActiveSupport to fix a bug running tests Signed-off-by: Jordan Hollinger --- Appraisals | 2 ++ gemfiles/ar_6.1.gemfile | 1 + gemfiles/ar_7.0.gemfile | 1 + 3 files changed, 4 insertions(+) diff --git a/Appraisals b/Appraisals index 826bb0a..da6b603 100644 --- a/Appraisals +++ b/Appraisals @@ -10,8 +10,10 @@ end appraise "ar-7.0" do gem "activerecord", "~> 7.0.8" + gem "concurrent-ruby", "1.3.4" end appraise "ar-6.1" do gem "activerecord", "~> 6.1.7" + gem "concurrent-ruby", "1.3.4" end diff --git a/gemfiles/ar_6.1.gemfile b/gemfiles/ar_6.1.gemfile index 93374d4..c031fae 100644 --- a/gemfiles/ar_6.1.gemfile +++ b/gemfiles/ar_6.1.gemfile @@ -3,5 +3,6 @@ source "https://rubygems.org" gem "activerecord", "~> 6.1.7" +gem "concurrent-ruby", "1.3.4" gemspec path: "../" diff --git a/gemfiles/ar_7.0.gemfile b/gemfiles/ar_7.0.gemfile index 362ea5b..9fa1190 100644 --- a/gemfiles/ar_7.0.gemfile +++ b/gemfiles/ar_7.0.gemfile @@ -3,5 +3,6 @@ source "https://rubygems.org" gem "activerecord", "~> 7.0.8" +gem "concurrent-ruby", "1.3.4" gemspec path: "../"