Skip to content

Commit

Permalink
Add mutex_m & drb Gems for Rails 7.0 and Ruby 3.4
Browse files Browse the repository at this point in the history
mutex_m and drb are not part of the defaults Gems in
Ruby 3.4 anymore. Since Rails 7.0 and rspec-rails depend
on them, we add it to the local dev Gemfile.

(cherry picked from commit 51ad85b)
  • Loading branch information
tvdeyen committed Jan 24, 2025
1 parent ec8627c commit bc580d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,10 @@ gem "rails_live_reload", "~> 0.3.5"
gem "dartsass-rails", "~> 0.5.0"

gem "gem-release", "~> 2.2"

if rails_version == "7.0"
# Necessary for Rails 7.0 and Ruby 3.4
gem "mutex_m", "~> 0.3", require: false
# Necessary for Rails 7.0, rspec-rails and Ruby 3.4
gem "drb", "~> 2.2", require: false
end

0 comments on commit bc580d1

Please sign in to comment.