Skip to content

Commit 9df8448

Browse files
committed
fix: ruby 3.4 dropped base64 and mutex_m from the StdLib
``` /home/runner/work/json_api_client/json_api_client/gemfiles/vendor/bundle/ruby/3.4.0/gems/activesupport-6.0.6.1/lib/active_support/notifications/fanout.rb:3: 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. /home/runner/work/json_api_client/json_api_client/gemfiles/vendor/bundle/ruby/3.4.0/gems/webmock-3.5.1/lib/webmock/util/headers.rb:1: warning: base64 was loaded from the standard library, but is not part of the default gems starting from Ruby 3.4.0. You can add base64 to your Gemfile or gemspec to silence this warning. ```
1 parent da3ee47 commit 9df8448

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

json_api_client.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Gem::Specification.new do |s|
2323
s.add_development_dependency "webmock", '~> 3.5.1'
2424
s.add_development_dependency "mocha"
2525
s.add_development_dependency "appraisal"
26+
s.add_development_dependency "base64"
27+
s.add_development_dependency "mutex_m"
2628

2729
s.license = "MIT"
2830

0 commit comments

Comments
 (0)