From b5cd35395085163ab96a845c19d49bf664fa0b1d Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:00:32 -0500 Subject: [PATCH 1/7] Remove 2.7 if statements --- ruby-2.7.gemfile | 47 ++++++++++------------------------------------- 1 file changed, 10 insertions(+), 37 deletions(-) diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index 3c35c9d4b50..5e316756d9e 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,12 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +51,13 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From bc9802f69faf8f02b74e4811d1d3f6641b522264 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:03:30 -0500 Subject: [PATCH 2/7] Alphabetize 2.7 --- ruby-2.7.gemfile | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index 5e316756d9e..e6394bcb3a0 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,18 +33,8 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' -gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov - -gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb -gem 'webmock', '>= 3.10.0' - # 1.50 is the last version to support Ruby 2.6 gem 'rubocop', '~> 1.50.0', require: false gem 'rubocop-packaging', '~> 0.5.2', require: false @@ -41,17 +42,14 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' +# Merging branch coverage results does not work for old, unsupported rubies and JRuby +# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, +# but given it only affects unsupported version of Ruby, it might not get merged. +gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] +gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb +gem 'webmock', '>= 3.10.0' group :check do gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' From 3bc26e5fea37c5625f9a8232b18ae149cb19d97d Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:13:23 -0500 Subject: [PATCH 3/7] Remove 2.6 if statements --- ruby-2.6.gemfile | 48 ++++++++++-------------------------------------- 1 file changed, 10 insertions(+), 38 deletions(-) diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 3c35c9d4b50..70895652c5c 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,12 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +51,12 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From 821b4c3e031ac7eb4b3ed8ebac2f1769d9e88d0a Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:14:51 -0500 Subject: [PATCH 4/7] Alphabetize 2.6 --- ruby-2.6.gemfile | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 70895652c5c..da3223ae78e 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,18 +33,8 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' -gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov - -gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb -gem 'webmock', '>= 3.10.0' - # 1.50 is the last version to support Ruby 2.6 gem 'rubocop', '~> 1.50.0', require: false gem 'rubocop-packaging', '~> 0.5.2', require: false @@ -41,17 +42,14 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' +# Merging branch coverage results does not work for old, unsupported rubies and JRuby +# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, +# but given it only affects unsupported version of Ruby, it might not get merged. +gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] +gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb +gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false From 00f03dfc7b009f6a828ca22d4e33db5559a82867 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:18:37 -0500 Subject: [PATCH 5/7] Remove 2.5 if statements --- ruby-2.5.gemfile | 43 ++++--------------------------------------- 1 file changed, 4 insertions(+), 39 deletions(-) diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index 3c35c9d4b50..ad2f98eb79c 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-nav' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,22 +34,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end - # Optional extensions # TODO: Move this to Appraisals? # dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. @@ -67,24 +44,12 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From a8619ca5630f97cf3952e494687736698d0b85db Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:19:20 -0500 Subject: [PATCH 6/7] Alphabetize 2.5 --- ruby-2.5.gemfile | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index ad2f98eb79c..e17f2ef0274 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,7 +33,6 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' # Merging branch coverage results does not work for old, unsupported rubies and JRuby @@ -34,18 +44,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - group :check do gem 'standard', require: false end From 57c4e2c76569b3dc543ffdb15514e966a1bb9090 Mon Sep 17 00:00:00 2001 From: sarahchen6 Date: Wed, 11 Dec 2024 15:40:26 +0000 Subject: [PATCH 7/7] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20https?= =?UTF-8?q?://github.com/DataDog/dd-trace-rb/actions/runs/12279652045?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_2.5_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_aws.gemfile | 4 ++-- gemfiles/ruby_2.5_contrib.gemfile | 4 ++-- gemfiles/ruby_2.5_contrib_old.gemfile | 4 ++-- gemfiles/ruby_2.5_core_old.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_7.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_graphql_2.0.gemfile | 4 ++-- gemfiles/ruby_2.5_hanami_1.gemfile | 4 ++-- gemfiles/ruby_2.5_http.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_2.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_3.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_1.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_2.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_3.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile | 4 ++-- ...y_2.5_rails5_postgres_redis_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile | 4 ++-- ...y_2.5_rails6_postgres_redis_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails_old_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_3.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_4.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_5.gemfile | 4 ++-- gemfiles/ruby_2.5_relational_db.gemfile | 4 ++-- gemfiles/ruby_2.5_resque2_redis3.gemfile | 4 ++-- gemfiles/ruby_2.5_resque2_redis4.gemfile | 4 ++-- gemfiles/ruby_2.5_sinatra_2.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_10.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_11.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_12.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_7.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_8.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_9.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_min.gemfile | 4 ++-- gemfiles/ruby_2.6_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_aws.gemfile | 12 ++++++------ gemfiles/ruby_2.6_contrib.gemfile | 12 ++++++------ gemfiles/ruby_2.6_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_2.6_core_old.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_2.6_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_2.6_hanami_1.gemfile | 12 ++++++------ gemfiles/ruby_2.6_http.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres_redis.gemfile | 12 ++++++------ ...y_2.6_rails5_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres_redis.gemfile | 12 ++++++------ ...y_2.6_rails6_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_2.6_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_2.6_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_2.6_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_min.gemfile | 12 ++++++------ gemfiles/ruby_2.7_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_aws.gemfile | 12 ++++++------ gemfiles/ruby_2.7_contrib.gemfile | 12 ++++++------ gemfiles/ruby_2.7_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_2.7_core_old.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_hanami_1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_http.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres_redis.gemfile | 12 ++++++------ ...y_2.7_rails5_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres_redis.gemfile | 12 ++++++------ ...y_2.7_rails6_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_2.7_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_2.7_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_2.7_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_min.gemfile | 12 ++++++------ 169 files changed, 790 insertions(+), 790 deletions(-) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index a1e5cfb8cd1..1e8ac33d286 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "activesupport", "~> 5" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index 9fbf9c12164..52dc5a5885f 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index a5fdba30905..f258c75eed4 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "dalli", ">= 3.0.0" gem "grpc", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index 9105c5c196b..1cc1169184a 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index ddade5bcebb..213dcac5145 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 818c64d6c70..3d530af4682 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index 75ccf3781cf..df5a2ddeed2 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index bf55937985f..76606fcdafc 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index a971938ea13..d05e973d562 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index bee92ed95d5..afafc70bbf6 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index 1f482cf7fd2..d814586626a 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index 2f5254b1d79..408907d1602 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index fe1d920ac76..c99ceb8f6b0 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index 88e97bc7f70..1b6b732cad0 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index 3ebbe46a8d7..bbcd0b2fa87 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index 51fdb0eeea3..039a866b0be 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index a1d4174a563..0d74d695b82 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index 4b87d4dec87..0165644932d 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index ecf1210df19..a3ecf74d758 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "mysql2", "< 1" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 9cf2c22b63b..1973f9c7b94 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index f8fe99bb503..0243d634c4d 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "redis-rails" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index 8610029eeab..fd777daa147 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index c24759096be..342ccae0881 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index 88f7d3476fd..66e9d4943fb 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index 9cc5a0e4720..b9ef8f3253c 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 806c12b4b90..13382573bb2 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index 3677f4543dd..29b954cacaa 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 1a2a1fb50ac..7fdeaaa0770 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index 7736dfb69e2..55b0e436e7e 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index 9472a945ed4..fde871885f1 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index f5c1d40533c..dc19a3d027f 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index f742286c012..f65ceea8ae3 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", ">= 4.2.5" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index 2374c0fe9c9..dab4854a51e 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index d00130a49ed..fc8169abd2c 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index 73b7a83cdf5..b754bb44b74 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index 4f0651ac722..0f0c43b0a5d 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 54b34b74b16..4135f8bf0af 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 5fa99a95e56..32cdb1ca168 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index 28cb702b96c..febcf73740b 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index 5dbcae64248..f6f28c9eeac 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails_old_redis.gemfile b/gemfiles/ruby_2.5_rails_old_redis.gemfile index f6a144fa6f9..d2e76a8fba0 100644 --- a/gemfiles/ruby_2.5_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.5_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index 7f02dec0877..f490491bdf9 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index ebf0281da9f..2b7e0423307 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index 152c18248c7..178602b15be 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index 2b18ca2ad1e..327f1c9546e 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "activerecord", "~> 5" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index 6bde2503149..3a806751698 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index 2829c002d37..e6628a6c6fc 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index 4e679bfdd57..9d275510750 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index beabcf47e4b..25c4375e490 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index cb8e8b0d179..dded38b5802 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index e999dc54b6c..0572b1e6eb1 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index 5acd056d30e..5a3fa1e241c 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index 4ddfbfb5cbe..b409510dc13 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index 0398b82222b..ca224503071 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index ee5cae325c4..362b1fc9ca6 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe" group :check do diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index b02b2a0fb2b..68427c9b543 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index 28bb361b782..48b6d7b153c 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activesupport", "~> 6.0.0" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index 03689cf9a21..1dc352e3dac 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 6aaeaa7b891..9270cf44dde 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", ">= 3.0.0" gem "grpc", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index a93a1e9014a..d5ba6888425 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index f5dbe9498c5..51127e7018b 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index f33e0938265..18646538d77 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index 8ae83a9979e..990efceb5a4 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index dcb38081abb..5c792ff8b08 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index ffe59921cb1..73aa71c8048 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index af1641e3b01..330a837ae6e 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index 17ad6a47c40..d029867dc55 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index df697dc8751..0cdb6a2a2b3 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 04240c6293a..0e429b92efc 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index a0a8b3d1e78..f4109662b70 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index 5132d347eb2..4dc27d82408 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 7f786771513..999ad79638f 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 6c11269fb60..15637f77946 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index 5a5ab8f2293..f53cbc15399 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index 689bb6003af..04c86fcfeba 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 2087df0e3d9..42db737efc0 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index 91f3108cfaf..b69f9ce1178 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index 3a30309b023..718ff6aa1b3 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 0ff18eac9b2..6f2fef4a19d 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index 00528cf07df..84a9b4fa68a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index 3b69185e5ba..e8c003504f3 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 608b27b452b..c846ea91ad8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index 30109914aa5..2c16f6b5516 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 25e18a639db..f15d59ebd2f 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 21d653954ea..be11227e256 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index 1bda171ed10..a0b5b9776cf 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 974b74cd631..eddc5b208c6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index d066a1bb005..621a3dd2096 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index a68a3a5f4b3..46311935799 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 9d28578860d..71719beee89 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index e14dc379943..dbb566efa99 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index 6d8c549ce09..f51aa07fe47 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index 69533982e5c..f1b6c471dc4 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 630b3610c8f..37ee449cfcb 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index 672ac8d0500..cff6cbc61ca 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index e0f84bd3655..6133bafdb91 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index 6122cf2580d..edd7dea78ff 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 574f002512a..7266e900cd9 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index 16d88f90e0a..d65892b0142 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activerecord", "~> 6.0.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index cf1b19830d6..d54ecb2060a 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index ff7f7ef06dd..3ff80d5435b 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index bcc2a53a499..f8785d68344 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index beff674d7fe..6cbb9b70751 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index ac3513676d9..bcec6cca1e4 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index 001015afc3a..c1dbc7c6fdd 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index 02dfc58a579..d55950bb7b6 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index d6fbcfbdddf..f5b747d0068 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index b1fe193422f..7a0910e3e2b 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index f15f3357612..d9a019cf826 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index fa74e22aaf7..72303e50de1 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe" group :check do diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index d6e043133ec..ae393f168a1 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index 2e54aba10b5..6871d4e0092 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activesupport", "~> 6.1.0" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index d80ef181ebc..cf90613f51f 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index 55fb24671c1..717e758af49 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", ">= 3.0.0" gem "grpc" gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 8ed1d3f7e45..302a3302341 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 22b1f804d7d..76671c02ad2 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 831b1e68d49..485c12a2039 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 851e3d04fc6..0ede1697126 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index aae99848851..cc4b764b89a 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 6ca4425a920..05e12d8c62d 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index a29391cff5c..e859e5d99de 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 7d828a77aff..292786791ab 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index 355de6c16ac..bd41ba58337 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index c0f89d95721..25fb5f44b8c 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 8cd1628f5c4..9d5637de34a 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 6322ab13e59..45a7b298a59 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index 6ba2ed4a710..44946e07ab7 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index a66d1f21e9e..10c94c71a3a 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index a62051b83ad..d3fbdaaa0bc 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index caff1af8363..cf9b5de846c 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index 69616513e27..a27c9d85964 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index f3b8fd42f00..a2d690122ee 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index 25edee51990..2d041aaed0b 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index 3ac629174b7..abf80bf906a 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index 1bc2c967ee3..dcbd3f63f03 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 87cefb2b101..4770fc30307 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index 1c1b2d0bf2c..280bc9ef508 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index 2f5b30201d6..eb210a177e9 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index dbfcd414a44..42ecf92382a 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index 539f31d0e5d..7c8dbcb73b5 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq", "~> 6" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 95ebcf52525..6d15d53e25e 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 7e00c33d1cb..fe916b0e46c 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index a84854b00c1..51836759abf 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index 377b4385be7..0e8d2dd37f2 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 32ee0060bfd..7f54dbb405c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index ff1ff6bf096..0eceffddbdc 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 1064daf4528..5257c56c906 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index c2fb7e3e160..5c4c1989101 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index 7f38f697a54..f6b15327dcf 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 03519b9690c..0c67fa2430d 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 1766ab6cccb..16d8db86067 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq", "~> 6" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index da1d19541d1..91967d21748 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index 963760610a1..264f661cb3f 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 46edb4c521c..ace949b88ef 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 707a37641d4..1836eb46c72 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index 43870a16ac6..edc30469c0f 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index fe8eefa6ce8..7c9a0846669 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activerecord", "~> 6.1.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index 523734758ec..d79794de7d1 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 36c58a59619..be8b9ceb700 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 268b500bd2f..a634a4ca5fc 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index f57187211be..f6e24fd7705 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 1423553d55f..30c2d604e6b 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index b19b8f45b58..e62cd65191a 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index f21616681ca..ee5c89c9826 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index bb8de0c5b50..160bf01b3a2 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 92490a43bbe..71972f7bf68 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 25d9b71b3bd..8e30dbb8698 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index 75395fcab65..1ff8df17cd5 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe" group :check do diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index f86006c2cc4..6e038b2957b 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "= 5.15.0" group :check do