Skip to content

Commit 4f2a037

Browse files
committed
squash: mas cosas
1 parent 736fd8a commit 4f2a037

File tree

56 files changed

+224
-56
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

+224
-56
lines changed

helpers/mysql/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ source 'https://rubygems.org'
99
gemspec
1010

1111
group :test do
12-
gem 'mutex_m' if RUBY_VERSION >= '3.4'
12+
if RUBY_VERSION >= '3.4'
13+
gem 'base64'
14+
gem 'mutex_m'
15+
end
1316
end

helpers/sql-obfuscation/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ source 'https://rubygems.org'
99
gemspec
1010

1111
group :test do
12-
gem 'mutex_m' if RUBY_VERSION >= '3.4'
12+
if RUBY_VERSION >= '3.4'
13+
gem 'base64'
14+
gem 'mutex_m'
15+
end
1316
end

helpers/sql/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ source 'https://rubygems.org'
1313
gemspec
1414

1515
group :test do
16-
gem 'mutex_m' if RUBY_VERSION >= '3.4'
16+
if RUBY_VERSION >= '3.4'
17+
gem 'base64'
18+
gem 'mutex_m'
19+
end
1720
end

instrumentation/action_mailer/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ 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'
17+
if RUBY_VERSION >= '3.4'
18+
gem 'base64'
19+
gem 'mutex_m'
20+
end
1821
end

instrumentation/action_pack/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ 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'
15+
if RUBY_VERSION >= '3.4'
16+
gem 'base64'
17+
gem 'mutex_m'
18+
end
1619
end

instrumentation/action_view/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ 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'
15+
if RUBY_VERSION >= '3.4'
16+
gem 'base64'
17+
gem 'mutex_m'
18+
end
1619
end

instrumentation/active_job/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ gemspec
1010

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

instrumentation/active_model_serializers/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@ 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'
14+
if RUBY_VERSION >= '3.4'
15+
gem 'base64'
16+
gem 'mutex_m'
17+
end
1518
end

instrumentation/active_record/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ 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'
15+
if RUBY_VERSION >= '3.4'
16+
gem 'base64'
17+
gem 'mutex_m'
18+
end
1619
end

instrumentation/active_storage/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@ 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'
14+
if RUBY_VERSION >= '3.4'
15+
gem 'base64'
16+
gem 'mutex_m'
17+
end
1518
end

0 commit comments

Comments
 (0)