Skip to content

Commit

Permalink
add gems which are not part of Ruby 3.4 to Gemfile
Browse files Browse the repository at this point in the history
/.rvm/gems/ruby-3.4.0-preview2/gems/activesupport-6.1.7.10/lib/active_support/dependencies.rb:299: warning: mutex_m was loaded from the standard library, but is not part of the default gems starting from Ruby 3.4.0.
You can add mutex_m to your Gemfile or gemspec to silence this warning.

etc
  • Loading branch information
ArturT committed Oct 29, 2024
1 parent 60cf626 commit d99d5cc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.7'

# make old Rails 6 work with Ruby 3.4
gem 'mutex_m'
gem 'drb'
# make old Rails 6 work with Ruby 3.5
gem 'benchmark'
gem 'ostruct'

gem 'pg'
gem 'tzinfo-data'
# Use SCSS for stylesheets
Expand Down
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ GEM
rspec-files (~> 1.0)
rspec-memory (~> 1.0)
base64 (0.2.0)
benchmark (0.3.0)
bigdecimal (3.1.8)
binding_of_caller (1.0.1)
debug_inspector (>= 1.2.0)
Expand Down Expand Up @@ -158,6 +159,7 @@ GEM
debug_inspector (1.2.0)
diff-lcs (1.5.1)
docile (1.4.1)
drb (2.2.1)
erubi (1.13.0)
execjs (2.9.1)
ffi (1.17.0)
Expand Down Expand Up @@ -202,6 +204,7 @@ GEM
mini_portile2 (2.8.7)
minitest (5.25.1)
multi_test (1.1.0)
mutex_m (0.2.0)
net-imap (0.5.0)
date
net-protocol
Expand All @@ -214,6 +217,7 @@ GEM
nokogiri (1.16.7)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
ostruct (0.6.0)
ox (2.14.18)
parallel (1.26.3)
parallel_tests (4.7.2)
Expand Down Expand Up @@ -399,21 +403,25 @@ DEPENDENCIES
async
async-io
async-rspec
benchmark
byebug
capybara
capybara-screenshot
coffee-rails
cucumber-rails
database_cleaner
drb
fiber-local (= 1.0.0)
jbuilder (~> 2.0)
jquery-rails
juniter
knapsack_pro!
listen
mutex_m
net-imap
net-pop
net-smtp
ostruct
parallel_tests
pg
pry
Expand Down

0 comments on commit d99d5cc

Please sign in to comment.