diff --git a/.standard_todo.yml b/.standard_todo.yml index 2d9ee0b5..2e4a50dd 100644 --- a/.standard_todo.yml +++ b/.standard_todo.yml @@ -10,3 +10,5 @@ ignore: - Style/Alias - spec/datadog/ci/contrib/minitest/instrumentation_spec.rb: - Lint/ConstantDefinitionInBlock + - spec/datadog/ci/contrib/timecop/instrumentation_spec.rb: + - Lint/ConstantDefinitionInBlock diff --git a/Appraisals b/Appraisals index 4e02f6e1..87ae4f44 100644 --- a/Appraisals +++ b/Appraisals @@ -149,6 +149,16 @@ def self.with_selenium_gem(selenium_versions: 4, capybara_versions: 3) end end +def self.with_timecop_gem(timecop_versions: 0) + Array(timecop_versions).each do |timecop_v| + appraise "timecop-#{timecop_v}" do + gem "timecop", "~> #{timecop_v}" + + gem "minitest", "~> 5" + end + end +end + ruby_version = Gem::Version.new(RUBY_ENGINE_VERSION) major, minor, = ruby_version.segments @@ -161,6 +171,7 @@ with_minitest_shoulda_context_gem if ruby_version >= Gem::Version.new("3.1") with_active_support_gem(versions: 4..7) with_knapsack_pro_rspec_gem with_selenium_gem if ruby_version >= Gem::Version.new("3.0") +with_timecop_gem ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}" diff --git a/Gemfile b/Gemfile index 61e871ec..15a92983 100644 --- a/Gemfile +++ b/Gemfile @@ -12,13 +12,11 @@ gem "os" # To compile native extensions gem "rake-compiler" -gem "climate_control" - gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" diff --git a/Rakefile b/Rakefile index 202ebb06..845fd5da 100644 --- a/Rakefile +++ b/Rakefile @@ -67,6 +67,9 @@ TEST_METADATA = { }, "selenium" => { "selenium-4-capybara-3" => "❌ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" + }, + "timecop" => { + "timecop-0" => "✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby" } } @@ -140,7 +143,8 @@ namespace :spec do :ci_queue_rspec, :knapsack_rspec, :knapsack_rspec_go, - :selenium + :selenium, + :timecop ].each do |contrib| desc "" # "Explicitly hiding from `rake -T`" RSpec::Core::RakeTask.new(contrib) do |t, args| diff --git a/Steepfile b/Steepfile index aa7b1c13..6f4fa2ab 100644 --- a/Steepfile +++ b/Steepfile @@ -29,4 +29,5 @@ target :lib do library "bundler" library "selenium-webdriver" library "capybara" + library "timecop" end diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile b/gemfiles/jruby_9.4_activesupport_4.gemfile index 6155d831..4745df16 100644 --- a/gemfiles/jruby_9.4_activesupport_4.gemfile +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock index c0ea8115..7263e6e8 100644 --- a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock @@ -120,7 +120,6 @@ GEM strscan (3.1.0-java) 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) @@ -147,7 +146,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile b/gemfiles/jruby_9.4_activesupport_5.gemfile index 7914fc59..7ce49139 100644 --- a/gemfiles/jruby_9.4_activesupport_5.gemfile +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock index de6a2185..3962ceb4 100644 --- a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock @@ -120,7 +120,6 @@ GEM strscan (3.1.0-java) 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) @@ -147,7 +146,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile b/gemfiles/jruby_9.4_activesupport_6.gemfile index c44c9151..ebea2200 100644 --- a/gemfiles/jruby_9.4_activesupport_6.gemfile +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock index 14e29dd0..3e99ca36 100644 --- a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock @@ -120,7 +120,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -148,7 +147,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile b/gemfiles/jruby_9.4_activesupport_7.gemfile index 5ce34f9f..ea0bf647 100644 --- a/gemfiles/jruby_9.4_activesupport_7.gemfile +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock index fdddd553..9c854144 100644 --- a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock @@ -128,7 +128,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -155,7 +154,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile index 965b3cb3..9029efa0 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock index d4d39481..f7fb6de0 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock @@ -118,7 +118,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile index 4678ec13..dd5bfaa6 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock index d6b91d6a..bb11e816 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock @@ -110,7 +110,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_3.gemfile b/gemfiles/jruby_9.4_cucumber_3.gemfile index a11bbfda..d9744c01 100644 --- a/gemfiles/jruby_9.4_cucumber_3.gemfile +++ b/gemfiles/jruby_9.4_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock index 3c2f9a80..4b6edbb5 100644 --- a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock @@ -130,7 +130,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -154,7 +153,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_4.gemfile b/gemfiles/jruby_9.4_cucumber_4.gemfile index fc2b41cc..ca5c3e0c 100644 --- a/gemfiles/jruby_9.4_cucumber_4.gemfile +++ b/gemfiles/jruby_9.4_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock index a81568e5..06e1d3b1 100644 --- a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock @@ -160,7 +160,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -187,7 +186,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_5.gemfile b/gemfiles/jruby_9.4_cucumber_5.gemfile index a7470c67..644d19db 100644 --- a/gemfiles/jruby_9.4_cucumber_5.gemfile +++ b/gemfiles/jruby_9.4_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock index 59dd4ba5..e2d4572a 100644 --- a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock @@ -160,7 +160,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -187,7 +186,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_6.gemfile b/gemfiles/jruby_9.4_cucumber_6.gemfile index bed45967..b0cbc71f 100644 --- a/gemfiles/jruby_9.4_cucumber_6.gemfile +++ b/gemfiles/jruby_9.4_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock index 22bd4880..5aca5efb 100644 --- a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock @@ -164,7 +164,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -191,7 +190,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_7.gemfile b/gemfiles/jruby_9.4_cucumber_7.gemfile index 797a22d1..0d6510dd 100644 --- a/gemfiles/jruby_9.4_cucumber_7.gemfile +++ b/gemfiles/jruby_9.4_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock index 81707023..e5582a78 100644 --- a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock @@ -146,7 +146,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -170,7 +169,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_8.gemfile b/gemfiles/jruby_9.4_cucumber_8.gemfile index 5a46403d..36462d1f 100644 --- a/gemfiles/jruby_9.4_cucumber_8.gemfile +++ b/gemfiles/jruby_9.4_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock index e6f780cc..a399ddaf 100644 --- a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock @@ -140,7 +140,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -164,7 +163,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_9.gemfile b/gemfiles/jruby_9.4_cucumber_9.gemfile index f42554de..ff0538da 100644 --- a/gemfiles/jruby_9.4_cucumber_9.gemfile +++ b/gemfiles/jruby_9.4_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock index d596df91..0e77b43b 100644 --- a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock @@ -140,7 +140,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -165,7 +164,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile index 079bd0e7..aa42b7ca 100644 --- a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock index c7245e27..c108947a 100644 --- a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock @@ -111,7 +111,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -135,7 +134,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_minitest_5.gemfile b/gemfiles/jruby_9.4_minitest_5.gemfile index 49b16794..a9e07ea2 100644 --- a/gemfiles/jruby_9.4_minitest_5.gemfile +++ b/gemfiles/jruby_9.4_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_minitest_5.gemfile.lock index 76315de5..152d73dd 100644 --- a/gemfiles/jruby_9.4_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5.gemfile.lock @@ -110,7 +110,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard 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 0d12b5bf..f7d05b44 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 @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" 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 6b8f4b61..c466208a 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 @@ -131,7 +131,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -160,7 +159,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_rspec_3.gemfile b/gemfiles/jruby_9.4_rspec_3.gemfile index 5f7adce2..300bb0ef 100644 --- a/gemfiles/jruby_9.4_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_rspec_3.gemfile.lock index 889cd33f..ab292f0e 100644 --- a/gemfiles/jruby_9.4_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rspec_3.gemfile.lock @@ -109,7 +109,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -132,7 +131,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile index 2062ae73..4490a44e 100644 --- a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile +++ b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "webrick" diff --git a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock index 909d0e38..d854fc4c 100644 --- a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock @@ -165,7 +165,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) websocket (1.2.10) @@ -194,7 +193,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/jruby_9.4_timecop_0.gemfile b/gemfiles/jruby_9.4_timecop_0.gemfile new file mode 100644 index 00000000..ac165f7c --- /dev/null +++ b/gemfiles/jruby_9.4_timecop_0.gemfile @@ -0,0 +1,31 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/jruby_9.4_timecop_0.gemfile.lock b/gemfiles/jruby_9.4_timecop_0.gemfile.lock new file mode 100644 index 00000000..bf931139 --- /dev/null +++ b/gemfiles/jruby_9.4_timecop_0.gemfile.lock @@ -0,0 +1,142 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2-java) + language_server-protocol (3.17.0.3) + libdatadog (9.0.0.1.0) + libddwaf (1.14.0.0.0-java) + ffi (~> 1.0) + lint_roller (1.1.0) + method_source (1.1.0) + minitest (5.23.1) + msgpack (1.7.2-java) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + 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.8.0-java) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0-java) + thor (1.3.1) + timecop (0.9.8) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + universal-java-11 + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + 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 index 82e35051..c7b5e6dc 100644 --- a/gemfiles/ruby_2.7_activesupport_4.gemfile +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock index f44b1f78..e41eb5a7 100644 --- a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile b/gemfiles/ruby_2.7_activesupport_5.gemfile index c27b3fd3..a53ae421 100644 --- a/gemfiles/ruby_2.7_activesupport_5.gemfile +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock index bb085446..000ff9b2 100644 --- a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile b/gemfiles/ruby_2.7_activesupport_6.gemfile index f83569de..72c7d929 100644 --- a/gemfiles/ruby_2.7_activesupport_6.gemfile +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock index 1512e1b3..b29961a7 100644 --- a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock @@ -117,7 +117,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -145,7 +144,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile b/gemfiles/ruby_2.7_activesupport_7.gemfile index 357a72c1..f3a9783e 100644 --- a/gemfiles/ruby_2.7_activesupport_7.gemfile +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock index b9c4f7c8..ce941711 100644 --- a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock @@ -126,7 +126,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile index d50f9499..7f71bd67 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock index c2fd5bfb..666d47d4 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock @@ -116,7 +116,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -143,7 +142,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile index 7d35ef19..c38c6a29 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock index 77901ec0..393ea75d 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_3.gemfile b/gemfiles/ruby_2.7_cucumber_3.gemfile index e3fb6988..6837a1c9 100644 --- a/gemfiles/ruby_2.7_cucumber_3.gemfile +++ b/gemfiles/ruby_2.7_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock index a6729cea..87c2ec91 100644 --- a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock @@ -128,7 +128,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_4.gemfile b/gemfiles/ruby_2.7_cucumber_4.gemfile index 5177689d..3bfe42fd 100644 --- a/gemfiles/ruby_2.7_cucumber_4.gemfile +++ b/gemfiles/ruby_2.7_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock index 074fbc26..edba6ed0 100644 --- a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_5.gemfile b/gemfiles/ruby_2.7_cucumber_5.gemfile index 35ab0fca..880cac7a 100644 --- a/gemfiles/ruby_2.7_cucumber_5.gemfile +++ b/gemfiles/ruby_2.7_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock index 11b33509..92f06074 100644 --- a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_6.gemfile b/gemfiles/ruby_2.7_cucumber_6.gemfile index f88a12a6..6ff08208 100644 --- a/gemfiles/ruby_2.7_cucumber_6.gemfile +++ b/gemfiles/ruby_2.7_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock index 558edc1d..94e87013 100644 --- a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock @@ -162,7 +162,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -190,7 +189,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_7.gemfile b/gemfiles/ruby_2.7_cucumber_7.gemfile index 2d3a7768..c0a0a7e1 100644 --- a/gemfiles/ruby_2.7_cucumber_7.gemfile +++ b/gemfiles/ruby_2.7_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock index b87d8fe4..04d699fc 100644 --- a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock @@ -144,7 +144,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -169,7 +168,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_8.gemfile b/gemfiles/ruby_2.7_cucumber_8.gemfile index ba274849..62cfab9c 100644 --- a/gemfiles/ruby_2.7_cucumber_8.gemfile +++ b/gemfiles/ruby_2.7_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock index 54eca2e1..059dae7b 100644 --- a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_9.gemfile b/gemfiles/ruby_2.7_cucumber_9.gemfile index 47c6db1b..89b7b1ed 100644 --- a/gemfiles/ruby_2.7_cucumber_9.gemfile +++ b/gemfiles/ruby_2.7_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock index 6e1b09c5..f996f31e 100644 --- a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile index 5178a60d..c6c71be2 100644 --- a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock index 74162f06..9f6d9492 100644 --- a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock @@ -109,7 +109,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_minitest_5.gemfile b/gemfiles/ruby_2.7_minitest_5.gemfile index 17603638..53336cdd 100644 --- a/gemfiles/ruby_2.7_minitest_5.gemfile +++ b/gemfiles/ruby_2.7_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_minitest_5.gemfile.lock index 5edc9523..e41851bf 100644 --- a/gemfiles/ruby_2.7_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_minitest_5.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_rspec_3.gemfile b/gemfiles/ruby_2.7_rspec_3.gemfile index 8a600225..3c063913 100644 --- a/gemfiles/ruby_2.7_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_2.7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_rspec_3.gemfile.lock index e3a2deed..0958c977 100644 --- a/gemfiles/ruby_2.7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rspec_3.gemfile.lock @@ -107,7 +107,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -131,7 +130,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_2.7_timecop_0.gemfile b/gemfiles/ruby_2.7_timecop_0.gemfile new file mode 100644 index 00000000..edb677de --- /dev/null +++ b/gemfiles/ruby_2.7_timecop_0.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_2.7_timecop_0.gemfile.lock b/gemfiles/ruby_2.7_timecop_0.gemfile.lock new file mode 100644 index 00000000..bca638a8 --- /dev/null +++ b/gemfiles/ruby_2.7_timecop_0.gemfile.lock @@ -0,0 +1,141 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2) + language_server-protocol (3.17.0.3) + libdatadog (9.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.1.0) + minitest (5.23.1) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.8.0) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + redcarpet (3.6.0) + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0) + thor (1.3.1) + timecop (0.9.8) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + 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 index 82e35051..c7b5e6dc 100644 --- a/gemfiles/ruby_3.0_activesupport_4.gemfile +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock index f44b1f78..e41eb5a7 100644 --- a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile b/gemfiles/ruby_3.0_activesupport_5.gemfile index c27b3fd3..a53ae421 100644 --- a/gemfiles/ruby_3.0_activesupport_5.gemfile +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock index bb085446..000ff9b2 100644 --- a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile b/gemfiles/ruby_3.0_activesupport_6.gemfile index f83569de..72c7d929 100644 --- a/gemfiles/ruby_3.0_activesupport_6.gemfile +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock index 1512e1b3..b29961a7 100644 --- a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock @@ -117,7 +117,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -145,7 +144,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile b/gemfiles/ruby_3.0_activesupport_7.gemfile index 357a72c1..f3a9783e 100644 --- a/gemfiles/ruby_3.0_activesupport_7.gemfile +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock index b9c4f7c8..ce941711 100644 --- a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock @@ -126,7 +126,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile index d50f9499..7f71bd67 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock index c2fd5bfb..666d47d4 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock @@ -116,7 +116,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -143,7 +142,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile index 7d35ef19..c38c6a29 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock index 77901ec0..393ea75d 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_3.gemfile b/gemfiles/ruby_3.0_cucumber_3.gemfile index e3fb6988..6837a1c9 100644 --- a/gemfiles/ruby_3.0_cucumber_3.gemfile +++ b/gemfiles/ruby_3.0_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock index a6729cea..87c2ec91 100644 --- a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock @@ -128,7 +128,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_4.gemfile b/gemfiles/ruby_3.0_cucumber_4.gemfile index 5177689d..3bfe42fd 100644 --- a/gemfiles/ruby_3.0_cucumber_4.gemfile +++ b/gemfiles/ruby_3.0_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock index 074fbc26..edba6ed0 100644 --- a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_5.gemfile b/gemfiles/ruby_3.0_cucumber_5.gemfile index 35ab0fca..880cac7a 100644 --- a/gemfiles/ruby_3.0_cucumber_5.gemfile +++ b/gemfiles/ruby_3.0_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock index 11b33509..92f06074 100644 --- a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_6.gemfile b/gemfiles/ruby_3.0_cucumber_6.gemfile index f88a12a6..6ff08208 100644 --- a/gemfiles/ruby_3.0_cucumber_6.gemfile +++ b/gemfiles/ruby_3.0_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock index 558edc1d..94e87013 100644 --- a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock @@ -162,7 +162,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -190,7 +189,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_7.gemfile b/gemfiles/ruby_3.0_cucumber_7.gemfile index 2d3a7768..c0a0a7e1 100644 --- a/gemfiles/ruby_3.0_cucumber_7.gemfile +++ b/gemfiles/ruby_3.0_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock index b87d8fe4..04d699fc 100644 --- a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock @@ -144,7 +144,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -169,7 +168,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_8.gemfile b/gemfiles/ruby_3.0_cucumber_8.gemfile index ba274849..62cfab9c 100644 --- a/gemfiles/ruby_3.0_cucumber_8.gemfile +++ b/gemfiles/ruby_3.0_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock index 54eca2e1..059dae7b 100644 --- a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_9.gemfile b/gemfiles/ruby_3.0_cucumber_9.gemfile index 47c6db1b..89b7b1ed 100644 --- a/gemfiles/ruby_3.0_cucumber_9.gemfile +++ b/gemfiles/ruby_3.0_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock index 6e1b09c5..f996f31e 100644 --- a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile index 5178a60d..c6c71be2 100644 --- a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock index 74162f06..9f6d9492 100644 --- a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock @@ -109,7 +109,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_minitest_5.gemfile b/gemfiles/ruby_3.0_minitest_5.gemfile index 17603638..53336cdd 100644 --- a/gemfiles/ruby_3.0_minitest_5.gemfile +++ b/gemfiles/ruby_3.0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_minitest_5.gemfile.lock index 5edc9523..e41851bf 100644 --- a/gemfiles/ruby_3.0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_minitest_5.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_rspec_3.gemfile b/gemfiles/ruby_3.0_rspec_3.gemfile index 8a600225..3c063913 100644 --- a/gemfiles/ruby_3.0_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_rspec_3.gemfile.lock index e3a2deed..0958c977 100644 --- a/gemfiles/ruby_3.0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rspec_3.gemfile.lock @@ -107,7 +107,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -131,7 +130,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile index 6bcc42c9..6a144f35 100644 --- a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock index abbb88e6..f5c77838 100644 --- a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock @@ -163,7 +163,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) websocket (1.2.10) @@ -193,7 +192,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.0_timecop_0.gemfile b/gemfiles/ruby_3.0_timecop_0.gemfile new file mode 100644 index 00000000..edb677de --- /dev/null +++ b/gemfiles/ruby_3.0_timecop_0.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.0_timecop_0.gemfile.lock b/gemfiles/ruby_3.0_timecop_0.gemfile.lock new file mode 100644 index 00000000..bca638a8 --- /dev/null +++ b/gemfiles/ruby_3.0_timecop_0.gemfile.lock @@ -0,0 +1,141 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2) + language_server-protocol (3.17.0.3) + libdatadog (9.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.1.0) + minitest (5.23.1) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.8.0) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + redcarpet (3.6.0) + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0) + thor (1.3.1) + timecop (0.9.8) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + 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 index 82e35051..c7b5e6dc 100644 --- a/gemfiles/ruby_3.1_activesupport_4.gemfile +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock index f44b1f78..e41eb5a7 100644 --- a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile b/gemfiles/ruby_3.1_activesupport_5.gemfile index c27b3fd3..a53ae421 100644 --- a/gemfiles/ruby_3.1_activesupport_5.gemfile +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock index bb085446..000ff9b2 100644 --- a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile b/gemfiles/ruby_3.1_activesupport_6.gemfile index f83569de..72c7d929 100644 --- a/gemfiles/ruby_3.1_activesupport_6.gemfile +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock index 1512e1b3..b29961a7 100644 --- a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock @@ -117,7 +117,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -145,7 +144,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile b/gemfiles/ruby_3.1_activesupport_7.gemfile index 357a72c1..f3a9783e 100644 --- a/gemfiles/ruby_3.1_activesupport_7.gemfile +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock index b9c4f7c8..ce941711 100644 --- a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock @@ -126,7 +126,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile index d50f9499..7f71bd67 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock index c2fd5bfb..666d47d4 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock @@ -116,7 +116,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -143,7 +142,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile index 7d35ef19..c38c6a29 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock index 77901ec0..393ea75d 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_3.gemfile b/gemfiles/ruby_3.1_cucumber_3.gemfile index e3fb6988..6837a1c9 100644 --- a/gemfiles/ruby_3.1_cucumber_3.gemfile +++ b/gemfiles/ruby_3.1_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock index a6729cea..87c2ec91 100644 --- a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock @@ -128,7 +128,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_4.gemfile b/gemfiles/ruby_3.1_cucumber_4.gemfile index 5177689d..3bfe42fd 100644 --- a/gemfiles/ruby_3.1_cucumber_4.gemfile +++ b/gemfiles/ruby_3.1_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock index 074fbc26..edba6ed0 100644 --- a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_5.gemfile b/gemfiles/ruby_3.1_cucumber_5.gemfile index 35ab0fca..880cac7a 100644 --- a/gemfiles/ruby_3.1_cucumber_5.gemfile +++ b/gemfiles/ruby_3.1_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock index 11b33509..92f06074 100644 --- a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_6.gemfile b/gemfiles/ruby_3.1_cucumber_6.gemfile index f88a12a6..6ff08208 100644 --- a/gemfiles/ruby_3.1_cucumber_6.gemfile +++ b/gemfiles/ruby_3.1_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock index 558edc1d..94e87013 100644 --- a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock @@ -162,7 +162,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -190,7 +189,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_7.gemfile b/gemfiles/ruby_3.1_cucumber_7.gemfile index 2d3a7768..c0a0a7e1 100644 --- a/gemfiles/ruby_3.1_cucumber_7.gemfile +++ b/gemfiles/ruby_3.1_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock index b87d8fe4..04d699fc 100644 --- a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock @@ -144,7 +144,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -169,7 +168,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_8.gemfile b/gemfiles/ruby_3.1_cucumber_8.gemfile index ba274849..62cfab9c 100644 --- a/gemfiles/ruby_3.1_cucumber_8.gemfile +++ b/gemfiles/ruby_3.1_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock index 54eca2e1..059dae7b 100644 --- a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_9.gemfile b/gemfiles/ruby_3.1_cucumber_9.gemfile index 47c6db1b..89b7b1ed 100644 --- a/gemfiles/ruby_3.1_cucumber_9.gemfile +++ b/gemfiles/ruby_3.1_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock index 6e1b09c5..f996f31e 100644 --- a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile index 5178a60d..c6c71be2 100644 --- a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock index 74162f06..9f6d9492 100644 --- a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock @@ -109,7 +109,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_minitest_5.gemfile b/gemfiles/ruby_3.1_minitest_5.gemfile index 17603638..53336cdd 100644 --- a/gemfiles/ruby_3.1_minitest_5.gemfile +++ b/gemfiles/ruby_3.1_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_minitest_5.gemfile.lock index 5edc9523..e41851bf 100644 --- a/gemfiles/ruby_3.1_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard 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 da315644..0c453009 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 @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" 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 d6e9427d..95699a69 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 @@ -129,7 +129,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -158,7 +157,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_rspec_3.gemfile b/gemfiles/ruby_3.1_rspec_3.gemfile index 8a600225..3c063913 100644 --- a/gemfiles/ruby_3.1_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_rspec_3.gemfile.lock index e3a2deed..0958c977 100644 --- a/gemfiles/ruby_3.1_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rspec_3.gemfile.lock @@ -107,7 +107,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -131,7 +130,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile index 6bcc42c9..6a144f35 100644 --- a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock index abbb88e6..f5c77838 100644 --- a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock @@ -163,7 +163,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) websocket (1.2.10) @@ -193,7 +192,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.1_timecop_0.gemfile b/gemfiles/ruby_3.1_timecop_0.gemfile new file mode 100644 index 00000000..edb677de --- /dev/null +++ b/gemfiles/ruby_3.1_timecop_0.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.1_timecop_0.gemfile.lock b/gemfiles/ruby_3.1_timecop_0.gemfile.lock new file mode 100644 index 00000000..bca638a8 --- /dev/null +++ b/gemfiles/ruby_3.1_timecop_0.gemfile.lock @@ -0,0 +1,141 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2) + language_server-protocol (3.17.0.3) + libdatadog (9.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.1.0) + minitest (5.23.1) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.8.0) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + redcarpet (3.6.0) + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0) + thor (1.3.1) + timecop (0.9.8) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + 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 index 82e35051..c7b5e6dc 100644 --- a/gemfiles/ruby_3.2_activesupport_4.gemfile +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock index f44b1f78..e41eb5a7 100644 --- a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile b/gemfiles/ruby_3.2_activesupport_5.gemfile index c27b3fd3..a53ae421 100644 --- a/gemfiles/ruby_3.2_activesupport_5.gemfile +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock index bb085446..000ff9b2 100644 --- a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock @@ -117,7 +117,6 @@ GEM strscan (3.1.0) 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) @@ -144,7 +143,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile b/gemfiles/ruby_3.2_activesupport_6.gemfile index f83569de..72c7d929 100644 --- a/gemfiles/ruby_3.2_activesupport_6.gemfile +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock index 1512e1b3..b29961a7 100644 --- a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock @@ -117,7 +117,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -145,7 +144,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile b/gemfiles/ruby_3.2_activesupport_7.gemfile index 357a72c1..f3a9783e 100644 --- a/gemfiles/ruby_3.2_activesupport_7.gemfile +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock index b9c4f7c8..ce941711 100644 --- a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock @@ -126,7 +126,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile index d50f9499..7f71bd67 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock index c2fd5bfb..666d47d4 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock @@ -116,7 +116,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -143,7 +142,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile index 7d35ef19..c38c6a29 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock index 77901ec0..393ea75d 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_3.gemfile b/gemfiles/ruby_3.2_cucumber_3.gemfile index e3fb6988..6837a1c9 100644 --- a/gemfiles/ruby_3.2_cucumber_3.gemfile +++ b/gemfiles/ruby_3.2_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock index a6729cea..87c2ec91 100644 --- a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock @@ -128,7 +128,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -153,7 +152,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_4.gemfile b/gemfiles/ruby_3.2_cucumber_4.gemfile index 5177689d..3bfe42fd 100644 --- a/gemfiles/ruby_3.2_cucumber_4.gemfile +++ b/gemfiles/ruby_3.2_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock index 074fbc26..edba6ed0 100644 --- a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_5.gemfile b/gemfiles/ruby_3.2_cucumber_5.gemfile index 35ab0fca..880cac7a 100644 --- a/gemfiles/ruby_3.2_cucumber_5.gemfile +++ b/gemfiles/ruby_3.2_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock index 11b33509..92f06074 100644 --- a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock @@ -158,7 +158,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_6.gemfile b/gemfiles/ruby_3.2_cucumber_6.gemfile index f88a12a6..6ff08208 100644 --- a/gemfiles/ruby_3.2_cucumber_6.gemfile +++ b/gemfiles/ruby_3.2_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock index 558edc1d..94e87013 100644 --- a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock @@ -162,7 +162,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -190,7 +189,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_7.gemfile b/gemfiles/ruby_3.2_cucumber_7.gemfile index 2d3a7768..c0a0a7e1 100644 --- a/gemfiles/ruby_3.2_cucumber_7.gemfile +++ b/gemfiles/ruby_3.2_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock index b87d8fe4..04d699fc 100644 --- a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock @@ -144,7 +144,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -169,7 +168,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_8.gemfile b/gemfiles/ruby_3.2_cucumber_8.gemfile index ba274849..62cfab9c 100644 --- a/gemfiles/ruby_3.2_cucumber_8.gemfile +++ b/gemfiles/ruby_3.2_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock index 54eca2e1..059dae7b 100644 --- a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_9.gemfile b/gemfiles/ruby_3.2_cucumber_9.gemfile index 47c6db1b..89b7b1ed 100644 --- a/gemfiles/ruby_3.2_cucumber_9.gemfile +++ b/gemfiles/ruby_3.2_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock index 6e1b09c5..f996f31e 100644 --- a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock @@ -138,7 +138,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -163,7 +162,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile index 5178a60d..c6c71be2 100644 --- a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock index 74162f06..9f6d9492 100644 --- a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock @@ -109,7 +109,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -134,7 +133,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_minitest_5.gemfile b/gemfiles/ruby_3.2_minitest_5.gemfile index 17603638..53336cdd 100644 --- a/gemfiles/ruby_3.2_minitest_5.gemfile +++ b/gemfiles/ruby_3.2_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_minitest_5.gemfile.lock index 5edc9523..e41851bf 100644 --- a/gemfiles/ruby_3.2_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5.gemfile.lock @@ -108,7 +108,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -133,7 +132,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard 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 da315644..0c453009 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 @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" 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 d6e9427d..95699a69 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 @@ -129,7 +129,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -158,7 +157,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_rspec_3.gemfile b/gemfiles/ruby_3.2_rspec_3.gemfile index 8a600225..3c063913 100644 --- a/gemfiles/ruby_3.2_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_rspec_3.gemfile.lock index e3a2deed..0958c977 100644 --- a/gemfiles/ruby_3.2_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rspec_3.gemfile.lock @@ -107,7 +107,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -131,7 +130,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile index 6bcc42c9..6a144f35 100644 --- a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock index abbb88e6..f5c77838 100644 --- a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock @@ -163,7 +163,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) websocket (1.2.10) @@ -193,7 +192,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.2_timecop_0.gemfile b/gemfiles/ruby_3.2_timecop_0.gemfile new file mode 100644 index 00000000..edb677de --- /dev/null +++ b/gemfiles/ruby_3.2_timecop_0.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.2_timecop_0.gemfile.lock b/gemfiles/ruby_3.2_timecop_0.gemfile.lock new file mode 100644 index 00000000..bca638a8 --- /dev/null +++ b/gemfiles/ruby_3.2_timecop_0.gemfile.lock @@ -0,0 +1,141 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2) + language_server-protocol (3.17.0.3) + libdatadog (9.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.1.0) + minitest (5.23.1) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.8.0) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + redcarpet (3.6.0) + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0) + thor (1.3.1) + timecop (0.9.8) + unicode-display_width (2.5.0) + webrick (1.8.1) + yard (0.9.36) + +PLATFORMS + aarch64-linux + +DEPENDENCIES + appraisal + climate_control + datadog-ci! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + 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 index 82e35051..c7b5e6dc 100644 --- a/gemfiles/ruby_3.3_activesupport_4.gemfile +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock index 0d8fcb65..84cd051e 100644 --- a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock @@ -120,7 +120,6 @@ GEM strscan (3.1.0) 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) @@ -148,7 +147,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile b/gemfiles/ruby_3.3_activesupport_5.gemfile index c27b3fd3..a53ae421 100644 --- a/gemfiles/ruby_3.3_activesupport_5.gemfile +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock index e613c245..753f1a50 100644 --- a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock @@ -120,7 +120,6 @@ GEM strscan (3.1.0) 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) @@ -148,7 +147,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile b/gemfiles/ruby_3.3_activesupport_6.gemfile index f83569de..72c7d929 100644 --- a/gemfiles/ruby_3.3_activesupport_6.gemfile +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock index c935ba30..26b9037f 100644 --- a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock @@ -120,7 +120,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -149,7 +148,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile b/gemfiles/ruby_3.3_activesupport_7.gemfile index 357a72c1..f3a9783e 100644 --- a/gemfiles/ruby_3.3_activesupport_7.gemfile +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock index d12cc24b..e7b168d6 100644 --- a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock @@ -129,7 +129,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -157,7 +156,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile index d50f9499..7f71bd67 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock index cae0b297..876b98ee 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock @@ -119,7 +119,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -147,7 +146,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile index 7d35ef19..c38c6a29 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock index 67adccf0..b60d9caa 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock @@ -111,7 +111,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -137,7 +136,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_3.gemfile b/gemfiles/ruby_3.3_cucumber_3.gemfile index e3fb6988..6837a1c9 100644 --- a/gemfiles/ruby_3.3_cucumber_3.gemfile +++ b/gemfiles/ruby_3.3_cucumber_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock index 717051b4..6787542a 100644 --- a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock @@ -131,7 +131,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -157,7 +156,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_4.gemfile b/gemfiles/ruby_3.3_cucumber_4.gemfile index 5177689d..3bfe42fd 100644 --- a/gemfiles/ruby_3.3_cucumber_4.gemfile +++ b/gemfiles/ruby_3.3_cucumber_4.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock index 1b66be42..91817dcd 100644 --- a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock @@ -157,7 +157,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -186,7 +185,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_5.gemfile b/gemfiles/ruby_3.3_cucumber_5.gemfile index 35ab0fca..880cac7a 100644 --- a/gemfiles/ruby_3.3_cucumber_5.gemfile +++ b/gemfiles/ruby_3.3_cucumber_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock index 8170c9d5..f7155788 100644 --- a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock @@ -161,7 +161,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -190,7 +189,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_6.gemfile b/gemfiles/ruby_3.3_cucumber_6.gemfile index f88a12a6..6ff08208 100644 --- a/gemfiles/ruby_3.3_cucumber_6.gemfile +++ b/gemfiles/ruby_3.3_cucumber_6.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock index 427c1a5d..5d60837f 100644 --- a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock @@ -165,7 +165,6 @@ GEM ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -194,7 +193,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_7.gemfile b/gemfiles/ruby_3.3_cucumber_7.gemfile index 2d3a7768..c0a0a7e1 100644 --- a/gemfiles/ruby_3.3_cucumber_7.gemfile +++ b/gemfiles/ruby_3.3_cucumber_7.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock index 4d2b3c77..add64fad 100644 --- a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock @@ -147,7 +147,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -173,7 +172,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_8.gemfile b/gemfiles/ruby_3.3_cucumber_8.gemfile index ba274849..62cfab9c 100644 --- a/gemfiles/ruby_3.3_cucumber_8.gemfile +++ b/gemfiles/ruby_3.3_cucumber_8.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock index 6e63789b..6e78ef32 100644 --- a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock @@ -141,7 +141,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -167,7 +166,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_9.gemfile b/gemfiles/ruby_3.3_cucumber_9.gemfile index 47c6db1b..89b7b1ed 100644 --- a/gemfiles/ruby_3.3_cucumber_9.gemfile +++ b/gemfiles/ruby_3.3_cucumber_9.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock index ef856dbc..1dee204c 100644 --- a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock @@ -141,7 +141,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -167,7 +166,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile index 5178a60d..c6c71be2 100644 --- a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock index fe075925..97ad2a99 100644 --- a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock @@ -112,7 +112,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -138,7 +137,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_minitest_5.gemfile b/gemfiles/ruby_3.3_minitest_5.gemfile index 17603638..53336cdd 100644 --- a/gemfiles/ruby_3.3_minitest_5.gemfile +++ b/gemfiles/ruby_3.3_minitest_5.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_minitest_5.gemfile.lock index 81fbb3a4..5186565a 100644 --- a/gemfiles/ruby_3.3_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5.gemfile.lock @@ -111,7 +111,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -137,7 +136,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard 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 da315644..0c453009 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 @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" 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 cddf001a..7d533a2d 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 @@ -132,7 +132,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) @@ -162,7 +161,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_rspec_3.gemfile b/gemfiles/ruby_3.3_rspec_3.gemfile index 8a600225..3c063913 100644 --- a/gemfiles/ruby_3.3_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_rspec_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_rspec_3.gemfile.lock index b9f766ce..a55afe9d 100644 --- a/gemfiles/ruby_3.3_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rspec_3.gemfile.lock @@ -110,7 +110,6 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) yard (0.9.36) @@ -135,7 +134,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile index 6bcc42c9..6a144f35 100644 --- a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile @@ -6,12 +6,11 @@ gem "pry" gem "rake" gem "os" gem "rake-compiler" -gem "climate_control" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" +gem "climate_control" gem "appraisal" -gem "timecop" gem "standard", "~> 1.31" gem "yard" gem "redcarpet" diff --git a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock index e70256ca..804442bb 100644 --- a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock @@ -168,7 +168,6 @@ GEM sys-uname (1.2.3) ffi (~> 1.1) thor (1.3.1) - timecop (0.9.8) unicode-display_width (2.5.0) webrick (1.8.1) websocket (1.2.10) @@ -199,7 +198,6 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) - timecop webrick yard diff --git a/gemfiles/ruby_3.3_timecop_0.gemfile b/gemfiles/ruby_3.3_timecop_0.gemfile new file mode 100644 index 00000000..edb677de --- /dev/null +++ b/gemfiles/ruby_3.3_timecop_0.gemfile @@ -0,0 +1,32 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "pry" +gem "rake" +gem "os" +gem "rake-compiler" +gem "rspec" +gem "rspec-collection_matchers" +gem "rspec_junit_formatter" +gem "climate_control" +gem "appraisal" +gem "standard", "~> 1.31" +gem "yard" +gem "redcarpet" +gem "webrick" +gem "pimpmychangelog", ">= 0.1.2" +gem "simplecov" +gem "simplecov-cobertura", "~> 2.1.0" +gem "timecop", "~> 0" +gem "minitest", "~> 5" + +group :check do + +end + +group :development do + +end + +gemspec path: "../" diff --git a/gemfiles/ruby_3.3_timecop_0.gemfile.lock b/gemfiles/ruby_3.3_timecop_0.gemfile.lock new file mode 100644 index 00000000..878fde52 --- /dev/null +++ b/gemfiles/ruby_3.3_timecop_0.gemfile.lock @@ -0,0 +1,145 @@ +PATH + remote: .. + specs: + datadog-ci (1.0.0.beta6) + datadog (~> 2.0.0.beta2) + msgpack + +GEM + remote: https://rubygems.org/ + specs: + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + climate_control (1.2.0) + coderay (1.1.3) + datadog (2.0.0.rc1) + debase-ruby_core_source (= 3.3.1) + libdatadog (~> 9.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) + json (2.7.2) + language_server-protocol (3.17.0.3) + libdatadog (9.0.0.1.0) + libdatadog (9.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.1.0) + minitest (5.23.1) + msgpack (1.7.2) + os (1.1.4) + parallel (1.24.0) + parser (3.3.1.0) + ast (~> 2.4.1) + racc + pimpmychangelog (0.1.3) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + racc (1.8.0) + rainbow (3.1.1) + rake (13.2.1) + rake-compiler (1.2.7) + rake + redcarpet (3.6.0) + regexp_parser (2.9.2) + rexml (3.2.8) + strscan (>= 3.0.9) + 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.1) + 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.63.5) + 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.3) + parser (>= 3.3.1.0) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 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.36.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.63.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.4) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.4.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.21.0) + strscan (3.1.0) + thor (1.3.1) + timecop (0.9.8) + 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! + minitest (~> 5) + os + pimpmychangelog (>= 0.1.2) + pry + rake + rake-compiler + redcarpet + rspec + rspec-collection_matchers + rspec_junit_formatter + simplecov + simplecov-cobertura (~> 2.1.0) + standard (~> 1.31) + timecop (~> 0) + webrick + yard + +BUNDLED WITH + 2.4.19 diff --git a/lib/datadog/ci/configuration/components.rb b/lib/datadog/ci/configuration/components.rb index 86aff6f6..a9f97891 100644 --- a/lib/datadog/ci/configuration/components.rb +++ b/lib/datadog/ci/configuration/components.rb @@ -70,6 +70,17 @@ def activate_ci!(settings) # Choose user defined TraceFlush or default to CI TraceFlush settings.tracing.test_mode.trace_flush = settings.ci.trace_flush || CI::TestVisibility::Flush::Partial.new + # When timecop is present, Time.now is mocked and .now_without_mock_time is added on Time to + # get the current time without the mock. + if timecop? + settings.time_now_provider = -> do + Time.now_without_mock_time + rescue NoMethodError + # fallback to normal Time.now if Time.now_without_mock_time is not defined for any reason + Time.now + end + end + # startup logs are useless for CI visibility and create noise settings.diagnostics.startup_logs.enabled = false @@ -191,6 +202,10 @@ def check_dd_site(settings) "Please make sure to set valid site in DD_SITE environment variable" end end + + def timecop? + Gem.loaded_specs.key?("timecop") || defined?(Timecop) + end end end end diff --git a/sig/datadog/ci/configuration/components.rbs b/sig/datadog/ci/configuration/components.rbs index 09f548c3..87fd8b11 100644 --- a/sig/datadog/ci/configuration/components.rbs +++ b/sig/datadog/ci/configuration/components.rbs @@ -17,6 +17,8 @@ module Datadog def serializers_factory: (untyped settings) -> (singleton(Datadog::CI::TestVisibility::Serializers::Factories::TestSuiteLevel) | singleton(Datadog::CI::TestVisibility::Serializers::Factories::TestLevel)) def check_dd_site: (untyped settings) -> void + + def timecop?: () -> bool end end end diff --git a/spec/datadog/ci/contrib/timecop/instrumentation_spec.rb b/spec/datadog/ci/contrib/timecop/instrumentation_spec.rb new file mode 100644 index 00000000..7a525477 --- /dev/null +++ b/spec/datadog/ci/contrib/timecop/instrumentation_spec.rb @@ -0,0 +1,30 @@ +require "minitest" +require "timecop" + +RSpec.describe "Minitest instrumentation" do + include_context "CI mode activated" do + let(:integration_name) { :minitest } + end + let(:time_1990) { Time.utc(1990) } + + before do + # required to call .runnable_methods + Minitest.seed = 1 + Minitest::Runnable.reset + + Timecop.freeze(time_1990) + + class SomeTest < Minitest::Test + def test_pass + assert true + end + end + + Minitest.run([]) + end + + it "does not set frozen time when setting start time for traces" do + expect(first_test_span.start_time).not_to eq(time_1990) + expect(test_session_span.start_time).not_to eq(time_1990) + end +end diff --git a/spec/datadog/ci/test_visibility/serializers/test_v1_spec.rb b/spec/datadog/ci/test_visibility/serializers/test_v1_spec.rb index d3a5fa24..fdb66f10 100644 --- a/spec/datadog/ci/test_visibility/serializers/test_v1_spec.rb +++ b/spec/datadog/ci/test_visibility/serializers/test_v1_spec.rb @@ -58,18 +58,15 @@ end context "with time and duration expectations" do - let(:start_time) { Time.now } - let(:duration_seconds) { 3 } - before do - produce_test_trace(start_time: start_time, duration_seconds: duration_seconds) + produce_test_trace end - it "correctly serializes start and duration in nanoseconds" do - expect(content).to include({ - "start" => start_time.to_i * 1_000_000_000 + start_time.nsec, - "duration" => 3 * 1_000_000_000 - }) + it "serializes start and duration" do + expect(content["start"]).to be_a(Integer) + expect(content["start"]).to be > 0 + expect(content["duration"]).to be_a(Integer) + expect(content["duration"]).to be > 0 end end end diff --git a/spec/datadog/ci/test_visibility/serializers/test_v2_spec.rb b/spec/datadog/ci/test_visibility/serializers/test_v2_spec.rb index 1491a250..e1ea14f8 100644 --- a/spec/datadog/ci/test_visibility/serializers/test_v2_spec.rb +++ b/spec/datadog/ci/test_visibility/serializers/test_v2_spec.rb @@ -97,18 +97,15 @@ end context "with time and duration expectations" do - let(:start_time) { Time.now } - let(:duration_seconds) { 3 } - before do - produce_test_session_trace(start_time: start_time, duration_seconds: duration_seconds) + produce_test_session_trace end it "correctly serializes start and duration in nanoseconds" do - expect(content).to include({ - "start" => start_time.to_i * 1_000_000_000 + start_time.nsec, - "duration" => 3 * 1_000_000_000 - }) + expect(content["start"]).to be_a(Integer) + expect(content["start"]).to be > 0 + expect(content["duration"]).to be_a(Integer) + expect(content["duration"]).to be > 0 end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9b33f3a7..fb652ca0 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -24,7 +24,6 @@ require "rspec/collection_matchers" require "climate_control" -require "timecop" if defined?(Warning.ignore) # Caused by https://github.com/cucumber/cucumber-ruby/blob/47c8e2d7c97beae8541c895a43f9ccb96324f0f1/lib/cucumber/encoding.rb#L5-L6 diff --git a/spec/support/tracer_helpers.rb b/spec/support/tracer_helpers.rb index 3f279ead..73d29348 100644 --- a/spec/support/tracer_helpers.rb +++ b/spec/support/tracer_helpers.rb @@ -9,16 +9,8 @@ def produce_test_trace( framework: "rspec", test_name: "test_add", test_suite: "calculator_tests", service: "rspec-test-suite", result: "PASSED", exception: nil, - skip_reason: nil, start_time: Time.now, duration_seconds: 2, - with_http_span: false + skip_reason: nil, with_http_span: false ) - # each time monotonic clock is called it will return a number that is - # by `duration_seconds` bigger than the previous - allow(Process).to receive(:clock_gettime).and_return( - 0, duration_seconds, 2 * duration_seconds, 3 * duration_seconds - ) - Timecop.freeze(start_time) - Datadog::CI.trace_test( test_name, test_suite, @@ -39,11 +31,7 @@ def produce_test_trace( Datadog::CI.active_test&.set_metric("memory_allocations", 16) set_result(test, result: result, exception: exception, skip_reason: skip_reason) if test - - Timecop.travel(start_time + duration_seconds) end - - Timecop.return end # traces a test session with given parameters and number of tests @@ -51,13 +39,8 @@ def produce_test_session_trace( tests_count: 1, framework: "rspec", test_name: "test_add", test_suite: "calculator_tests", test_module_name: "arithmetic", service: "rspec-test-suite", result: "PASSED", exception: nil, - skip_reason: nil, start_time: Time.now, duration_seconds: 2, - with_http_span: false + skip_reason: nil, with_http_span: false ) - allow(Process).to receive(:clock_gettime).and_return( - 0, duration_seconds, 2 * duration_seconds, 3 * duration_seconds, 4 * duration_seconds, 5 * duration_seconds - ) - test_session = Datadog::CI.start_test_session( service: service, tags: { @@ -77,7 +60,6 @@ def produce_test_session_trace( # service is inherited from test_session service: nil, result: result, exception: exception, skip_reason: skip_reason, - start_time: start_time, duration_seconds: duration_seconds, with_http_span: with_http_span ) end diff --git a/vendor/rbs/timecop/0/timecop.rbs b/vendor/rbs/timecop/0/timecop.rbs new file mode 100644 index 00000000..1b723f19 --- /dev/null +++ b/vendor/rbs/timecop/0/timecop.rbs @@ -0,0 +1,6 @@ +class Time + def self.now_without_mock_time: () -> Time +end + +class Timecop +end