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.
  • Loading branch information
tvdeyen committed Jan 3, 2025
1 parent 9cdc5bd commit 316f09b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,11 @@ gem "dartsass-rails", "~> 0.5.0"
gem "propshaft", "~> 1.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"

# Necessary for Rails 7.0, rspec-rails and Ruby 3.4
gem "drb", "~> 2.2"
end

0 comments on commit 316f09b

Please sign in to comment.