Skip to content

Commit 736fd8a

Browse files
committed
squash: 3.4 workaround
1 parent bfc55bd commit 736fd8a

File tree

56 files changed

+84
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+84
-2
lines changed

helpers/mysql/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77
source 'https://rubygems.org'
88

99
gemspec
10+
11+
group :test do
12+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
13+
end

helpers/sql-obfuscation/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77
source 'https://rubygems.org'
88

99
gemspec
10+
11+
group :test do
12+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
13+
end

helpers/sql/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ source 'https://rubygems.org'
1111
# then target specific versions in the Appraisals file.
1212

1313
gemspec
14+
15+
group :test do
16+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
17+
end

instrumentation/action_mailer/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ group :test do
1414
# Add jar-dependencies gem only if the Ruby runtime is JRuby
1515
# https://github.com/jruby/jruby/issues/7262
1616
gem 'jar-dependencies', '0.4.1', platforms: :jruby
17+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1718
end

instrumentation/action_pack/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../../instrumentation/base'
1313
gem 'opentelemetry-instrumentation-rack', path: '../../instrumentation/rack'
1414
gem 'pry-byebug'
15+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1516
end

instrumentation/action_view/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../base'
1313
gem 'opentelemetry-instrumentation-active_support', path: '../active_support'
1414
gem 'pry-byebug'
15+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1516
end

instrumentation/active_job/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ gemspec
1010

1111
group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../base'
13+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1314
end

instrumentation/active_model_serializers/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ gemspec
1111
group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../base'
1313
gem 'opentelemetry-instrumentation-active_support', path: '../active_support'
14+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1415
end

instrumentation/active_record/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ group :test do
1212
gem 'byebug'
1313
gem 'opentelemetry-instrumentation-base', path: '../base'
1414
gem 'pry-byebug'
15+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1516
end

instrumentation/active_storage/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ gemspec
1111
group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../base'
1313
gem 'opentelemetry-instrumentation-active_support', path: '../active_support'
14+
gem 'mutex_m' if RUBY_VERSION >= '3.4'
1415
end

0 commit comments

Comments
 (0)