From 62375c8fc815584a035575612abfb6e07d07cc17 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 22 Nov 2025 11:20:33 +0000 Subject: [PATCH] Workaround for ruby 3.5.0 compatibility with delayed_job https://github.com/collectiveidea/delayed_job/issues/1239 --- Gemfile | 4 ++++ Gemfile.lock | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Gemfile b/Gemfile index a514f98bc..2060e1a95 100644 --- a/Gemfile +++ b/Gemfile @@ -44,6 +44,10 @@ gem "argon2" # Support brotli compression for assets gem "sprockets-exporters_pack" +# Needed for ruby 3.5.0 compatibility with delayed_job +# https://github.com/collectiveidea/delayed_job/issues/1239 +gem "benchmark" + # Load rails plugins gem "actionpack-page_caching", ">= 1.2.0" gem "activerecord-import" diff --git a/Gemfile.lock b/Gemfile.lock index 6260ab13b..b8c5b9c80 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -131,6 +131,7 @@ GEM aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) base64 (0.3.0) + benchmark (0.5.0) better_errors (2.10.1) erubi (>= 1.0.0) rack (>= 0.9.0) @@ -902,6 +903,7 @@ DEPENDENCIES argon2 autoprefixer-rails aws-sdk-s3 + benchmark better_errors binding_of_caller bootsnap (>= 1.4.2) -- 2.39.5