Skip to content

Commit

Permalink
Add explicit dependency on mutex_m on Ruby 3.3
Browse files Browse the repository at this point in the history
Maybe this will silence the warning that is making CI fail.
  • Loading branch information
jeremyevans committed Dec 27, 2023
1 parent 1024c51 commit a51420b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ end
gem 'minitest', minitest_version
gem 'minitest-global_expectations', '>=1.0.1'

if RUBY_VERSION >= '3.3'
# Until minitest is updated to not require mutex_m
gem 'mutex_m'
end

if RUBY_VERSION < '2.0'
gem 'sequel', '< 5.70'
else
Expand Down

0 comments on commit a51420b

Please sign in to comment.