From 6eb3d45a186c1c7fd37bc29e582e3981d6843667 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Thu, 7 Mar 2024 14:00:32 +0100 Subject: [PATCH 1/8] uncover bug with minitest + shoulda-context + shoulda-matchers --- Appraisals | 24 ++- Rakefile | 4 + ...oulda_context_2_shoulda_matchers_6.gemfile | 33 ++++ ..._context_2_shoulda_matchers_6.gemfile.lock | 163 +++++++++++++++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 34 ++++ ..._context_2_shoulda_matchers_6.gemfile.lock | 162 +++++++++++++++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 34 ++++ ..._context_2_shoulda_matchers_6.gemfile.lock | 162 +++++++++++++++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 34 ++++ ..._context_2_shoulda_matchers_6.gemfile.lock | 166 ++++++++++++++++++ .../minitest_shoulda_context/fake_test.rb | 50 ++++++ .../instrumentation_spec.rb | 46 +++++ 12 files changed, 908 insertions(+), 4 deletions(-) create mode 100644 gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile create mode 100644 gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock create mode 100644 gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile create mode 100644 gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock create mode 100644 gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile create mode 100644 gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock create mode 100644 gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile create mode 100644 gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock create mode 100644 spec/datadog/ci/contrib/minitest_shoulda_context/fake_test.rb create mode 100644 spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb diff --git a/Appraisals b/Appraisals index d463ab3b..86865d7e 100644 --- a/Appraisals +++ b/Appraisals @@ -94,15 +94,31 @@ def self.with_ci_queue_rspec_gem(rspec_versions: 3, ci_queue_versions: 0) end end +def self.with_minitest_shoulda_context_gem(minitest_versions: 5, shoulda_context_versions: 2, shoulda_matchers_versions: 6) + Array(minitest_versions).each do |minitest_v| + Array(shoulda_context_versions).each do |shoulda_context_v| + Array(shoulda_matchers_versions).each do |shoulda_matchers_v| + appraise "minitest-#{minitest_v}-shoulda-context-#{shoulda_context_v}-shoulda-matchers-#{shoulda_matchers_v}" do + gem "minitest", "~> #{minitest_v}" + gem "shoulda-context", "~> #{shoulda_context_v}" + gem "shoulda-matchers", "~> #{shoulda_matchers_v}" + end + end + end + end +end + +ruby_version = Gem::Version.new(RUBY_ENGINE_VERSION) +major, minor, = ruby_version.segments + +ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" + with_minitest_gem with_rspec_gem with_cucumber_gem(versions: 3..9) with_ci_queue_minitest_gem with_ci_queue_rspec_gem - -major, minor, = Gem::Version.new(RUBY_ENGINE_VERSION).segments - -ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" +with_minitest_shoulda_context_gem if ruby_version >= Gem::Version.new("3.1") appraisals.each do |appraisal| appraisal.name.prepend("#{ruby_runtime}-") diff --git a/Rakefile b/Rakefile index 2e9733b0..31eef568 100644 --- a/Rakefile +++ b/Rakefile @@ -45,6 +45,9 @@ TEST_METADATA = { }, "ci_queue_rspec" => { "ci-queue-0-rspec-3" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" + }, + "minitest_shoulda_context" => { + "minitest-5-shoulda-context-2-shoulda-matchers-6" => "❌ 2.7 / ❌ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" } } @@ -108,6 +111,7 @@ namespace :spec do :cucumber, :rspec, :minitest, + :minitest_shoulda_context, :ci_queue_minitest, :ci_queue_rspec ].each do |contrib| diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile new file mode 100644 index 00000000..1e411861 --- /dev/null +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -0,0 +1,33 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "minitest", "~> 5" +gem "shoulda-context", "~> 2" +gem "shoulda-matchers", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock new file mode 100644 index 00000000..b21380ba --- /dev/null +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -0,0 +1,163 @@ +PATH + remote: .. + specs: + datadog-ci (0.7.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6-java) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3-java) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1-java) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2-java) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2-java) + coderay (~> 1.1) + method_source (~> 1.0) + spoon (~> 0.0) + racc (1.7.3-java) + rainbow (3.1.1) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.1) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + shoulda-context (2.0.0) + shoulda-matchers (6.1.0) + activesupport (>= 5.2.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spoon (0.0.6) + ffi + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + ddtrace + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rspec + rspec-collection_matchers + rspec_junit_formatter + shoulda-context (~> 2) + shoulda-matchers (~> 6) + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile new file mode 100644 index 00000000..c9ee7fa3 --- /dev/null +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -0,0 +1,34 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "minitest", "~> 5" +gem "shoulda-context", "~> 2" +gem "shoulda-matchers", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock new file mode 100644 index 00000000..389237b4 --- /dev/null +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -0,0 +1,162 @@ +PATH + remote: .. + specs: + datadog-ci (0.7.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.1) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + shoulda-context (2.0.0) + shoulda-matchers (6.1.0) + activesupport (>= 5.2.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + ddtrace + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + shoulda-context (~> 2) + shoulda-matchers (~> 6) + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile new file mode 100644 index 00000000..c9ee7fa3 --- /dev/null +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -0,0 +1,34 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "minitest", "~> 5" +gem "shoulda-context", "~> 2" +gem "shoulda-matchers", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock new file mode 100644 index 00000000..389237b4 --- /dev/null +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -0,0 +1,162 @@ +PATH + remote: .. + specs: + datadog-ci (0.7.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.1) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + shoulda-context (2.0.0) + shoulda-matchers (6.1.0) + activesupport (>= 5.2.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + ddtrace + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + shoulda-context (~> 2) + shoulda-matchers (~> 6) + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile new file mode 100644 index 00000000..c9ee7fa3 --- /dev/null +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -0,0 +1,34 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "minitest", "~> 5" +gem "shoulda-context", "~> 2" +gem "shoulda-matchers", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock new file mode 100644 index 00000000..683f2a0e --- /dev/null +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -0,0 +1,166 @@ +PATH + remote: .. + specs: + datadog-ci (0.7.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + libddwaf (1.14.0.0.0-arm64-darwin) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.1) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + shoulda-context (2.0.0) + shoulda-matchers (6.1.0) + activesupport (>= 5.2.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + arm64-darwin-23 + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + ddtrace + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + shoulda-context (~> 2) + shoulda-matchers (~> 6) + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.4.19 diff --git a/spec/datadog/ci/contrib/minitest_shoulda_context/fake_test.rb b/spec/datadog/ci/contrib/minitest_shoulda_context/fake_test.rb new file mode 100644 index 00000000..e9e0292a --- /dev/null +++ b/spec/datadog/ci/contrib/minitest_shoulda_context/fake_test.rb @@ -0,0 +1,50 @@ +require "shoulda-context" +require "shoulda-matchers" + +Shoulda::Matchers.configure do |config| + config.integrate do |with| + with.test_framework :minitest + end +end + +class Substractor + def substract + 10 - 5 + end +end + +class Calculator + attr_reader :substractor + + def initialize + @substractor = Substractor.new + end + + def sum(a, b) + a + b + end + + def product(a, b) + a * b + end + + delegate :substract, to: :substractor +end + +class CalculatorTest < Minitest::Test + context "a calculator" do + setup do + @calculator = Calculator.new + end + + should "add two numbers for the sum" do + assert_equal 4, @calculator.sum(2, 2) + end + + should "multiply two numbers for the product" do + assert_equal 10, @calculator.product(2, 5) + end + + should delegate_method(:substract).to(:substractor) + end +end diff --git a/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb b/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb new file mode 100644 index 00000000..f0204223 --- /dev/null +++ b/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb @@ -0,0 +1,46 @@ +require "minitest" + +RSpec.describe "Minitest instrumentation with thoughbot's shoulda-context gem for shared contexts" do + include_context "CI mode activated" do + let(:integration_name) { :minitest } + let(:integration_options) { {service_name: "ltest"} } + end + + before do + Minitest::Runnable.reset + + require_relative "fake_test" + + Minitest.run([]) + end + + it "instruments this minitest session" do + # test session and module traced + expect(test_session_span).not_to be_nil + expect(test_module_span).not_to be_nil + + # test session and module are failed + expect([test_session_span, test_module_span]).to all have_pass_status + + # test suite spans are created for each test as for parallel execution + expect(test_suite_spans).to have(1).item + expect(test_suite_spans).to have_tag_values_no_order(:status, ["pass"]) + + expect(test_suite_spans).to have_tag_values_no_order( + :suite, + [ + "CalculatorTest at spec/datadog/ci/contrib/minitest_shoulda_context/fake_test.rb" + ] + ) + + # there is test span for every test case + expect(test_spans).to have(3).items + + expect(test_spans).to all have_test_tag(:test_suite_id) + expect(test_spans).to have_unique_tag_values_count(:test_suite_id, 1) + + # every test span is connected to test module and test session + expect(test_spans).to all have_test_tag(:test_module_id) + expect(test_spans).to all have_test_tag(:test_session_id) + end +end From 96ce50284a77e3869c546bacadf2f44d58d3d51c Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Thu, 7 Mar 2024 14:59:11 +0100 Subject: [PATCH 2/8] confirm that issue is fixed in the latest commit of shoulda-context --- Appraisals | 2 +- ...test_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...5_shoulda_context_2_shoulda_matchers_6.gemfile.lock | 10 ++++++++-- ...test_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...5_shoulda_context_2_shoulda_matchers_6.gemfile.lock | 10 ++++++++-- ...test_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...5_shoulda_context_2_shoulda_matchers_6.gemfile.lock | 10 ++++++++-- ...test_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...5_shoulda_context_2_shoulda_matchers_6.gemfile.lock | 10 ++++++++-- 9 files changed, 37 insertions(+), 13 deletions(-) diff --git a/Appraisals b/Appraisals index 86865d7e..ebc226e4 100644 --- a/Appraisals +++ b/Appraisals @@ -100,7 +100,7 @@ def self.with_minitest_shoulda_context_gem(minitest_versions: 5, shoulda_context Array(shoulda_matchers_versions).each do |shoulda_matchers_v| appraise "minitest-#{minitest_v}-shoulda-context-#{shoulda_context_v}-shoulda-matchers-#{shoulda_matchers_v}" do gem "minitest", "~> #{minitest_v}" - gem "shoulda-context", "~> #{shoulda_context_v}" + gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" gem "shoulda-matchers", "~> #{shoulda_matchers_v}" end end diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 1e411861..c63ac7eb 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -19,7 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", "~> 2" +gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index b21380ba..b8d2dd62 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,3 +1,10 @@ +GIT + remote: https://github.com/thoughtbot/shoulda-context.git + revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c + branch: main + specs: + shoulda-context (2.0.0) + PATH remote: .. specs: @@ -100,7 +107,6 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) - shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -150,7 +156,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context (~> 2) + shoulda-context! shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index c9ee7fa3..99e4539d 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", "~> 2" +gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 389237b4..3da4748d 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,3 +1,10 @@ +GIT + remote: https://github.com/thoughtbot/shoulda-context.git + revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c + branch: main + specs: + shoulda-context (2.0.0) + PATH remote: .. specs: @@ -100,7 +107,6 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) - shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -149,7 +155,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context (~> 2) + shoulda-context! shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index c9ee7fa3..99e4539d 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", "~> 2" +gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 389237b4..3da4748d 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,3 +1,10 @@ +GIT + remote: https://github.com/thoughtbot/shoulda-context.git + revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c + branch: main + specs: + shoulda-context (2.0.0) + PATH remote: .. specs: @@ -100,7 +107,6 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) - shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -149,7 +155,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context (~> 2) + shoulda-context! shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index c9ee7fa3..99e4539d 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", "~> 2" +gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 683f2a0e..95bdb4af 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,3 +1,10 @@ +GIT + remote: https://github.com/thoughtbot/shoulda-context.git + revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c + branch: main + specs: + shoulda-context (2.0.0) + PATH remote: .. specs: @@ -103,7 +110,6 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) - shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -153,7 +159,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context (~> 2) + shoulda-context! shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) From 96244be5da7025cc4f3aae176b33ec61b4bdcfce Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Mon, 11 Mar 2024 14:50:54 +0100 Subject: [PATCH 3/8] minitest instrumentation does not work with mixins at all --- Appraisals | 13 +- Rakefile | 4 + gemfiles/jruby_9.4_activesupport_7.gemfile | 31 ++++ .../jruby_9.4_activesupport_7.gemfile.lock | 158 +++++++++++++++++ gemfiles/ruby_2.7_activesupport_7.gemfile | 32 ++++ .../ruby_2.7_activesupport_7.gemfile.lock | 157 +++++++++++++++++ gemfiles/ruby_3.0_activesupport_7.gemfile | 32 ++++ .../ruby_3.0_activesupport_7.gemfile.lock | 157 +++++++++++++++++ gemfiles/ruby_3.1_activesupport_7.gemfile | 32 ++++ .../ruby_3.1_activesupport_7.gemfile.lock | 157 +++++++++++++++++ gemfiles/ruby_3.2_activesupport_7.gemfile | 32 ++++ .../ruby_3.2_activesupport_7.gemfile.lock | 157 +++++++++++++++++ gemfiles/ruby_3.3_activesupport_7.gemfile | 32 ++++ .../ruby_3.3_activesupport_7.gemfile.lock | 161 ++++++++++++++++++ .../activesupport/instrumentation_spec.rb | 38 +++++ .../contrib/activesupport/test/calculator.rb | 19 +++ .../activesupport/test/divide_helper.rb | 13 ++ .../activesupport/test/test_calculator.rb | 19 +++ 18 files changed, 1242 insertions(+), 2 deletions(-) create mode 100644 gemfiles/jruby_9.4_activesupport_7.gemfile create mode 100644 gemfiles/jruby_9.4_activesupport_7.gemfile.lock create mode 100644 gemfiles/ruby_2.7_activesupport_7.gemfile create mode 100644 gemfiles/ruby_2.7_activesupport_7.gemfile.lock create mode 100644 gemfiles/ruby_3.0_activesupport_7.gemfile create mode 100644 gemfiles/ruby_3.0_activesupport_7.gemfile.lock create mode 100644 gemfiles/ruby_3.1_activesupport_7.gemfile create mode 100644 gemfiles/ruby_3.1_activesupport_7.gemfile.lock create mode 100644 gemfiles/ruby_3.2_activesupport_7.gemfile create mode 100644 gemfiles/ruby_3.2_activesupport_7.gemfile.lock create mode 100644 gemfiles/ruby_3.3_activesupport_7.gemfile create mode 100644 gemfiles/ruby_3.3_activesupport_7.gemfile.lock create mode 100644 spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb create mode 100644 spec/datadog/ci/contrib/activesupport/test/calculator.rb create mode 100644 spec/datadog/ci/contrib/activesupport/test/divide_helper.rb create mode 100644 spec/datadog/ci/contrib/activesupport/test/test_calculator.rb diff --git a/Appraisals b/Appraisals index ebc226e4..2dc8d4da 100644 --- a/Appraisals +++ b/Appraisals @@ -108,17 +108,26 @@ def self.with_minitest_shoulda_context_gem(minitest_versions: 5, shoulda_context end end +def self.with_active_support_gem(versions: 7) + Array(versions).each do |activesupport_v| + appraise "activesupport-#{activesupport_v}" do + gem "activesupport", "~> #{activesupport_v}" + end + end +end + ruby_version = Gem::Version.new(RUBY_ENGINE_VERSION) major, minor, = ruby_version.segments -ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" - with_minitest_gem with_rspec_gem with_cucumber_gem(versions: 3..9) with_ci_queue_minitest_gem with_ci_queue_rspec_gem with_minitest_shoulda_context_gem if ruby_version >= Gem::Version.new("3.1") +with_active_support_gem(versions: 7) + +ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" appraisals.each do |appraisal| appraisal.name.prepend("#{ruby_runtime}-") diff --git a/Rakefile b/Rakefile index 31eef568..94cbcc90 100644 --- a/Rakefile +++ b/Rakefile @@ -40,6 +40,9 @@ TEST_METADATA = { "minitest" => { "minitest-5" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" }, + "activesupport" => { + "activesupport-7" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" + }, "ci_queue_minitest" => { "ci-queue-0-minitest-5" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" }, @@ -112,6 +115,7 @@ namespace :spec do :rspec, :minitest, :minitest_shoulda_context, + :activesupport, :ci_queue_minitest, :ci_queue_rspec ].each do |contrib| diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile b/gemfiles/jruby_9.4_activesupport_7.gemfile new file mode 100644 index 00000000..c6893a10 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile @@ -0,0 +1,31 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock new file mode 100644 index 00000000..941537f9 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock @@ -0,0 +1,158 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6-java) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3-java) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1-java) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2-java) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2-java) + coderay (~> 1.1) + method_source (~> 1.0) + spoon (~> 0.0) + racc (1.7.3-java) + rainbow (3.1.1) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spoon (0.0.6) + ffi + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile b/gemfiles/ruby_2.7_activesupport_7.gemfile new file mode 100644 index 00000000..408bceae --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock new file mode 100644 index 00000000..0c9acb83 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock @@ -0,0 +1,157 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile b/gemfiles/ruby_3.0_activesupport_7.gemfile new file mode 100644 index 00000000..408bceae --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock new file mode 100644 index 00000000..0c9acb83 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock @@ -0,0 +1,157 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile b/gemfiles/ruby_3.1_activesupport_7.gemfile new file mode 100644 index 00000000..408bceae --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock new file mode 100644 index 00000000..0c9acb83 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock @@ -0,0 +1,157 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile b/gemfiles/ruby_3.2_activesupport_7.gemfile new file mode 100644 index 00000000..408bceae --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock new file mode 100644 index 00000000..0c9acb83 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock @@ -0,0 +1,157 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile b/gemfiles/ruby_3.3_activesupport_7.gemfile new file mode 100644 index 00000000..408bceae --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 7" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock new file mode 100644 index 00000000..142537a1 --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock @@ -0,0 +1,161 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + bigdecimal (3.1.6) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + drb (2.2.1) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + libddwaf (1.14.0.0.0-arm64-darwin) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + mutex_m (0.2.0) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.1) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + arm64-darwin-23 + +DEPENDENCIES + activesupport (~> 7) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.4.19 diff --git a/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb new file mode 100644 index 00000000..e2d0aaee --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb @@ -0,0 +1,38 @@ +require "minitest" + +RSpec.describe "ActiveSupport::TestCase instrumentation" do + include_context "CI mode activated" do + let(:integration_name) { :minitest } + let(:integration_options) { {service_name: "ltest"} } + end + + before do + Minitest::Runnable.reset + require_relative "test/test_calculator" + Minitest.run([]) + end + + it "instruments this minitest session" do + # test session and module traced + expect(test_session_span).not_to be_nil + expect(test_module_span).not_to be_nil + + expect([test_session_span, test_module_span]).to all have_pass_status + + expect(test_suite_spans).to have(1).items + expect(test_suite_spans).to have_tag_values_no_order(:status, ["pass"]) + expect(test_suite_spans).to have_tag_values_no_order( + :suite, + [ + "CalculatorTest at spec/datadog/ci/contrib/activesupport/test/test_calculator.rb" + ] + ) + + # there is test span for every test case + expect(test_spans).to have(3).items + # each test span has test suite, module, and session + expect(test_spans).to all have_test_tag(:test_suite_id) + expect(test_spans).to all have_test_tag(:test_module_id) + expect(test_spans).to all have_test_tag(:test_session_id) + end +end diff --git a/spec/datadog/ci/contrib/activesupport/test/calculator.rb b/spec/datadog/ci/contrib/activesupport/test/calculator.rb new file mode 100644 index 00000000..443b8d65 --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/test/calculator.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +class Calculator + def add(a, b) + a + b + end + + def subtract(a, b) + a - b + end + + def multiply(a, b) + a * b + end + + def divide(a, b) + a / b + end +end diff --git a/spec/datadog/ci/contrib/activesupport/test/divide_helper.rb b/spec/datadog/ci/contrib/activesupport/test/divide_helper.rb new file mode 100644 index 00000000..0a0b1721 --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/test/divide_helper.rb @@ -0,0 +1,13 @@ +module DivideHelper + extend ActiveSupport::Concern + + class_methods do + def should_divide(&block) + test "should divide" do + instance = instance_eval(&block) + + assert instance.divide(4, 2) == 2 + end + end + end +end diff --git a/spec/datadog/ci/contrib/activesupport/test/test_calculator.rb b/spec/datadog/ci/contrib/activesupport/test/test_calculator.rb new file mode 100644 index 00000000..cf6dd054 --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/test/test_calculator.rb @@ -0,0 +1,19 @@ +require "active_support" +require "minitest/spec" + +require_relative "calculator" +require_relative "divide_helper" + +class CalculatorTest < ActiveSupport::TestCase + include DivideHelper + + test "adds two numbers" do + assert Calculator.new.add(1, 2) == 3 + end + + test "subtracts two numbers" do + assert Calculator.new.subtract(2, 1) == 1 + end + + should_divide { Calculator.new } +end From be2c4f8b35bd7bad2200750fcad9c51b3bec18a2 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Mon, 11 Mar 2024 16:42:36 +0100 Subject: [PATCH 4/8] minitest: use class constant location as test suite source location --- lib/datadog/ci/contrib/minitest/helpers.rb | 16 +++++++++++++++- sig/datadog/ci/contrib/minitest/helpers.rbs | 2 ++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/datadog/ci/contrib/minitest/helpers.rb b/lib/datadog/ci/contrib/minitest/helpers.rb index 3204552b..69f5173d 100644 --- a/lib/datadog/ci/contrib/minitest/helpers.rb +++ b/lib/datadog/ci/contrib/minitest/helpers.rb @@ -6,7 +6,12 @@ module Contrib module Minitest module Helpers def self.test_suite_name(klass, method_name) - source_location, = klass.instance_method(method_name).source_location + source_location = extract_source_location_from_class(klass) + # if we are in anonymous class, fallback to the method source location + if source_location.nil? + source_location, = klass.instance_method(method_name).source_location + end + source_file_path = Pathname.new(source_location.to_s).relative_path_from(Pathname.pwd).to_s "#{klass.name} at #{source_file_path}" @@ -16,6 +21,15 @@ def self.parallel?(klass) klass.ancestors.include?(::Minitest::Parallel::Test) || (defined?(::Minitest::Queue) && ::Minitest.singleton_class.ancestors.include?(::Minitest::Queue)) end + + def self.extract_source_location_from_class(klass) + return nil if klass.nil? || klass.name.nil? + + source_location = klass.const_source_location(klass.name) + source_location.first unless source_location.nil? + rescue + nil + end end end end diff --git a/sig/datadog/ci/contrib/minitest/helpers.rbs b/sig/datadog/ci/contrib/minitest/helpers.rbs index 4ceb76c5..768af46e 100644 --- a/sig/datadog/ci/contrib/minitest/helpers.rbs +++ b/sig/datadog/ci/contrib/minitest/helpers.rbs @@ -6,6 +6,8 @@ module Datadog def self.test_suite_name: (untyped klass, String? method_name) -> ::String def self.parallel?: (untyped klass) -> bool + + def self.extract_source_location_from_class: (untyped klass) -> String? end end end From a7dfe52a8e2bc8a828f9edb8b7c05ef315a43f39 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Mon, 11 Mar 2024 16:58:54 +0100 Subject: [PATCH 5/8] add test case where mixin generates several tests dynamically --- .../activesupport/instrumentation_spec.rb | 86 +++++++++++++------ .../activesupport/test/generator_helper.rb | 13 +++ .../test/test_calculator_generated.rb | 15 ++++ 3 files changed, 88 insertions(+), 26 deletions(-) create mode 100644 spec/datadog/ci/contrib/activesupport/test/generator_helper.rb create mode 100644 spec/datadog/ci/contrib/activesupport/test/test_calculator_generated.rb diff --git a/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb index e2d0aaee..8a2dae8e 100644 --- a/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb +++ b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb @@ -6,33 +6,67 @@ let(:integration_options) { {service_name: "ltest"} } end - before do - Minitest::Runnable.reset - require_relative "test/test_calculator" - Minitest.run([]) + context "when mixin used" do + before do + Minitest::Runnable.reset + require_relative "test/test_calculator" + Minitest.run([]) + end + + it "instruments this minitest session" do + # test session and module traced + expect(test_session_span).not_to be_nil + expect(test_module_span).not_to be_nil + + expect([test_session_span, test_module_span]).to all have_pass_status + + expect(test_suite_spans).to have(1).items + expect(test_suite_spans).to have_tag_values_no_order(:status, ["pass"]) + expect(test_suite_spans).to have_tag_values_no_order( + :suite, + [ + "CalculatorTest at spec/datadog/ci/contrib/activesupport/test/test_calculator.rb" + ] + ) + + # there is test span for every test case + expect(test_spans).to have(3).items + # each test span has test suite, module, and session + expect(test_spans).to all have_test_tag(:test_suite_id) + expect(test_spans).to all have_test_tag(:test_module_id) + expect(test_spans).to all have_test_tag(:test_session_id) + end end - it "instruments this minitest session" do - # test session and module traced - expect(test_session_span).not_to be_nil - expect(test_module_span).not_to be_nil - - expect([test_session_span, test_module_span]).to all have_pass_status - - expect(test_suite_spans).to have(1).items - expect(test_suite_spans).to have_tag_values_no_order(:status, ["pass"]) - expect(test_suite_spans).to have_tag_values_no_order( - :suite, - [ - "CalculatorTest at spec/datadog/ci/contrib/activesupport/test/test_calculator.rb" - ] - ) - - # there is test span for every test case - expect(test_spans).to have(3).items - # each test span has test suite, module, and session - expect(test_spans).to all have_test_tag(:test_suite_id) - expect(test_spans).to all have_test_tag(:test_module_id) - expect(test_spans).to all have_test_tag(:test_session_id) + context "when mixin creates methods dynamically" do + before do + Minitest::Runnable.reset + require_relative "test/test_calculator_generated" + Minitest.run([]) + end + + it "instruments this minitest session" do + # test session and module traced + expect(test_session_span).not_to be_nil + expect(test_module_span).not_to be_nil + + expect([test_session_span, test_module_span]).to all have_pass_status + + expect(test_suite_spans).to have(1).items + expect(test_suite_spans).to have_tag_values_no_order(:status, ["pass"]) + expect(test_suite_spans).to have_tag_values_no_order( + :suite, + [ + "CalculatorGeneratedTest at spec/datadog/ci/contrib/activesupport/test/test_calculator_generated.rb" + ] + ) + + # there is test span for every test case + expect(test_spans).to have(5).items + # each test span has test suite, module, and session + expect(test_spans).to all have_test_tag(:test_suite_id) + expect(test_spans).to all have_test_tag(:test_module_id) + expect(test_spans).to all have_test_tag(:test_session_id) + end end end diff --git a/spec/datadog/ci/contrib/activesupport/test/generator_helper.rb b/spec/datadog/ci/contrib/activesupport/test/generator_helper.rb new file mode 100644 index 00000000..d95bd93b --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/test/generator_helper.rb @@ -0,0 +1,13 @@ +module GeneratorHelper + extend ActiveSupport::Concern + + class_methods do + def test_operations(*operations) + operations.each do |operation| + test "performs #{operation}" do + assert Calculator.new.public_send(operation, 1, 2) + end + end + end + end +end diff --git a/spec/datadog/ci/contrib/activesupport/test/test_calculator_generated.rb b/spec/datadog/ci/contrib/activesupport/test/test_calculator_generated.rb new file mode 100644 index 00000000..d29ea5af --- /dev/null +++ b/spec/datadog/ci/contrib/activesupport/test/test_calculator_generated.rb @@ -0,0 +1,15 @@ +require "active_support" +require "minitest/spec" + +require_relative "calculator" +require_relative "generator_helper" + +class CalculatorGeneratedTest < ActiveSupport::TestCase + include GeneratorHelper + + test_operations(:add, :subtract, :multiply, :divide) + + test "adds two numbers" do + assert Calculator.new.add(1, 2) == 3 + end +end From 570e56ce8addddc113c1d0e5015a684a655394dc Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Tue, 12 Mar 2024 09:27:01 +0100 Subject: [PATCH 6/8] confirm that Module.const_source_location works with shoulda-context 2.0 --- Appraisals | 2 +- ...st_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...shoulda_context_2_shoulda_matchers_6.gemfile.lock | 12 +++--------- ...st_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...shoulda_context_2_shoulda_matchers_6.gemfile.lock | 12 +++--------- ...st_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...shoulda_context_2_shoulda_matchers_6.gemfile.lock | 12 +++--------- ...st_5_shoulda_context_2_shoulda_matchers_6.gemfile | 2 +- ...shoulda_context_2_shoulda_matchers_6.gemfile.lock | 12 +++--------- 9 files changed, 17 insertions(+), 41 deletions(-) diff --git a/Appraisals b/Appraisals index 2dc8d4da..45be03e1 100644 --- a/Appraisals +++ b/Appraisals @@ -100,7 +100,7 @@ def self.with_minitest_shoulda_context_gem(minitest_versions: 5, shoulda_context Array(shoulda_matchers_versions).each do |shoulda_matchers_v| appraise "minitest-#{minitest_v}-shoulda-context-#{shoulda_context_v}-shoulda-matchers-#{shoulda_matchers_v}" do gem "minitest", "~> #{minitest_v}" - gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" + gem "shoulda-context", "~> #{shoulda_context_v}" gem "shoulda-matchers", "~> #{shoulda_matchers_v}" end end diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index c63ac7eb..1e411861 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -19,7 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" +gem "shoulda-context", "~> 2" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index b8d2dd62..52481422 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,14 +1,7 @@ -GIT - remote: https://github.com/thoughtbot/shoulda-context.git - revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c - branch: main - specs: - shoulda-context (2.0.0) - PATH remote: .. specs: - datadog-ci (0.7.0) + datadog-ci (0.8.0) msgpack GEM @@ -107,6 +100,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) + shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -156,7 +150,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context! + shoulda-context (~> 2) shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 99e4539d..c9ee7fa3 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" +gem "shoulda-context", "~> 2" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 3da4748d..e9a130dd 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,14 +1,7 @@ -GIT - remote: https://github.com/thoughtbot/shoulda-context.git - revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c - branch: main - specs: - shoulda-context (2.0.0) - PATH remote: .. specs: - datadog-ci (0.7.0) + datadog-ci (0.8.0) msgpack GEM @@ -107,6 +100,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) + shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -155,7 +149,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context! + shoulda-context (~> 2) shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 99e4539d..c9ee7fa3 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" +gem "shoulda-context", "~> 2" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 3da4748d..e9a130dd 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,14 +1,7 @@ -GIT - remote: https://github.com/thoughtbot/shoulda-context.git - revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c - branch: main - specs: - shoulda-context (2.0.0) - PATH remote: .. specs: - datadog-ci (0.7.0) + datadog-ci (0.8.0) msgpack GEM @@ -107,6 +100,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) + shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -155,7 +149,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context! + shoulda-context (~> 2) shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 99e4539d..c9ee7fa3 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -20,7 +20,7 @@ gem "pimpmychangelog", ">= 0.1.2" gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "minitest", "~> 5" -gem "shoulda-context", github: "thoughtbot/shoulda-context", branch: "main" +gem "shoulda-context", "~> 2" gem "shoulda-matchers", "~> 6" group :check do diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 95bdb4af..562c1107 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -1,14 +1,7 @@ -GIT - remote: https://github.com/thoughtbot/shoulda-context.git - revision: 36d5c380ead406d48587bdbfdc9d8b06a4efce9c - branch: main - specs: - shoulda-context (2.0.0) - PATH remote: .. specs: - datadog-ci (0.7.0) + datadog-ci (0.8.0) msgpack GEM @@ -110,6 +103,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (1.13.0) + shoulda-context (2.0.0) shoulda-matchers (6.1.0) activesupport (>= 5.2.0) simplecov (0.22.0) @@ -159,7 +153,7 @@ DEPENDENCIES rspec rspec-collection_matchers rspec_junit_formatter - shoulda-context! + shoulda-context (~> 2) shoulda-matchers (~> 6) simplecov simplecov-cobertura (~> 2.1.0) From 9827cb449cdf3905142ba3b4b79a192035b1fcc6 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Tue, 12 Mar 2024 09:40:42 +0100 Subject: [PATCH 7/8] specs for correct test names in activesupport and shoulda-context tests --- .../activesupport/instrumentation_spec.rb | 20 +++++++++++++++++++ .../instrumentation_spec.rb | 9 +++++++++ 2 files changed, 29 insertions(+) diff --git a/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb index 8a2dae8e..bf26d933 100644 --- a/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb +++ b/spec/datadog/ci/contrib/activesupport/instrumentation_spec.rb @@ -31,6 +31,15 @@ # there is test span for every test case expect(test_spans).to have(3).items + + expect(test_spans).to have_tag_values_no_order( + :name, + [ + "test_adds_two_numbers", + "test_should_divide", + "test_subtracts_two_numbers" + ] + ) # each test span has test suite, module, and session expect(test_spans).to all have_test_tag(:test_suite_id) expect(test_spans).to all have_test_tag(:test_module_id) @@ -63,6 +72,17 @@ # there is test span for every test case expect(test_spans).to have(5).items + expect(test_spans).to have_tag_values_no_order( + :name, + [ + "test_adds_two_numbers", + "test_performs_add", + "test_performs_divide", + "test_performs_multiply", + "test_performs_subtract" + ] + ) + # each test span has test suite, module, and session expect(test_spans).to all have_test_tag(:test_suite_id) expect(test_spans).to all have_test_tag(:test_module_id) diff --git a/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb b/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb index f0204223..92403e65 100644 --- a/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb +++ b/spec/datadog/ci/contrib/minitest_shoulda_context/instrumentation_spec.rb @@ -39,6 +39,15 @@ expect(test_spans).to all have_test_tag(:test_suite_id) expect(test_spans).to have_unique_tag_values_count(:test_suite_id, 1) + expect(test_spans).to have_tag_values_no_order( + :name, + [ + "test_: a calculator should add two numbers for the sum. ", + "test_: a calculator should multiply two numbers for the product. ", + "test_: a calculator should delegate #substract to the #substractor object. " + ] + ) + # every test span is connected to test module and test session expect(test_spans).to all have_test_tag(:test_module_id) expect(test_spans).to all have_test_tag(:test_session_id) From 3fafbbeff33d6d7492893cc301e2ccf883d8c096 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Tue, 12 Mar 2024 09:53:40 +0100 Subject: [PATCH 8/8] expand activesupport versions testing to 4..7 --- Appraisals | 2 +- Rakefile | 3 + gemfiles/jruby_9.4_activesupport_4.gemfile | 31 ++++ .../jruby_9.4_activesupport_4.gemfile.lock | 149 +++++++++++++++++ gemfiles/jruby_9.4_activesupport_5.gemfile | 31 ++++ .../jruby_9.4_activesupport_5.gemfile.lock | 149 +++++++++++++++++ gemfiles/jruby_9.4_activesupport_6.gemfile | 31 ++++ .../jruby_9.4_activesupport_6.gemfile.lock | 150 +++++++++++++++++ gemfiles/ruby_2.7_activesupport_4.gemfile | 32 ++++ .../ruby_2.7_activesupport_4.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_2.7_activesupport_5.gemfile | 32 ++++ .../ruby_2.7_activesupport_5.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_2.7_activesupport_6.gemfile | 32 ++++ .../ruby_2.7_activesupport_6.gemfile.lock | 149 +++++++++++++++++ gemfiles/ruby_3.0_activesupport_4.gemfile | 32 ++++ .../ruby_3.0_activesupport_4.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.0_activesupport_5.gemfile | 32 ++++ .../ruby_3.0_activesupport_5.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.0_activesupport_6.gemfile | 32 ++++ .../ruby_3.0_activesupport_6.gemfile.lock | 149 +++++++++++++++++ gemfiles/ruby_3.1_activesupport_4.gemfile | 32 ++++ .../ruby_3.1_activesupport_4.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.1_activesupport_5.gemfile | 32 ++++ .../ruby_3.1_activesupport_5.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.1_activesupport_6.gemfile | 32 ++++ .../ruby_3.1_activesupport_6.gemfile.lock | 149 +++++++++++++++++ gemfiles/ruby_3.2_activesupport_4.gemfile | 32 ++++ .../ruby_3.2_activesupport_4.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.2_activesupport_5.gemfile | 32 ++++ .../ruby_3.2_activesupport_5.gemfile.lock | 148 +++++++++++++++++ gemfiles/ruby_3.2_activesupport_6.gemfile | 32 ++++ .../ruby_3.2_activesupport_6.gemfile.lock | 149 +++++++++++++++++ gemfiles/ruby_3.3_activesupport_4.gemfile | 32 ++++ .../ruby_3.3_activesupport_4.gemfile.lock | 152 +++++++++++++++++ gemfiles/ruby_3.3_activesupport_5.gemfile | 32 ++++ .../ruby_3.3_activesupport_5.gemfile.lock | 152 +++++++++++++++++ gemfiles/ruby_3.3_activesupport_6.gemfile | 32 ++++ .../ruby_3.3_activesupport_6.gemfile.lock | 153 ++++++++++++++++++ 38 files changed, 3262 insertions(+), 1 deletion(-) create mode 100644 gemfiles/jruby_9.4_activesupport_4.gemfile create mode 100644 gemfiles/jruby_9.4_activesupport_4.gemfile.lock create mode 100644 gemfiles/jruby_9.4_activesupport_5.gemfile create mode 100644 gemfiles/jruby_9.4_activesupport_5.gemfile.lock create mode 100644 gemfiles/jruby_9.4_activesupport_6.gemfile create mode 100644 gemfiles/jruby_9.4_activesupport_6.gemfile.lock create mode 100644 gemfiles/ruby_2.7_activesupport_4.gemfile create mode 100644 gemfiles/ruby_2.7_activesupport_4.gemfile.lock create mode 100644 gemfiles/ruby_2.7_activesupport_5.gemfile create mode 100644 gemfiles/ruby_2.7_activesupport_5.gemfile.lock create mode 100644 gemfiles/ruby_2.7_activesupport_6.gemfile create mode 100644 gemfiles/ruby_2.7_activesupport_6.gemfile.lock create mode 100644 gemfiles/ruby_3.0_activesupport_4.gemfile create mode 100644 gemfiles/ruby_3.0_activesupport_4.gemfile.lock create mode 100644 gemfiles/ruby_3.0_activesupport_5.gemfile create mode 100644 gemfiles/ruby_3.0_activesupport_5.gemfile.lock create mode 100644 gemfiles/ruby_3.0_activesupport_6.gemfile create mode 100644 gemfiles/ruby_3.0_activesupport_6.gemfile.lock create mode 100644 gemfiles/ruby_3.1_activesupport_4.gemfile create mode 100644 gemfiles/ruby_3.1_activesupport_4.gemfile.lock create mode 100644 gemfiles/ruby_3.1_activesupport_5.gemfile create mode 100644 gemfiles/ruby_3.1_activesupport_5.gemfile.lock create mode 100644 gemfiles/ruby_3.1_activesupport_6.gemfile create mode 100644 gemfiles/ruby_3.1_activesupport_6.gemfile.lock create mode 100644 gemfiles/ruby_3.2_activesupport_4.gemfile create mode 100644 gemfiles/ruby_3.2_activesupport_4.gemfile.lock create mode 100644 gemfiles/ruby_3.2_activesupport_5.gemfile create mode 100644 gemfiles/ruby_3.2_activesupport_5.gemfile.lock create mode 100644 gemfiles/ruby_3.2_activesupport_6.gemfile create mode 100644 gemfiles/ruby_3.2_activesupport_6.gemfile.lock create mode 100644 gemfiles/ruby_3.3_activesupport_4.gemfile create mode 100644 gemfiles/ruby_3.3_activesupport_4.gemfile.lock create mode 100644 gemfiles/ruby_3.3_activesupport_5.gemfile create mode 100644 gemfiles/ruby_3.3_activesupport_5.gemfile.lock create mode 100644 gemfiles/ruby_3.3_activesupport_6.gemfile create mode 100644 gemfiles/ruby_3.3_activesupport_6.gemfile.lock diff --git a/Appraisals b/Appraisals index 45be03e1..c2ed249c 100644 --- a/Appraisals +++ b/Appraisals @@ -125,7 +125,7 @@ with_cucumber_gem(versions: 3..9) with_ci_queue_minitest_gem with_ci_queue_rspec_gem with_minitest_shoulda_context_gem if ruby_version >= Gem::Version.new("3.1") -with_active_support_gem(versions: 7) +with_active_support_gem(versions: 4..7) ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" diff --git a/Rakefile b/Rakefile index 94cbcc90..6dd64737 100644 --- a/Rakefile +++ b/Rakefile @@ -41,6 +41,9 @@ TEST_METADATA = { "minitest-5" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" }, "activesupport" => { + "activesupport-4" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby", + "activesupport-5" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby", + "activesupport-6" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby", "activesupport-7" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" }, "ci_queue_minitest" => { diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile b/gemfiles/jruby_9.4_activesupport_4.gemfile new file mode 100644 index 00000000..04adf446 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile @@ -0,0 +1,31 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock new file mode 100644 index 00000000..7d97caaa --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3-java) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1-java) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2-java) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2-java) + coderay (~> 1.1) + method_source (~> 1.0) + spoon (~> 0.0) + racc (1.7.3-java) + rainbow (3.1.1) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spoon (0.0.6) + ffi + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6-java) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile b/gemfiles/jruby_9.4_activesupport_5.gemfile new file mode 100644 index 00000000..e2a82443 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile @@ -0,0 +1,31 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock new file mode 100644 index 00000000..19e6984a --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3-java) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1-java) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2-java) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2-java) + coderay (~> 1.1) + method_source (~> 1.0) + spoon (~> 0.0) + racc (1.7.3-java) + rainbow (3.1.1) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spoon (0.0.6) + ffi + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6-java) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile b/gemfiles/jruby_9.4_activesupport_6.gemfile new file mode 100644 index 00000000..5b5e6678 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile @@ -0,0 +1,31 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock new file mode 100644 index 00000000..bb4bb3e9 --- /dev/null +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock @@ -0,0 +1,150 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3-java) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1-java) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2-java) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2-java) + coderay (~> 1.1) + method_source (~> 1.0) + spoon (~> 0.0) + racc (1.7.3-java) + rainbow (3.1.1) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spoon (0.0.6) + ffi + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile b/gemfiles/ruby_2.7_activesupport_4.gemfile new file mode 100644 index 00000000..e0942bd4 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock new file mode 100644 index 00000000..17ce7927 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile b/gemfiles/ruby_2.7_activesupport_5.gemfile new file mode 100644 index 00000000..c179d19f --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock new file mode 100644 index 00000000..6760bc08 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile b/gemfiles/ruby_2.7_activesupport_6.gemfile new file mode 100644 index 00000000..b4b3dd02 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock new file mode 100644 index 00000000..b1398647 --- /dev/null +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile b/gemfiles/ruby_3.0_activesupport_4.gemfile new file mode 100644 index 00000000..e0942bd4 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock new file mode 100644 index 00000000..17ce7927 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile b/gemfiles/ruby_3.0_activesupport_5.gemfile new file mode 100644 index 00000000..c179d19f --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock new file mode 100644 index 00000000..6760bc08 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile b/gemfiles/ruby_3.0_activesupport_6.gemfile new file mode 100644 index 00000000..b4b3dd02 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock new file mode 100644 index 00000000..b1398647 --- /dev/null +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile b/gemfiles/ruby_3.1_activesupport_4.gemfile new file mode 100644 index 00000000..e0942bd4 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock new file mode 100644 index 00000000..17ce7927 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile b/gemfiles/ruby_3.1_activesupport_5.gemfile new file mode 100644 index 00000000..c179d19f --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock new file mode 100644 index 00000000..6760bc08 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile b/gemfiles/ruby_3.1_activesupport_6.gemfile new file mode 100644 index 00000000..b4b3dd02 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock new file mode 100644 index 00000000..b1398647 --- /dev/null +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile b/gemfiles/ruby_3.2_activesupport_4.gemfile new file mode 100644 index 00000000..e0942bd4 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock new file mode 100644 index 00000000..17ce7927 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile b/gemfiles/ruby_3.2_activesupport_5.gemfile new file mode 100644 index 00000000..c179d19f --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock new file mode 100644 index 00000000..6760bc08 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock @@ -0,0 +1,148 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile b/gemfiles/ruby_3.2_activesupport_6.gemfile new file mode 100644 index 00000000..b4b3dd02 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock new file mode 100644 index 00000000..b1398647 --- /dev/null +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock @@ -0,0 +1,149 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.3.26 diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile b/gemfiles/ruby_3.3_activesupport_4.gemfile new file mode 100644 index 00000000..e0942bd4 --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 4" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock new file mode 100644 index 00000000..5396dd1b --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock @@ -0,0 +1,152 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.11.3) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + libddwaf (1.14.0.0.0-arm64-darwin) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + arm64-darwin-23 + +DEPENDENCIES + activesupport (~> 4) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.4.19 diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile b/gemfiles/ruby_3.3_activesupport_5.gemfile new file mode 100644 index 00000000..c179d19f --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock new file mode 100644 index 00000000..46224778 --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock @@ -0,0 +1,152 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + libddwaf (1.14.0.0.0-arm64-darwin) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + thread_safe (0.3.6) + timecop (0.9.8) + tzinfo (1.2.11) + thread_safe (~> 0.1) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + arm64-darwin-23 + +DEPENDENCIES + activesupport (~> 5) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.4.19 diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile b/gemfiles/ruby_3.3_activesupport_6.gemfile new file mode 100644 index 00000000..b4b3dd02 --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "ddtrace" +gem "pry" +gem "rake" +gem "os" +gem "climate_control" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "appraisal" +gem "timecop" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "activesupport", "~> 6" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock new file mode 100644 index 00000000..5191c1bc --- /dev/null +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock @@ -0,0 +1,153 @@ +PATH + remote: .. + specs: + datadog-ci (0.8.0) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.1.7.7) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + concurrent-ruby (1.2.3) + ddtrace (1.20.0) + datadog-ci (~> 0.7.0) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 5.0.0.1.0) + libddwaf (~> 1.14.0.0.0) + msgpack + debase-ruby_core_source (3.3.1) + diff-lcs (1.5.1) + docile (1.4.0) + ffi (1.16.3) + i18n (1.14.4) + concurrent-ruby (~> 1.0) + json (2.7.1) + language_server-protocol (3.17.0.3) + libdatadog (5.0.0.1.0) + libdatadog (5.0.0.1.0-aarch64-linux) + libddwaf (1.14.0.0.0-aarch64-linux) + ffi (~> 1.0) + libddwaf (1.14.0.0.0-arm64-darwin) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.0.0) + minitest (5.22.2) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.7.3) + rainbow (3.1.1) + rake (13.1.0) + redcarpet (3.6.0) + regexp_parser (2.9.0) + rexml (3.2.6) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) + rspec-expectations (>= 2.99.0.beta1) + rspec-core (3.13.0) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rspec_junit_formatter (0.6.0) + rspec-core (>= 2, < 4, != 2.12.0) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (1.13.0) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-cobertura (2.1.0) + rexml + simplecov (~> 0.19) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + standard (1.34.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.60) + standard-custom (~> 1.0.0) + standard-performance (~> 1.3) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.3.1) + lint_roller (~> 1.1) + rubocop-performance (~> 1.20.2) + thor (1.3.1) + timecop (0.9.8) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + zeitwerk (2.6.13) + +PLATFORMS + aarch64-linux + arm64-darwin-23 + +DEPENDENCIES + activesupport (~> 6) + appraisal + climate_control + datadog-ci! + ddtrace + os + pimpmychangelog (>= 0.1.2) + pry + rake + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop + webrick + yard + +BUNDLED WITH + 2.4.19