From d37fa8e0f8bd885dbb3dbba3bf9df81f6de90406 Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Tue, 20 Feb 2024 03:27:34 +1100 Subject: [PATCH] Add conditional development dependency on mutex_m --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index e1702ca..7b2a0ab 100644 --- a/Gemfile +++ b/Gemfile @@ -24,3 +24,7 @@ end platforms :jruby do gem 'jruby-openssl' end + +if RUBY_VERSION >= '3.4' + gem 'mutex_m' # TODO: remove this once as-notifications has such a dependency +end