Skip to content

Commit

Permalink
add debug dependency to all integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
p committed Jan 22, 2025
1 parent 3dcff58 commit d6ea406
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions integration/apps/hanami/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ group :test, :development do
gem 'dotenv', '~> 2.4'
end

group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end

group :test do
gem 'rspec'
# gem 'capybara'
Expand Down
2 changes: 1 addition & 1 deletion integration/apps/opentelemetry/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ gem 'opentelemetry-sdk'
# Choose correct specs for 'datadog' demo environment
gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog')

gem 'byebug'
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'rspec'
1 change: 1 addition & 0 deletions integration/apps/rack/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ gem 'dogstatsd-ruby'
gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog')

# Development
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'pry-byebug' if RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0'
# gem 'pry-stack_explorer', platform: :ruby
# gem 'rbtrace'
Expand Down
2 changes: 1 addition & 1 deletion integration/apps/rails-five/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ group :test do
end

group :test, :development do
gem 'byebug', platform: :ruby
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'mock_redis', '0.19.0'
gem 'parallel_tests'

Expand Down
2 changes: 1 addition & 1 deletion integration/apps/rails-six/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ group :test do
end

group :test, :development do
gem 'byebug', platform: :ruby
gem "debug", platforms: %i[ mri mingw x64_mingw ]
# mock_redis 0.47.0+ requires redis 5 or higher
# mock_redis 0.42.0+ requires Ruby 3.0 or higher
# mock_redis 0.37.0+ requires Ruby 2.7 or higher
Expand Down
2 changes: 1 addition & 1 deletion integration/apps/ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ gem 'google-protobuf'
# Choose correct specs for 'datadog' demo environment
gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog')

gem 'byebug'
gem "debug", platforms: %i[ mri mingw x64_mingw ]
1 change: 1 addition & 0 deletions integration/apps/sinatra2-classic/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ gem 'dogstatsd-ruby'
gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog')

# Development
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'pry-byebug'
# gem 'pry-stack_explorer', platform: :ruby
# gem 'rbtrace'
Expand Down
1 change: 1 addition & 0 deletions integration/apps/sinatra2-modular/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ gem 'dogstatsd-ruby'
gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog')

# Development
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'pry-byebug'
gem 'rspec'
gem 'rspec-wait'
Expand Down

0 comments on commit d6ea406

Please sign in to comment.