From b5536b5cd1cf95615691d153e646ab9f516b2bab Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 7 Nov 2024 12:48:29 +0000 Subject: [PATCH 1/5] Hide skipped/pending tests from rspec output by default As more and more skipped tests accumulate, this can get very noisy. A bit like listing the full specs vs showing the dots progress, I've tweaked the verbose skipped/pending specs list to only show up selectively, when only a single file is being ran. --- spec/spec_helper.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 33980773165..b0bcb6b3677 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -89,11 +89,17 @@ config.wait_timeout = 5 # default timeout for `wait_for(...)`, in seconds config.wait_delay = 0.01 # default retry delay for `wait_for(...)`, in seconds + # This hides the list of skipped/pending specs by default + config.pending_failure_output = :skip + if config.files_to_run.one? # Use the documentation formatter for detailed output, # unless a formatter has already been configured # (e.g. via a command-line flag). config.default_formatter = 'doc' + + # List skipped/pending specs + config.pending_failure_output = :full end config.before(:example, ractors: true) do @@ -102,6 +108,7 @@ end end + # Check for leaky test resources. # # Execute this after the test has finished From 7674b51990c53140888e8c2ce56de53629b1a928 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 7 Nov 2024 12:58:07 +0000 Subject: [PATCH 2/5] Add missing assertions/stubs to avoid noise in test output --- spec/datadog/profiling/component_spec.rb | 2 ++ spec/datadog/profiling/http_transport_spec.rb | 8 ++++++++ spec/datadog/profiling/stack_recorder_spec.rb | 1 + 3 files changed, 11 insertions(+) diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 8ff82a44e9a..f91d021c865 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -649,6 +649,8 @@ before { skip "Behavior does not apply to current Ruby version" if RUBY_VERSION >= "3.2." } it "does not enable GVL profiling" do + allow(Datadog.logger).to receive(:warn) + expect(Datadog::Profiling::Collectors::CpuAndWallTimeWorker) .to receive(:new).with(hash_including(gvl_profiling_enabled: false)) diff --git a/spec/datadog/profiling/http_transport_spec.rb b/spec/datadog/profiling/http_transport_spec.rb index d6189d58bac..44423984fab 100644 --- a/spec/datadog/profiling/http_transport_spec.rb +++ b/spec/datadog/profiling/http_transport_spec.rb @@ -222,6 +222,7 @@ before do expect(described_class).to receive(:_native_do_export).and_return([:ok, 500]) allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) end it "logs an error message" do @@ -248,6 +249,7 @@ before do expect(described_class).to receive(:_native_do_export).and_return([:error, "Some error message"]) allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) end it "logs an error message" do @@ -440,6 +442,7 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/error trying to connect/) + expect(Datadog::Core::Telemetry::Logger).to receive(:error).with("Failed to report profiling data") http_transport.export(flush) end @@ -451,6 +454,7 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/timed out/) + expect(Datadog::Core::Telemetry::Logger).to receive(:error).with("Failed to report profiling data") http_transport.export(flush) end @@ -461,6 +465,8 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/unexpected HTTP 418/) + expect(Datadog::Core::Telemetry::Logger) + .to receive(:error).with("Failed to report profiling data: unexpected HTTP 418 status code") http_transport.export(flush) end @@ -471,6 +477,8 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/unexpected HTTP 503/) + expect(Datadog::Core::Telemetry::Logger) + .to receive(:error).with("Failed to report profiling data: unexpected HTTP 503 status code") http_transport.export(flush) end diff --git a/spec/datadog/profiling/stack_recorder_spec.rb b/spec/datadog/profiling/stack_recorder_spec.rb index 4ab8891c7ee..9b2c644a192 100644 --- a/spec/datadog/profiling/stack_recorder_spec.rb +++ b/spec/datadog/profiling/stack_recorder_spec.rb @@ -929,6 +929,7 @@ def sample_and_clear context "when there is a failure during serialization" do before do allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) # Real failures in serialization are hard to trigger, so we're using a mock failure instead expect(described_class).to receive(:_native_serialize).and_return([:error, "test error message"]) From 3e85372eaf6fda8bac64085f820a417f99e310df Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 7 Nov 2024 13:01:55 +0000 Subject: [PATCH 3/5] Minor style fix --- spec/spec_helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b0bcb6b3677..81f6e36379c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -108,7 +108,6 @@ end end - # Check for leaky test resources. # # Execute this after the test has finished From db36a4f4f4ac5799f10dadc0fef556bf1eec6446 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 7 Nov 2024 13:42:41 +0000 Subject: [PATCH 4/5] Force rspec >= 3.13 to pick up https://github.com/rspec/rspec-core/pull/2957 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 43473c3b13c..9ffe114961e 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ else end gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions -gem 'rspec', '~> 3.12' +gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' From 179046decfd868b0f4dfecd3f4ac693d46223308 Mon Sep 17 00:00:00 2001 From: ivoanjo Date: Thu, 7 Nov 2024 13:52:49 +0000 Subject: [PATCH 5/5] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20https?= =?UTF-8?q?://github.com/DataDog/dd-trace-rb/actions/runs/11724221529?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_activesupport.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_aws.gemfile | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_contrib.gemfile | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_contrib_old.gemfile | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_core_old.gemfile | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_elasticsearch_7.gemfile | 2 +- .../jruby_9.2_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/jruby_9.2_elasticsearch_8.gemfile | 2 +- .../jruby_9.2_elasticsearch_8.gemfile.lock | 24 +++++----- .../jruby_9.2_elasticsearch_latest.gemfile | 2 +- ...ruby_9.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/jruby_9.2_http.gemfile | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/jruby_9.2_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/jruby_9.2_opensearch_latest.gemfile | 2 +- .../jruby_9.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_1.gemfile | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rack_2.gemfile | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rack_3.gemfile | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rack_latest.gemfile | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rails5_postgres.gemfile | 2 +- .../jruby_9.2_rails5_postgres.gemfile.lock | 26 +++++------ .../jruby_9.2_rails5_postgres_redis.gemfile | 2 +- ...uby_9.2_rails5_postgres_redis.gemfile.lock | 26 +++++------ ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../jruby_9.2_rails5_postgres_sidekiq.gemfile | 2 +- ...y_9.2_rails5_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.2_rails5_semantic_logger.gemfile | 2 +- ...by_9.2_rails5_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rails61_mysql2.gemfile | 2 +- .../jruby_9.2_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rails61_postgres.gemfile | 2 +- .../jruby_9.2_rails61_postgres.gemfile.lock | 26 +++++------ .../jruby_9.2_rails61_postgres_redis.gemfile | 2 +- ...by_9.2_rails61_postgres_redis.gemfile.lock | 26 +++++------ ...jruby_9.2_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.2_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.2_rails61_semantic_logger.gemfile | 2 +- ...y_9.2_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_rails6_postgres.gemfile | 2 +- .../jruby_9.2_rails6_postgres.gemfile.lock | 26 +++++------ .../jruby_9.2_rails6_postgres_redis.gemfile | 2 +- ...uby_9.2_rails6_postgres_redis.gemfile.lock | 26 +++++------ ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../jruby_9.2_rails6_postgres_sidekiq.gemfile | 2 +- ...y_9.2_rails6_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.2_rails6_semantic_logger.gemfile | 2 +- ...by_9.2_rails6_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_redis_3.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_redis_4.gemfile | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_redis_5.gemfile | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_relational_db.gemfile | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_resque2_redis3.gemfile | 2 +- .../jruby_9.2_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_resque2_redis4.gemfile | 2 +- .../jruby_9.2_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.2_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.3_activesupport.gemfile | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_aws.gemfile | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_contrib.gemfile | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_contrib_old.gemfile | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_core_old.gemfile | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_elasticsearch_7.gemfile | 2 +- .../jruby_9.3_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/jruby_9.3_elasticsearch_8.gemfile | 2 +- .../jruby_9.3_elasticsearch_8.gemfile.lock | 24 +++++----- .../jruby_9.3_elasticsearch_latest.gemfile | 2 +- ...ruby_9.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/jruby_9.3_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/jruby_9.3_http.gemfile | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/jruby_9.3_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/jruby_9.3_opensearch_latest.gemfile | 2 +- .../jruby_9.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_1.gemfile | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rack_2.gemfile | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rack_3.gemfile | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rack_latest.gemfile | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rails5_postgres.gemfile | 2 +- .../jruby_9.3_rails5_postgres.gemfile.lock | 26 +++++------ .../jruby_9.3_rails5_postgres_redis.gemfile | 2 +- ...uby_9.3_rails5_postgres_redis.gemfile.lock | 26 +++++------ ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../jruby_9.3_rails5_postgres_sidekiq.gemfile | 2 +- ...y_9.3_rails5_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.3_rails5_semantic_logger.gemfile | 2 +- ...by_9.3_rails5_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rails61_mysql2.gemfile | 2 +- .../jruby_9.3_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rails61_postgres.gemfile | 2 +- .../jruby_9.3_rails61_postgres.gemfile.lock | 26 +++++------ .../jruby_9.3_rails61_postgres_redis.gemfile | 2 +- ...by_9.3_rails61_postgres_redis.gemfile.lock | 26 +++++------ ...jruby_9.3_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.3_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.3_rails61_semantic_logger.gemfile | 2 +- ...y_9.3_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_rails6_postgres.gemfile | 2 +- .../jruby_9.3_rails6_postgres.gemfile.lock | 26 +++++------ .../jruby_9.3_rails6_postgres_redis.gemfile | 2 +- ...uby_9.3_rails6_postgres_redis.gemfile.lock | 26 +++++------ ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../jruby_9.3_rails6_postgres_sidekiq.gemfile | 2 +- ...y_9.3_rails6_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.3_rails6_semantic_logger.gemfile | 2 +- ...by_9.3_rails6_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_redis_3.gemfile | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_redis_4.gemfile | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_redis_5.gemfile | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_relational_db.gemfile | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_resque2_redis3.gemfile | 2 +- .../jruby_9.3_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_resque2_redis4.gemfile | 2 +- .../jruby_9.3_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.3_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.4_activesupport.gemfile | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_aws.gemfile | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_contrib.gemfile | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_contrib_old.gemfile | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_core_old.gemfile | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_elasticsearch_7.gemfile | 2 +- .../jruby_9.4_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_elasticsearch_8.gemfile | 2 +- .../jruby_9.4_elasticsearch_8.gemfile.lock | 24 +++++----- .../jruby_9.4_elasticsearch_latest.gemfile | 2 +- ...ruby_9.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_graphql_2.1.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_graphql_2.2.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_graphql_2.3.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/jruby_9.4_http.gemfile | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/jruby_9.4_opensearch_latest.gemfile | 2 +- .../jruby_9.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_1.gemfile | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_rack_2.gemfile | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_rack_3.gemfile | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_rack_latest.gemfile | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_mysql2.gemfile | 2 +- .../jruby_9.4_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres.gemfile | 2 +- .../jruby_9.4_rails61_postgres.gemfile.lock | 26 +++++------ .../jruby_9.4_rails61_postgres_redis.gemfile | 2 +- ...by_9.4_rails61_postgres_redis.gemfile.lock | 26 +++++------ ...jruby_9.4_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.4_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../jruby_9.4_rails61_semantic_logger.gemfile | 2 +- ...y_9.4_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_redis_3.gemfile | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_redis_4.gemfile | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_redis_5.gemfile | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_relational_db.gemfile | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.4_resque2_redis3.gemfile | 2 +- .../jruby_9.4_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_resque2_redis4.gemfile | 2 +- .../jruby_9.4_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/jruby_9.4_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.5_activesupport.gemfile | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_aws.gemfile | 2 +- gemfiles/ruby_2.5_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_contrib.gemfile | 2 +- gemfiles/ruby_2.5_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_contrib_old.gemfile | 2 +- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_core_old.gemfile | 2 +- gemfiles/ruby_2.5_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_elasticsearch_7.gemfile | 2 +- .../ruby_2.5_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_elasticsearch_8.gemfile | 2 +- .../ruby_2.5_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_2.5_elasticsearch_latest.gemfile | 2 +- ...ruby_2.5_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_hanami_1.gemfile | 2 +- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_http.gemfile | 2 +- gemfiles/ruby_2.5_http.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_opensearch_latest.gemfile | 2 +- .../ruby_2.5_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_1.gemfile | 2 +- gemfiles/ruby_2.5_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rack_2.gemfile | 2 +- gemfiles/ruby_2.5_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rack_3.gemfile | 2 +- gemfiles/ruby_2.5_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rack_latest.gemfile | 2 +- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_rails4_postgres.gemfile | 2 +- .../ruby_2.5_rails4_postgres.gemfile.lock | 24 +++++----- .../ruby_2.5_rails4_postgres_redis.gemfile | 2 +- ...uby_2.5_rails4_postgres_redis.gemfile.lock | 24 +++++----- .../ruby_2.5_rails4_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails4_postgres_sidekiq.gemfile.lock | 24 +++++----- .../ruby_2.5_rails4_semantic_logger.gemfile | 2 +- ...by_2.5_rails4_semantic_logger.gemfile.lock | 24 +++++----- gemfiles/ruby_2.5_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rails5_postgres.gemfile | 2 +- .../ruby_2.5_rails5_postgres.gemfile.lock | 26 +++++------ .../ruby_2.5_rails5_postgres_redis.gemfile | 2 +- ...uby_2.5_rails5_postgres_redis.gemfile.lock | 26 +++++------ ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.5_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails5_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.5_rails5_semantic_logger.gemfile | 2 +- ...by_2.5_rails5_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rails61_postgres.gemfile | 2 +- .../ruby_2.5_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_2.5_rails61_postgres_redis.gemfile | 2 +- ...by_2.5_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_2.5_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.5_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.5_rails61_semantic_logger.gemfile | 2 +- ...y_2.5_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_rails6_postgres.gemfile | 2 +- .../ruby_2.5_rails6_postgres.gemfile.lock | 26 +++++------ .../ruby_2.5_rails6_postgres_redis.gemfile | 2 +- ...uby_2.5_rails6_postgres_redis.gemfile.lock | 26 +++++------ ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.5_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails6_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.5_rails6_semantic_logger.gemfile | 2 +- ...by_2.5_rails6_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_redis_3.gemfile | 2 +- gemfiles/ruby_2.5_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_redis_4.gemfile | 2 +- gemfiles/ruby_2.5_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_redis_5.gemfile | 2 +- gemfiles/ruby_2.5_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_relational_db.gemfile | 2 +- gemfiles/ruby_2.5_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.5_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.6_activesupport.gemfile | 2 +- gemfiles/ruby_2.6_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_aws.gemfile | 2 +- gemfiles/ruby_2.6_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_contrib.gemfile | 2 +- gemfiles/ruby_2.6_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_contrib_old.gemfile | 2 +- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_core_old.gemfile | 2 +- gemfiles/ruby_2.6_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_elasticsearch_7.gemfile | 2 +- .../ruby_2.6_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_2.6_elasticsearch_8.gemfile | 2 +- .../ruby_2.6_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_2.6_elasticsearch_latest.gemfile | 2 +- ...ruby_2.6_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_2.6_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_2.6_hanami_1.gemfile | 2 +- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_http.gemfile | 2 +- gemfiles/ruby_2.6_http.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_2.6_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_2.6_opensearch_latest.gemfile | 2 +- .../ruby_2.6_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 2 +- .../ruby_2.6_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_1.gemfile | 2 +- gemfiles/ruby_2.6_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rack_2.gemfile | 2 +- gemfiles/ruby_2.6_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rack_3.gemfile | 2 +- gemfiles/ruby_2.6_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rack_latest.gemfile | 2 +- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rails5_postgres.gemfile | 2 +- .../ruby_2.6_rails5_postgres.gemfile.lock | 26 +++++------ .../ruby_2.6_rails5_postgres_redis.gemfile | 2 +- ...uby_2.6_rails5_postgres_redis.gemfile.lock | 26 +++++------ ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.6_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.6_rails5_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.6_rails5_semantic_logger.gemfile | 2 +- ...by_2.6_rails5_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rails61_postgres.gemfile | 2 +- .../ruby_2.6_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_2.6_rails61_postgres_redis.gemfile | 2 +- ...by_2.6_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_2.6_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.6_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.6_rails61_semantic_logger.gemfile | 2 +- ...y_2.6_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_rails6_postgres.gemfile | 2 +- .../ruby_2.6_rails6_postgres.gemfile.lock | 26 +++++------ .../ruby_2.6_rails6_postgres_redis.gemfile | 2 +- ...uby_2.6_rails6_postgres_redis.gemfile.lock | 26 +++++------ ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.6_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.6_rails6_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.6_rails6_semantic_logger.gemfile | 2 +- ...by_2.6_rails6_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_redis_3.gemfile | 2 +- gemfiles/ruby_2.6_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_redis_4.gemfile | 2 +- gemfiles/ruby_2.6_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_redis_5.gemfile | 2 +- gemfiles/ruby_2.6_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_relational_db.gemfile | 2 +- gemfiles/ruby_2.6_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.6_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.7_activesupport.gemfile | 2 +- gemfiles/ruby_2.7_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_aws.gemfile | 2 +- gemfiles/ruby_2.7_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_contrib.gemfile | 2 +- gemfiles/ruby_2.7_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_contrib_old.gemfile | 2 +- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_core_old.gemfile | 2 +- gemfiles/ruby_2.7_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_elasticsearch_7.gemfile | 2 +- .../ruby_2.7_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_elasticsearch_8.gemfile | 2 +- .../ruby_2.7_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_2.7_elasticsearch_latest.gemfile | 2 +- ...ruby_2.7_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_graphql_2.1.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_graphql_2.2.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_graphql_2.3.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_http.gemfile | 2 +- gemfiles/ruby_2.7_http.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_2.7_opensearch_latest.gemfile | 2 +- .../ruby_2.7_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 2 +- .../ruby_2.7_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_1.gemfile | 2 +- gemfiles/ruby_2.7_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rack_2.gemfile | 2 +- gemfiles/ruby_2.7_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rack_3.gemfile | 2 +- gemfiles/ruby_2.7_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rack_latest.gemfile | 2 +- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rails5_postgres.gemfile | 2 +- .../ruby_2.7_rails5_postgres.gemfile.lock | 26 +++++------ .../ruby_2.7_rails5_postgres_redis.gemfile | 2 +- ...uby_2.7_rails5_postgres_redis.gemfile.lock | 26 +++++------ ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.7_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.7_rails5_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.7_rails5_semantic_logger.gemfile | 2 +- ...by_2.7_rails5_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rails61_postgres.gemfile | 2 +- .../ruby_2.7_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_2.7_rails61_postgres_redis.gemfile | 2 +- ...by_2.7_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_2.7_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.7_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.7_rails61_semantic_logger.gemfile | 2 +- ...y_2.7_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_rails6_postgres.gemfile | 2 +- .../ruby_2.7_rails6_postgres.gemfile.lock | 26 +++++------ .../ruby_2.7_rails6_postgres_redis.gemfile | 2 +- ...uby_2.7_rails6_postgres_redis.gemfile.lock | 26 +++++------ ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 26 +++++------ .../ruby_2.7_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.7_rails6_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_2.7_rails6_semantic_logger.gemfile | 2 +- ...by_2.7_rails6_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_redis_3.gemfile | 2 +- gemfiles/ruby_2.7_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_redis_4.gemfile | 2 +- gemfiles/ruby_2.7_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_redis_5.gemfile | 2 +- gemfiles/ruby_2.7_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_relational_db.gemfile | 2 +- gemfiles/ruby_2.7_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_2.7_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.0_activesupport.gemfile | 2 +- gemfiles/ruby_3.0_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_aws.gemfile | 2 +- gemfiles/ruby_3.0_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_contrib.gemfile | 2 +- gemfiles/ruby_3.0_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_contrib_old.gemfile | 2 +- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_core_old.gemfile | 2 +- gemfiles/ruby_3.0_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_elasticsearch_7.gemfile | 2 +- .../ruby_3.0_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_elasticsearch_8.gemfile | 2 +- .../ruby_3.0_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_3.0_elasticsearch_latest.gemfile | 2 +- ...ruby_3.0_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.0_http.gemfile | 2 +- gemfiles/ruby_3.0_http.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_opensearch_latest.gemfile | 2 +- .../ruby_3.0_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.0_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_1.gemfile | 2 +- gemfiles/ruby_3.0_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_rack_2.gemfile | 2 +- gemfiles/ruby_3.0_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_rack_3.gemfile | 2 +- gemfiles/ruby_3.0_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_rack_latest.gemfile | 2 +- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_rails61_postgres.gemfile | 2 +- .../ruby_3.0_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_3.0_rails61_postgres_redis.gemfile | 2 +- ...by_3.0_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_3.0_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.0_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_3.0_rails61_semantic_logger.gemfile | 2 +- ...y_3.0_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_rails61_trilogy.gemfile | 2 +- .../ruby_3.0_rails61_trilogy.gemfile.lock | 24 +++++----- gemfiles/ruby_3.0_rails7.gemfile | 2 +- gemfiles/ruby_3.0_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails71.gemfile | 2 +- gemfiles/ruby_3.0_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_3.gemfile | 2 +- gemfiles/ruby_3.0_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_redis_4.gemfile | 2 +- gemfiles/ruby_3.0_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_redis_5.gemfile | 2 +- gemfiles/ruby_3.0_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_relational_db.gemfile | 2 +- gemfiles/ruby_3.0_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.0_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.1_activesupport.gemfile | 2 +- gemfiles/ruby_3.1_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_aws.gemfile | 2 +- gemfiles/ruby_3.1_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_contrib.gemfile | 2 +- gemfiles/ruby_3.1_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_contrib_old.gemfile | 2 +- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_core_old.gemfile | 2 +- gemfiles/ruby_3.1_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_elasticsearch_7.gemfile | 2 +- .../ruby_3.1_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_elasticsearch_8.gemfile | 2 +- .../ruby_3.1_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_3.1_elasticsearch_latest.gemfile | 2 +- ...ruby_3.1_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.1_http.gemfile | 2 +- gemfiles/ruby_3.1_http.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_opensearch_latest.gemfile | 2 +- .../ruby_3.1_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.1_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_1.gemfile | 2 +- gemfiles/ruby_3.1_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_rack_2.gemfile | 2 +- gemfiles/ruby_3.1_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_rack_3.gemfile | 2 +- gemfiles/ruby_3.1_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_rack_latest.gemfile | 2 +- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_rails61_postgres.gemfile | 2 +- .../ruby_3.1_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_3.1_rails61_postgres_redis.gemfile | 2 +- ...by_3.1_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_3.1_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.1_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_3.1_rails61_semantic_logger.gemfile | 2 +- ...y_3.1_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_rails61_trilogy.gemfile | 2 +- .../ruby_3.1_rails61_trilogy.gemfile.lock | 24 +++++----- gemfiles/ruby_3.1_rails7.gemfile | 2 +- gemfiles/ruby_3.1_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails71.gemfile | 2 +- gemfiles/ruby_3.1_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_3.gemfile | 2 +- gemfiles/ruby_3.1_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_redis_4.gemfile | 2 +- gemfiles/ruby_3.1_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_redis_5.gemfile | 2 +- gemfiles/ruby_3.1_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_relational_db.gemfile | 2 +- gemfiles/ruby_3.1_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.1_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.2_activesupport.gemfile | 2 +- gemfiles/ruby_3.2_activesupport.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_aws.gemfile | 2 +- gemfiles/ruby_3.2_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_contrib.gemfile | 2 +- gemfiles/ruby_3.2_contrib.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_contrib_old.gemfile | 2 +- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_core_old.gemfile | 2 +- gemfiles/ruby_3.2_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_elasticsearch_7.gemfile | 2 +- .../ruby_3.2_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_elasticsearch_8.gemfile | 2 +- .../ruby_3.2_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_3.2_elasticsearch_latest.gemfile | 2 +- ...ruby_3.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.2_http.gemfile | 2 +- gemfiles/ruby_3.2_http.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_opensearch_latest.gemfile | 2 +- .../ruby_3.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.2_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_1.gemfile | 2 +- gemfiles/ruby_3.2_rack_1.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_rack_2.gemfile | 2 +- gemfiles/ruby_3.2_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_rack_3.gemfile | 2 +- gemfiles/ruby_3.2_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_rack_latest.gemfile | 2 +- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_rails61_postgres.gemfile | 2 +- .../ruby_3.2_rails61_postgres.gemfile.lock | 26 +++++------ .../ruby_3.2_rails61_postgres_redis.gemfile | 2 +- ...by_3.2_rails61_postgres_redis.gemfile.lock | 26 +++++------ .../ruby_3.2_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.2_rails61_postgres_sidekiq.gemfile.lock | 26 +++++------ .../ruby_3.2_rails61_semantic_logger.gemfile | 2 +- ...y_3.2_rails61_semantic_logger.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_rails61_trilogy.gemfile | 2 +- .../ruby_3.2_rails61_trilogy.gemfile.lock | 24 +++++----- gemfiles/ruby_3.2_rails7.gemfile | 2 +- gemfiles/ruby_3.2_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails71.gemfile | 2 +- gemfiles/ruby_3.2_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_3.gemfile | 2 +- gemfiles/ruby_3.2_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_redis_4.gemfile | 2 +- gemfiles/ruby_3.2_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_redis_5.gemfile | 2 +- gemfiles/ruby_3.2_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_relational_db.gemfile | 2 +- gemfiles/ruby_3.2_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.2_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.3_activesupport.gemfile | 2 +- gemfiles/ruby_3.3_activesupport.gemfile.lock | 41 +++++++++-------- gemfiles/ruby_3.3_aws.gemfile | 2 +- gemfiles/ruby_3.3_aws.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_contrib.gemfile | 2 +- gemfiles/ruby_3.3_contrib.gemfile.lock | 40 ++++++++-------- gemfiles/ruby_3.3_contrib_old.gemfile | 2 +- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_core_old.gemfile | 2 +- gemfiles/ruby_3.3_core_old.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_elasticsearch_7.gemfile | 2 +- .../ruby_3.3_elasticsearch_7.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_elasticsearch_8.gemfile | 2 +- .../ruby_3.3_elasticsearch_8.gemfile.lock | 24 +++++----- .../ruby_3.3_elasticsearch_latest.gemfile | 2 +- ...ruby_3.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.3_http.gemfile | 2 +- gemfiles/ruby_3.3_http.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 24 +++++----- gemfiles/ruby_3.3_opensearch_latest.gemfile | 2 +- .../ruby_3.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.3_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_2.gemfile | 2 +- gemfiles/ruby_3.3_rack_2.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_rack_3.gemfile | 2 +- gemfiles/ruby_3.3_rack_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_rack_latest.gemfile | 2 +- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 46 ++++++++++--------- gemfiles/ruby_3.3_rails61_postgres.gemfile | 2 +- .../ruby_3.3_rails61_postgres.gemfile.lock | 46 ++++++++++--------- .../ruby_3.3_rails61_postgres_redis.gemfile | 2 +- ...by_3.3_rails61_postgres_redis.gemfile.lock | 46 ++++++++++--------- .../ruby_3.3_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.3_rails61_postgres_sidekiq.gemfile.lock | 46 ++++++++++--------- .../ruby_3.3_rails61_semantic_logger.gemfile | 2 +- ...y_3.3_rails61_semantic_logger.gemfile.lock | 46 ++++++++++--------- gemfiles/ruby_3.3_rails61_trilogy.gemfile | 2 +- .../ruby_3.3_rails61_trilogy.gemfile.lock | 32 ++++++------- gemfiles/ruby_3.3_rails7.gemfile | 2 +- gemfiles/ruby_3.3_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails71.gemfile | 2 +- gemfiles/ruby_3.3_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_3.gemfile | 2 +- gemfiles/ruby_3.3_redis_3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_redis_4.gemfile | 2 +- gemfiles/ruby_3.3_redis_4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_redis_5.gemfile | 2 +- gemfiles/ruby_3.3_redis_5.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_relational_db.gemfile | 2 +- gemfiles/ruby_3.3_relational_db.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 26 +++++------ gemfiles/ruby_3.3_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.4_activesupport.gemfile | 2 +- gemfiles/ruby_3.4_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.4_aws.gemfile | 2 +- gemfiles/ruby_3.4_aws.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib.gemfile | 2 +- gemfiles/ruby_3.4_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.4_core_old.gemfile | 2 +- gemfiles/ruby_3.4_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 2 +- .../ruby_3.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_8.gemfile | 2 +- .../ruby_3.4_elasticsearch_8.gemfile.lock | 2 +- .../ruby_3.4_elasticsearch_latest.gemfile | 2 +- ...ruby_3.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.4_http.gemfile | 2 +- gemfiles/ruby_3.4_http.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_latest.gemfile | 2 +- .../ruby_3.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.4_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_2.gemfile | 2 +- gemfiles/ruby_3.4_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_3.gemfile | 2 +- gemfiles/ruby_3.4_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_postgres.gemfile | 2 +- .../ruby_3.4_rails61_postgres.gemfile.lock | 2 +- .../ruby_3.4_rails61_postgres_redis.gemfile | 2 +- ...by_3.4_rails61_postgres_redis.gemfile.lock | 2 +- .../ruby_3.4_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- .../ruby_3.4_rails61_semantic_logger.gemfile | 2 +- ...y_3.4_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_trilogy.gemfile | 2 +- .../ruby_3.4_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails7.gemfile | 2 +- gemfiles/ruby_3.4_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails71.gemfile | 2 +- gemfiles/ruby_3.4_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_3.gemfile | 2 +- gemfiles/ruby_3.4_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_4.gemfile | 2 +- gemfiles/ruby_3.4_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_5.gemfile | 2 +- gemfiles/ruby_3.4_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.4_relational_db.gemfile | 2 +- gemfiles/ruby_3.4_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 2 +- 1094 files changed, 5231 insertions(+), 5216 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile b/gemfiles/jruby_9.2_activesupport.gemfile index 02cd2de6723..b2fec37cec9 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile +++ b/gemfiles/jruby_9.2_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index c2b3cbc6496..b32a83ceecc 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -165,21 +165,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -233,7 +233,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_aws.gemfile b/gemfiles/jruby_9.2_aws.gemfile index 6fbba5ab5f7..758157fa434 100644 --- a/gemfiles/jruby_9.2_aws.gemfile +++ b/gemfiles/jruby_9.2_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index 66681368c17..42eda933fa1 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -1482,21 +1482,21 @@ GEM rake-compiler (1.2.5) rake rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1541,7 +1541,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (= 3.2.6) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_contrib.gemfile b/gemfiles/jruby_9.2_contrib.gemfile index ddab7b0be38..f0ecd1e6a82 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile +++ b/gemfiles/jruby_9.2_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 6b4d910551e..028d2163ec0 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -92,21 +92,21 @@ GEM strscan (>= 3.0.9) roda (3.71.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile b/gemfiles/jruby_9.2_contrib_old.gemfile index 1ed13438eae..6726034a5fe 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile +++ b/gemfiles/jruby_9.2_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index e09878817ee..a7721ccb1fc 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -74,21 +74,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -134,7 +134,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_core_old.gemfile b/gemfiles/jruby_9.2_core_old.gemfile index 7766c6b7872..0e131f9abd8 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile +++ b/gemfiles/jruby_9.2_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index 9b4f64f7389..8e9006be3a9 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -61,21 +61,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -116,7 +116,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile b/gemfiles/jruby_9.2_elasticsearch_7.gemfile index ccf07a34278..684954a43d6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index b816dc5248d..3338d34f99d 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -98,21 +98,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile b/gemfiles/jruby_9.2_elasticsearch_8.gemfile index 527e95bd41d..da379dc8d21 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index fb4cfca9d65..248cb31610b 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -96,21 +96,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile index 872ed2412f2..24712bc4ed5 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index 6b47c889cac..56bd55bb4e6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile b/gemfiles/jruby_9.2_graphql_2.0.gemfile index 6c236dca012..bc8a14f9d2a 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index c8cf679896b..07336f3ce3b 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -271,7 +271,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_http.gemfile b/gemfiles/jruby_9.2_http.gemfile index 33ee0e9a071..05867428a9b 100644 --- a/gemfiles/jruby_9.2_http.gemfile +++ b/gemfiles/jruby_9.2_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index b8ee2e2b4a3..bf3e204b8d8 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -114,21 +114,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -179,7 +179,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile b/gemfiles/jruby_9.2_opensearch_2.gemfile index 0bd917d350d..1c5ee9c7f5a 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index eb2b62c5f8f..f113a11790d 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -96,21 +96,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile b/gemfiles/jruby_9.2_opensearch_3.gemfile index 10dfcfc68ed..1798762add3 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 042a639b8f1..a2a553eaab3 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -91,21 +91,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -148,7 +148,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile b/gemfiles/jruby_9.2_opensearch_latest.gemfile index ce3184fd285..399561895a0 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index bcd47b53a09..e85af9a964f 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -148,7 +148,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile b/gemfiles/jruby_9.2_rack_1.gemfile index d9605009b83..afba1c1cdd7 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile +++ b/gemfiles/jruby_9.2_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 7ffb8200d40..d6b7102c2b7 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile b/gemfiles/jruby_9.2_rack_2.gemfile index ef001452b49..84aa6a0ab97 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile +++ b/gemfiles/jruby_9.2_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index c85ae950acb..cd74873e666 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile b/gemfiles/jruby_9.2_rack_3.gemfile index 8ade6823cc4..4ed3dc1d77c 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile +++ b/gemfiles/jruby_9.2_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 3d4fe31b0d3..da096e985aa 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile b/gemfiles/jruby_9.2_rack_latest.gemfile index d0cab64bd3e..bdd6cc2aa4c 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile +++ b/gemfiles/jruby_9.2_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index 2a0dbe98c4e..abf65a77c6f 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -126,7 +126,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile b/gemfiles/jruby_9.2_rails5_mysql2.gemfile index ffd2770b65b..fb49223776e 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 7c9acfbb1b3..76ae6a769c6 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -162,21 +162,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -235,7 +235,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile b/gemfiles/jruby_9.2_rails5_postgres.gemfile index d1b7cdb544e..32ffb8ccd5c 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 25dedc2a02e..8feb7731f14 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -180,21 +180,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -253,7 +253,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile index 7325a72ea0c..e7f2b49fcdc 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index 8773bfb4eee..c130ff9922d 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -185,21 +185,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile index 90a3b189533..4ac5ac6881f 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index 215251f4414..d3f671e77db 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -197,21 +197,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -273,7 +273,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile index bca17c23019..d1f7a14991e 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index 4cf0bb795bb..749d977cbd1 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -182,21 +182,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -260,7 +260,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile index 474be2259ac..50816fb1b28 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index f7c33c76d91..45a4551ab34 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -177,21 +177,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -252,7 +252,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile b/gemfiles/jruby_9.2_rails61_mysql2.gemfile index a006c7e0e7d..5e7878033eb 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index 3e6977a3698..b18dbc6303f 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -181,21 +181,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -254,7 +254,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile b/gemfiles/jruby_9.2_rails61_postgres.gemfile index 3b165f81b58..d641bebe51d 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index c5af602ddf8..f012f03ce7c 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -199,21 +199,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -272,7 +272,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile index aa31be8c96f..295a1fa78c5 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 0d417aeb286..50739724128 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -204,21 +204,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.2.5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile index 7a453489844..073a164c55a 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index 3be4b099a33..9754e7e9b93 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile index 9abf07e24e9..67066b66ffb 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index e426da3f6e5..2226b59753b 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -196,21 +196,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -271,7 +271,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile b/gemfiles/jruby_9.2_rails6_mysql2.gemfile index a5ca4dcd7a6..23c06266bb6 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index e97246b0737..949c654451f 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -177,21 +177,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -251,7 +251,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile b/gemfiles/jruby_9.2_rails6_postgres.gemfile index 3e48180616c..1fdf89d5444 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 3ddea30ba48..1852f26078f 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -195,21 +195,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile index 8be780365e4..6db40cd893f 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 65f167c0cf9..6274b80c0a3 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -275,7 +275,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile index 91dffc18553..49dcafa829d 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index 571b36063fe..01bca53a141 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile index 068c22923af..aed27de23bf 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index bac2c9e5536..5c435f4ad10 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -197,21 +197,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -276,7 +276,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile index c5e4d01e67f..c789973da77 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index 7b8bd66d9f3..ee84cbf98a8 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -192,21 +192,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -268,7 +268,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile b/gemfiles/jruby_9.2_redis_3.gemfile index 6a2b337498e..6e506fea07b 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile +++ b/gemfiles/jruby_9.2_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index 6b571622503..9ae19b6c4c1 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -62,21 +62,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -118,7 +118,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile b/gemfiles/jruby_9.2_redis_4.gemfile index f23671dc053..5ad738c6c4a 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile +++ b/gemfiles/jruby_9.2_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index f43cc406532..7da3225cc0f 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -62,21 +62,21 @@ GEM redis (4.8.0) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -118,7 +118,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile b/gemfiles/jruby_9.2_redis_5.gemfile index 517dc0678be..ef29f4783b5 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile +++ b/gemfiles/jruby_9.2_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index 35a3dbe9067..4278eb7cac1 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -66,21 +66,21 @@ GEM connection_pool rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -122,7 +122,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile b/gemfiles/jruby_9.2_relational_db.gemfile index 7b2744e18b7..63aa4408542 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile +++ b/gemfiles/jruby_9.2_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index a7b31c4f816..16280899bcc 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -98,21 +98,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile b/gemfiles/jruby_9.2_resque2_redis3.gemfile index e8fb911be02..82de7e40805 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 1ed72481b7c..a2ce2f980e7 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -76,21 +76,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -140,7 +140,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile b/gemfiles/jruby_9.2_resque2_redis4.gemfile index 081f1cb108c..48261278863 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index 3efda1a1187..3221bc7f492 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -80,21 +80,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -144,7 +144,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile b/gemfiles/jruby_9.2_sinatra_2.gemfile index 39a40e52197..44f8019d700 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index 27e0803040b..cdc9b7a30fe 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -138,7 +138,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile b/gemfiles/jruby_9.2_stripe_10.gemfile index 68b95783335..aba64fb9512 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile +++ b/gemfiles/jruby_9.2_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 923ebc07a72..d6fb5f38d37 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile b/gemfiles/jruby_9.2_stripe_11.gemfile index 5a2af5d3873..741ee98c62b 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile +++ b/gemfiles/jruby_9.2_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 781fa0f69dd..903e025ed5d 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile b/gemfiles/jruby_9.2_stripe_12.gemfile index 42bc443555a..d91325e4bf3 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile +++ b/gemfiles/jruby_9.2_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index 38794790b4c..73e0a34d1c2 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile b/gemfiles/jruby_9.2_stripe_7.gemfile index 741f6b8cb2b..2293d4e034c 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile +++ b/gemfiles/jruby_9.2_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 1a89dffcfb9..e8b9dfc5761 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile b/gemfiles/jruby_9.2_stripe_8.gemfile index 609187b12c6..fd406f04bf6 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile +++ b/gemfiles/jruby_9.2_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index c2a40f63a5a..b1d1845510a 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile b/gemfiles/jruby_9.2_stripe_9.gemfile index 39ec604c402..b5c9fe9d3cd 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile +++ b/gemfiles/jruby_9.2_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index c4fb7583b8d..5e62445e3ad 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile b/gemfiles/jruby_9.2_stripe_latest.gemfile index 888ca396ba3..5ac154b5b23 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index e74fdfb908e..427c1b8da2d 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -119,7 +119,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile b/gemfiles/jruby_9.2_stripe_min.gemfile index 35478010b32..e61edf74530 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile +++ b/gemfiles/jruby_9.2_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 20ea2d7e668..1fcf083de38 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -119,7 +119,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index b29e416fc16..4859053a6c6 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 712fa653625..c719e7015d7 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -174,21 +174,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -267,7 +267,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index f39168275e9..e4c68c72251 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index eb9c450440c..22ef3cb18c1 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -1491,21 +1491,21 @@ GEM rake regexp_parser (2.8.1) rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1574,7 +1574,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (= 3.2.6) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index 187eaa010b3..8b4864efefe 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index 79734063953..2811f8594d4 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -99,21 +99,21 @@ GEM strscan (>= 3.0.9) roda (3.72.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index 3413a90bef3..cc1ced79a88 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index e0991e23d4f..571ea1d8800 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index b0300bee079..7a5fefb96a7 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index f691cd1ed44..0bd38aaeeaf 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -70,21 +70,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -149,7 +149,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index 4302ad4b9c5..70b1d7028e8 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 752a804489b..9476c772b01 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 4caf2617b94..6c286a65d5d 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index bf261732622..536c0a650d2 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -87,21 +87,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index daa69f1d467..3b18583b6e3 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 3df2b0844e6..585a07bc0c7 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 36e1e49f53f..259d24ebc6f 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 1db5d4661e9..0234343e243 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index 49aeee30faa..7f1520d6a31 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index a6543c9f796..d02ab5485ee 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index cad2da4867c..bb90a36646a 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 7ac24d9b008..f0ea64fc187 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -103,21 +103,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -192,7 +192,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index a33364cf6b5..583b2978477 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index f2db820557c..1e2e00c319b 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -87,21 +87,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index 22ebf6aa80a..cc7af739f90 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 4e94bebaa2c..8c1ac105ecc 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index c53f37a828e..469d26f91d2 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 2e381d65934..e0def100539 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -163,7 +163,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index 3cd95240665..d7281e2ec45 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 0114e0716bc..02408ef7eb8 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 478128372b1..d24da2cf41f 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 6844c399279..d66816d400d 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index 6c09997ea6b..2bd51f629c4 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index 8c3ac6de05e..a7cc4e1d44b 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index a29e6c477c1..b49f608f5a3 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index 98458653ad2..60d24abaf51 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -159,7 +159,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index 4d9bbc0f130..0792abe748d 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index dc25113b590..12ee6079b66 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -183,21 +183,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index b0a55e5a193..7f631b35c69 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index f05753cab96..b48cd79f1c5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -183,21 +183,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 4d649397329..7657d85c5ca 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index d1294c1cef2..040e2c22ea5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -184,21 +184,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -281,7 +281,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index e1996f857ef..18e30b8f809 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index 0794d16ba03..fabb41b68af 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 179585e12ba..008105b7a43 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 22ff7b899b1..41cf17124a3 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -185,21 +185,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -286,7 +286,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index fa2d7b9c2c0..0ed57f0e826 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 762df0bb50b..d375382ae36 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -180,21 +180,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index 1d3cd25971d..c23ed438e0a 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 25b90aaed6f..4e9d8262744 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index 39c3c7dd548..c11fe6ae91e 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index 9a2c6040489..b5dc798af39 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index abdf6dc1609..798eccecf5a 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 5fcc57d7d55..04bff66f231 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index 61b592b0d37..b89286b540c 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index df9ccbf042e..390a413ae51 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -204,21 +204,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 8ad4e0f02a9..7c936b51210 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 9cf22161871..4712a4a2b27 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -199,21 +199,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -297,7 +297,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 64460a8ddcf..344aa0babd8 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 9c88128c255..aa8a1aafebf 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -295,7 +295,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 632fcc091e0..9a9cde18819 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index 45244636a2f..9fd097a4737 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -295,7 +295,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index 3dac4593799..6f8d9c613ab 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 5a3ed0a144e..ae35ef6802f 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -199,21 +199,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -297,7 +297,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index 2317cbbb000..a9a8aa50303 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index d40ac3c511d..1b41bd74698 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -215,21 +215,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index 5b54940e762..503502916af 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 632bb131778..30079826669 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -302,7 +302,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index 83b89104285..a2262d1c384 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index e1581d72a80..02b184596ee 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -195,21 +195,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -294,7 +294,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index f225cbe98e2..120ed5776ce 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index d56db6918ba..7d85cef1109 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -151,7 +151,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index 7615a7116c3..3b71bf806d4 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 323f512b9e8..db3c91a8bba 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -151,7 +151,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 39a3c283296..9a2a7e15b6e 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 76562f1b26c..1818739954a 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -155,7 +155,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index 37251f5230e..84937b5c8ad 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 675878f9a06..8991414281a 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 57ef12e2279..c6d57669640 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index fc16bc76c87..ac4a377809d 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -173,7 +173,7 @@ DEPENDENCIES redis (~> 3.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index 42ba624d873..bc88b70edc8 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 866e314d778..fec303ec1e1 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -173,7 +173,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index cc304a0fc12..85eaf9788c9 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 060c3076d8c..896f74fe583 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index ab27b2a5ad3..aa61f6c717f 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 571458da580..3efe3779d3d 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index 748e5c47fb0..f7e7f3b8c24 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index e5c11c02918..77e4e117e91 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index 6fd33719394..3ba4f3999ca 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index e08f1874b31..5b629fcfe76 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 22e2fecc649..1bf3aa3c0a6 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index fcbdc7e4b24..a3bcf9a7b31 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 820b67dd884..97703c2df44 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 3fcfe4cabe4..cd518da4047 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index 17f22cb7d66..5b6c7cde265 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index bbf8d1dd1c6..e0f3e8ba908 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 81456683078..4b4108fe78f 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index bd9be73ff1d..8207cf3f4d0 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index 0c8c3538fb4..8a7faa811de 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 6d588279296..f509f5ecef5 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -152,7 +152,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index d0dc7f859ec..5ed5d3dabcb 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 4f6864f73fe..75d61bca078 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -152,7 +152,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 68fe2b3258b..431435a269b 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 3dcb7f0c497..69c514cce4e 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -171,21 +171,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 9bc71d91618..30b83d75477 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index ba45a3f092f..490cf610af4 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -1492,21 +1492,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1577,7 +1577,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index da5396ad6b6..c247ecae7ad 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index 42af37b1adb..405032be2cb 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -101,21 +101,21 @@ GEM strscan (>= 3.0.9) roda (3.64.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -213,7 +213,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index 52a60b590c3..c96dd1db142 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 5c65cb3964a..256b0dc75f2 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index df4e4f242aa..32a780cbb40 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index a2723e88071..290a4076ee3 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -70,21 +70,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -150,7 +150,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index f1e39d7b068..f26d937603d 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 8aa443a749d..67fdca28700 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -92,21 +92,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index 31d6022a852..59dc3ad8dda 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 291c13a3c96..9192f5952bc 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -90,21 +90,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index 4bffbc52641..f9cfec3bf5f 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 5b25b1ba157..1b8ecd6a5b8 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index cfe6c979b3e..c3cd2c2e25f 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 960769f967c..7cc7f4e636a 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 7269ca724a7..a7a03b295d9 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 58dff140d3d..61f0c77da54 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 6223fb72b6a..dbb308e6d68 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 92c7832426c..7752b04da00 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -301,7 +301,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index e2faa255fbe..2cf33f5c9dd 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index de29f0fbfb6..fc7ca31c53f 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -301,7 +301,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index c051b20c384..07a4b363ef1 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index 6bea476bd93..6ac6a900aa8 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -303,7 +303,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index df4f3eb2cf6..ba35996af8c 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 735546c7024..ac574bf1521 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -103,21 +103,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -193,7 +193,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index d9c761989d3..63f7de094c2 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 5b5561fd5fe..23498567a13 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -90,21 +90,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index 6dec8efe307..7a492a282ec 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 7e1aa315ea0..2e4a6a9b03d 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -85,21 +85,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index d5156d01f19..3fcefd989ed 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 036812e07e4..340f79c1a7a 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 2ac7a471a94..f3daa5a2664 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index cdad2ebc9ca..b228fe1f032 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index 8ec0cdd63e8..383efe31401 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 147307e7a94..c8a57c9d9e4 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index 871fae7bdd2..5e4bad2b1ab 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 85cec36bd7c..7b7ad6ab456 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index 6f993d86bf2..44d142b8aa9 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index f8a35f2b3a0..5159e33106e 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index 0fee78abf93..6505f121637 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index bc824a0dd17..e4d1e4e9de1 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index cab78f2c82a..a59f4aa0189 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index 72a8bf86c37..e5a44e979f2 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index 16e91be9716..6e04eeea277 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 11038f335be..6b00843fe57 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -302,7 +302,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index eba6ea3dfae..536abcefa75 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 1c62e1a1e90..d87c9befc13 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index 8ef4b26aeee..61139a69ff5 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index efa6ba0fade..20f981c8257 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -199,21 +199,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 2ea18317459..8ae3e7f59eb 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index ed448d89620..fd765470840 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 47d7d1036c1..592f0a50a38 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 805fba367da..bab8fdf61d2 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index a5ef3f55cca..c780545add7 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index dc9fdce0ce3..565090a4b8d 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 9775b78b911..9e8114c5d10 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 79faca76920..314e96bbc18 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -198,7 +198,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index a6b91df1676..5e824fa6bc4 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 1427e6cd3e9..60839430ba7 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 860e44b0670..002335b8c41 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 1d12bd0f4df..457707c28fa 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -89,21 +89,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -178,7 +178,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index dfcb0751a80..21c6b623d9d 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index 59660a45b5a..3fc5126b459 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 551289da4cd..63b6a1fd0de 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index 79bf3d3a971..723ed8718d0 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index 454ec1ef763..10856fa8f4b 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 3eb70806e2e..a279ec46006 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index ab01c3a465f..98110c941ef 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index e873a1b1f90..f582c29e496 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index b7e212b8230..cf41dde7cb0 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 87d17d1262f..98ec02125d0 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index dac0b629652..132269d700c 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index bbaeb3970b0..15ab49fc0ad 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index 804472d67c7..2fb3945e9eb 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 0d1bfe9b7bf..06faf35e76f 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index 7e2240a3420..f9dc53f53ef 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 87705756cef..39972001f9c 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index 4ae66018fea..d50876f24c9 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index fdc4576f6b5..05c47bdddb5 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 67feeb3c754..0806194c36d 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index 2e61b6391ff..1d72063daa4 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index b27998c9818..35c7e32754a 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index d7938d5f46c..12df1388f59 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index c80652aaa7d..d4480f2dc0e 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 15e38b89388..bbb7225445c 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -179,21 +179,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -248,7 +248,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index cfa77634ec7..93d64773b0b 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index a825a0e497d..9998b0ce5f1 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -1494,21 +1494,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1555,7 +1555,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index 095636c9897..24db51c4027 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index c2a8bab5f17..0357a1153c3 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -110,21 +110,21 @@ GEM strscan (>= 3.0.9) roda (3.70.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -202,7 +202,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index ee43896ca7d..77fa4ecba7f 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 25b48eed0f4..2d56b33525e 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -108,21 +108,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index 354fd4b7aa9..26093d365fa 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 50c73829180..60a768fcfb1 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -72,21 +72,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -128,7 +128,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 1b456fa603d..d51f9f0cdab 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 3bdb2dd2e37..e701e061a6d 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -109,21 +109,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index 5c8e038e707..e85b4cfbeab 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index a824ff908af..c7c87d9444a 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -107,21 +107,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index 9e358e30ee8..d9ec91c7a0d 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 5e8fd5d2b8d..0f34ab02c61 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index ac12050c9f8..d8d24a819b2 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index cd7b605b4c7..1b554036a9f 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -287,7 +287,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index 21ae4198b30..154400a2a76 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index 2263b0d5d83..3edfab37926 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -170,21 +170,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -234,7 +234,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index 06beec071b0..1239edc8b6b 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index 598b0d3e8dc..78d7a6531b4 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -126,21 +126,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -194,7 +194,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index a69f68d0f3b..24ecd5240ed 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index 24abd5cb8e3..abc5057b3ba 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -107,21 +107,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index 43cd2fce29f..4871a31ec1d 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index e154492a406..c4d6e44be7e 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -102,21 +102,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index d27d8066df5..7d93c8cfa52 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index 3389f745e70..7c675d29b63 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index 33e46fe491b..df6c84120cd 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index d8f65816e72..9d9d6a76f94 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index 01379fded20..570ae2730ad 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 7c60f9a9792..e256332f673 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index 6bb585580b6..ff11783659f 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 03a6a9271ed..fcbb0426656 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index 5bb1ef62d49..72c6f77ace6 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index b4caf42b114..06395236165 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -138,7 +138,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index fc99e1fe0fd..c28da5b5b25 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 0e37426e205..bcb87249791 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 878b6709df2..04520f3e91b 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index b8183a82fb5..bb031048c34 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index 7571640b92e..6e07e69303a 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 04cae541fe8..05fc75f127b 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -206,21 +206,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES redis (< 4.0) redis-rails rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index 2ca7d6df973..8ce9e27bad5 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 536c12216c3..5c800dedc90 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index 21f630ef256..12d796ba704 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index ef74319d9c4..1b918d44f0c 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -186,21 +186,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -258,7 +258,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index 8b5e4e9d793..056492e5e8c 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 04d9f87d4e4..80f1d0c0aab 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -172,21 +172,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -245,7 +245,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index 6b410076a18..737f9fbe61e 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index f262d2ddec7..0c9a18e012a 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -190,21 +190,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -263,7 +263,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 00548f58b5a..5a19b7827fb 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 0667b1d7272..704c3590e1f 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -195,21 +195,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index 491603d70c9..a3fd7dca25d 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index 2065d3b4396..ca587e3e7de 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -283,7 +283,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 5d734c46ab8..0f0a92b2ec8 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index d7510b11419..dcdecceaf39 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -270,7 +270,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index ef1fa76243e..48831650fce 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index d527d32788f..f0c59cec807 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -187,21 +187,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -262,7 +262,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index aec19cb57e2..539a099b221 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index cb28c7005cd..976a649164c 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -191,21 +191,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index b9929ec25b7..eaa53159e4f 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 0caa43710bc..eff5aa05a04 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -282,7 +282,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index b5058d605e2..3131ec98cc8 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index b677b9a502c..95d57dff383 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.2.5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index f0c8469504f..71a54054c2d 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index d4463fc0ec5..9b96ed86136 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index e0aa5ccf387..2c7a1a4b3f5 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index 3bf1a4080e4..153076c5d75 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -206,21 +206,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -281,7 +281,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index 32a82cd9e1c..8c998bcea31 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index 9596f20850f..e0131cab5e2 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -187,21 +187,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -261,7 +261,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index f3756e623cc..b450b285b54 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index 88dfe0466cf..ccef311841d 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -205,21 +205,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 5f5b7341958..67a9a7bd631 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 8ef30aafc06..d35c30f2ebf 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -210,21 +210,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -285,7 +285,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 6b496c5b830..99eebab31ec 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index 4046ff47140..d0a1313c0a1 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -222,21 +222,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index 925a254cdca..28f222bdca7 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index d9abb120de4..b1489c6f27a 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -286,7 +286,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index cb59f1d816b..3d626953c02 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index 00cb06e4d5d..b30aa66e74a 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -202,21 +202,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index 7a850a3eb61..54a220187af 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index e8e02f52a9f..fae77c7b476 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -73,21 +73,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -130,7 +130,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index 98053373ab2..62a213fa232 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index ed98f2657ff..cc6fc1f962b 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -73,21 +73,21 @@ GEM redis (4.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -130,7 +130,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index d1afedefa7b..834c4e87ffc 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index 0473f8b8bd1..2ccf9b4e4f1 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -77,21 +77,21 @@ GEM connection_pool rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -134,7 +134,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index c51d7b93725..fcb62c5e7ee 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index 19a73097f0d..57ac823d7df 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -97,21 +97,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index 702a3b9ac4a..267a91f96f6 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 426b4308015..f9fe9a34497 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -87,21 +87,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index d5995dd46ea..453adf7eb50 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index 3dd5414ba61..937eaa9b368 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -91,21 +91,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index 6332d74ba5f..d4e9ba79372 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index c51823cf29f..53049fc2ce8 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -150,7 +150,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index b56d2eb5f76..d8202934877 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index f3bb9935cf2..f1725c35143 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index e8ad2ed0498..b5be616961d 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index a19907800ab..35a378e9449 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index 1fe43de6391..5e7a964c348 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 064432bd67d..bc437a5fa2c 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index e312b9c1499..f50ceda0ba3 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index d4f753b0ea7..3274b09802a 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index d1f8c359fb6..089cb37271d 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index 7537f5c84c2..b89b21ae5e8 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index 7e6a181a95f..8a5c3bf33d6 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 2884b8de2af..c675b6ad744 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index a706e8fd8cc..cdc50a9953d 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 55339e4aa8b..4cf42a2d0f8 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -131,7 +131,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index 15d9f661810..37f654aac97 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index 94cc57a4c62..2f124336804 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -131,7 +131,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index afd465c1795..5adc21a67fc 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 26156fdff95..f9e9603911f 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -283,7 +283,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index 970e245af21..6afe6b319cd 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 756c6d16693..8f390b6a454 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1590,7 +1590,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index d580a14e39f..9a9e4415924 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index a0d96eeb017..5a6a36f0ea6 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -119,21 +119,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -235,7 +235,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index 561399ea40c..343962dc0f9 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index 85561c86127..109dc62cc96 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index 83765d9953e..7ea673ce0ef 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index 286455b4356..865eb307c6d 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -161,7 +161,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index f1b3d49e5fd..20f3eade38f 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 6414bc42049..50d9dc96204 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index a909382d1c3..3711bc13617 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 7262823759a..65b7274e1e9 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index b26a50ca97d..b64a2ae5231 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index bdd487c166e..d73a9af2039 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index 65159a0b25f..82f1077c5d3 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 95519e3d8a8..68151c12b98 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -216,21 +216,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index e59135f6559..a827312ffee 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 826ba2b95b3..f8bedee1ec1 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -216,21 +216,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index ab1bd67f2c3..da0be2260d9 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index a287bbc1b2d..5f576325c23 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -174,21 +174,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -262,7 +262,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index adb87e91bd3..cdc2b623fcf 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index 8f80c736ccf..81cc5389cb7 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -209,7 +209,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 6700e0b254a..8f8d9b205c1 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 75ee19878e3..e1586833772 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index baa895305c4..50d1d32d86b 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index bd35421263b..84a354719d2 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -95,21 +95,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index e029c5c7f98..4102d64f402 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index f28a781a607..fa58226cceb 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index c8cd9fb7fcc..7707bf3ebd5 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 7a4ac718a9c..f2205c5056d 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 95f44d00348..d13a24f4ecc 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index bff5d9c5609..58b413d7796 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index fbd1779c13c..34d97523568 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 461db8a02b2..10b46bd30fe 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index 01d4c90176a..2c2f94bc3fc 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index aae198a1287..8b24dccdc91 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index e68a0332131..cdc45afce7a 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index a5c90efa26a..77652678202 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index df862f35d30..e0ca01fce2b 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index 6435c9a3344..c348e790338 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index d1e0797ed98..44bac1199da 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 83ffea0b747..7cc694a1d71 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 4790acc88ce..dba24170b40 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index deb02be440f..6f04babdcf8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index a8d99533c76..4875bcd3f3b 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 6f26b27b01f..9e1f6225aad 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -291,7 +291,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index d13a7a241da..b25b3f73b36 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index 63a32d229e3..63f9401c0c8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 636cc3f544e..17be3779ac9 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 343a96867cb..37625e7fe24 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -194,21 +194,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -296,7 +296,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index 7c355d09a56..d75425225a0 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index f24a4f3cd1e..f942003ec41 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -189,21 +189,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 6d80e921136..9a9f825fc02 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 86e7e27acf2..c783b661952 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 230e3348073..912269eadb8 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index fa83ce89172..c52699fd1c2 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index de45f90e872..19e0be88199 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 9486713de70..30ea02dfdd6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 0af8a26e3ec..cb2f57c7624 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 0f57c3ddd19..242f2b22308 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index 7448e68f1ca..e74eae4177b 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 335f8fe216c..9440a358c8a 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index acb24d22d72..1605edca04c 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index 5b3aaf21c07..2cce3a54c6c 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 9ecd8d22f6f..704531c535c 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index dc31d40820b..d450c774a13 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index 95cd43a0937..7f31d06d40f 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 30a4ed8e698..85060698e09 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index 68fdb26f44b..19031fcaec5 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 4f9765254ea..01fe6243125 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -224,21 +224,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index a9bb1e33b18..9c6134e3706 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 821706541e8..9c4ec1d7392 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 5cda196c025..d150608644b 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 1957a2aa759..7dc53c3bbd0 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index f20614681fb..cbc40cfadd1 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 091aef40f65..3669732d9a3 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index 646f01022eb..58708ef16a6 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 61dd0abfb4f..3e29f08a7b8 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 7124e3481c6..1de1f07ccc0 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index d15ad8bd658..ea5f0715f80 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index c99c7465193..37081197a85 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 7f150718ec0..969af7f8290 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -107,21 +107,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index 3394ff89382..c9f54b0fcb7 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 95017cc019b..5336cf37759 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 3.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 3b7df518be7..637edb37aa7 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index d5bb57a8778..c443a5e83ba 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index de2d5091349..2e9515db75f 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 6bcd270bf7d..672c70c1eac 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index eb271ed75b5..ce79eca0434 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 00eecd51104..400aa9664dc 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -187,7 +187,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index 94b249d24fe..c577868d388 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 8488256987f..b883864e953 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index 7555bb80aa0..dd682ffbacf 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 4775e430023..0c55ab083aa 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index dc56b8555e1..287754932b1 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index f8c08f25f38..e273e92074b 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index 53e819ff33d..a57cb921689 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 3b7e24ead63..107a53f720c 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 54f4c2ea396..bb4f7335ed0 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index b78e9ef1118..7106fdae937 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index 85151aaa4be..c1e793a97cc 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index db55b8b0b3b..ecc5980fb64 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index 6fae93f1b94..72866e30e77 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 62b2a256b00..8a43bee4885 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index b863383b005..5f4031f7e19 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 6f442a11b93..3ab1089d367 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index a9ef01c8b90..8ed829aa5be 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 873a81f6cf6..8dadf971192 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index 95ff0a7a4c9..1fa29bb423a 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index df18d5b42de..926a55f05ce 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1590,7 +1590,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index 2a2e5145b82..ea43261814a 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 23b1a82bef0..7966a458d28 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -119,21 +119,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -234,7 +234,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 1bacfa31883..721a55a6b1a 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 0d884160218..c8f07c172d8 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 8be6bdbc715..b8839a12f37 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 14cfd7ce724..d9f1dbd4055 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -161,7 +161,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 21eef05cc83..1a98af9aa40 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index c073e466283..4f8dc535b70 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 8854724b690..208fecd5fc9 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 406a25e9060..0b636536231 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index 27be9fae8cc..ac72bd25db7 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index 4cc8725de59..44239102e14 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 6f10c179ed1..bfb9a9ae5ba 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index 9f0376eea57..e9303eda2fa 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index ed0d0805ac3..4660d670e55 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 95dc90549d6..5439d528fd7 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 599b6553ccf..fc69d1bf7f1 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index eea78205b76..a2fa75fd2bb 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index ba68deaf3cc..15de750aa0e 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index 841649a181b..7aab742ef84 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index d69ce91444c..0e7ac8a2842 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 1d8ad2438a6..1e7c336ba58 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 696970d1759..40729a9db62 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 4c05c0518a3..e34125b03a0 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -175,21 +175,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 347cb848d80..178c052ae03 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index cbbb1316b08..dfabc2168df 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -209,7 +209,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index e4fe4558af7..6fe0d931993 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 75aa7c5002a..53c60a0b20e 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index 846a6256428..eafad1dcfa6 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index c1de4ae2991..15a19a6b8e2 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -95,21 +95,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index eb313f9cd41..a08289b86e7 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index afa30b8a5f7..739c068065f 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index 971af11d669..c4c72fa86c1 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 5b3eff842d2..7befaecdfdf 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index 7430604197d..2fff3884dd9 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 9f431ca2d48..d925d339289 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index 77f45a2e1c1..468a0ce01f4 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index b9260e7f861..2804ba897da 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index f7992c433dc..96cb5c8f5c8 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index 353c348dc21..a1c584bb2da 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index e986c841531..86307adc8c0 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index a0a9a14c33d..35f20631441 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index f9106b47801..ee6d9f05348 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index e99addaa345..1dff6e11209 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 452cd51ef85..56a1c7f6a1f 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index 1049e977538..128fabedfe6 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index c7dfc8dc9a7..809fc428c9a 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 9a68c188fc0..c0865da43d6 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index 69f95c69966..54102d56929 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index 84b32271d58..af4fc4cc590 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -291,7 +291,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index 0a3c1445696..fb4105bafcc 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 2e9854218b4..44cc2f6b173 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index a280d322d8e..65080f46f52 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index d5d035c8c8d..bc6c43a3d8b 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -194,21 +194,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -296,7 +296,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index f9c652493b7..69ce09e05a4 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 1892ea95914..6f7b0ada6a9 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -189,21 +189,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 2df31e3b9e5..9d4e799b087 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 26da06926fd..52984cf84a7 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index 68da2d61648..6e128e6b160 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 4ab2a0bca3a..4ecc715b328 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index 458c2952c3a..0aab4e650fd 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 9a2283315c3..26a7fd49d4a 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 86c315a66f0..ea4e599ac4b 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index 627a2f2f334..e302f5a9c87 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index 53811f2a58a..75d816a382d 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index a04d1e9bf9c..b71be73d840 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 700c42b3800..5b6206158c9 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index fb5f0f1e25d..e02c7161be4 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 7f28529b264..1129f40dd7e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index c6d20f6d589..6ce92201126 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index d72ab9a3bfa..64f5f700cc0 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index e26bc521065..e8be234d81e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 3f6e4f30c6f..2f7880f2da5 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 500fbbd84a3..2cf5272ebbd 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -224,21 +224,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 580eaabb162..7430192f5ff 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index ad1b3e1a566..b0635f43fe1 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 72f94f77850..06299efe6d0 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 69b2ca85d0d..4d9c672d7b0 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 996e935b65a..090ed5683d1 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index fa2fbe91dad..f9582286756 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 9775e091813..cd10fcda96b 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 87b5020bcb7..64d665b5bad 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index 1e1bb3b807e..491d8555b95 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index 430edbd20c5..790a95953ac 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index 9baf3bde1c2..925b2b96e0d 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 8c4f1eda5b6..50d86da3be1 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -107,21 +107,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -199,7 +199,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index 746a740a460..e1f118cd4c3 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index e721d67fbea..15d36711bcb 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 3f8e978b4d5..42cfd6732c7 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 7406290b8dc..1fa16d84cce 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 5a70633a2f9..9929dee84ff 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 748510deab2..89d18bf3b47 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index 5fc3a7497ed..b9441dbdc40 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index 3d31ace4de0..08f2c4e5087 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -187,7 +187,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index d98960c9b0c..129b39b8d7d 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 3060a58c062..4f9a7e11695 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index 2dda2d49d55..12f1d1847e6 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 7f9264650ac..de88fe3e665 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index 7b893aa3bd3..ce9e9670bbd 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 096a4f60867..f85fed9291b 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index deb3416be7f..888098f6ca9 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index b7a50f9b78e..e252fb6f36e 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 6cd7cf2fcdf..63441ad2d56 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 6a977964935..8402c938627 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 8f8ed25ce60..301feb65b24 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index 7ab6d1b90ee..6e1b1584deb 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index c2f71b9eb16..a01cb9defa3 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 0b1cb0053f3..843136565ad 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index d4fc7f3260d..279c2c1d23b 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 017f4563417..1b34bccfb86 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index ad753ca193c..c66f3272290 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 2727dbd09d3..8cc44b5f586 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -280,7 +280,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 08a4b53cca3..141dd4945d4 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 3a8f2ea26ae..b72e1996a02 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1591,7 +1591,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 0d57f781afa..14f9732f151 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 853e07908f7..c38514a74ba 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -121,21 +121,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -238,7 +238,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index 2f753d3ec21..c281b2784fd 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index da458ebaba4..bce59cf81da 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 01f6865e03b..92a913e9a5f 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 78e125fe552..3860b230364 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index 4b83240d43d..7b522e07485 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 620b04b8348..649a93c04f3 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -105,21 +105,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index cda6467b661..86364bc6bfb 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index c1358ad4dd2..1300d1fc917 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index 62a64ac5335..4c2fc508d18 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 749e7b5056b..8f50c5d3102 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index b54ffe6e5ea..51e0e7b961d 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index e08cc0bf3f0..95faa7bd8e6 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index 495f9d14955..823f7542312 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 0c740cc7c17..8ee0c7132ee 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index cb18c1c3254..35f6c7207a9 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index b651e846cb1..2ecb4c9830e 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index af077d7589c..1b43195b410 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index d4049bc1977..6f6f3b9ed0f 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 1dfff1f0739..d2e58af0344 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 6700c8f4d63..d8f9221f961 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index c87c6a2a894..7c65171f882 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index b71cde850a8..be591905ad2 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index 9739b756d81..942a6317e60 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index b7446595563..d767692b552 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index 2667385fb26..af8a063286a 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 692fb90efda..bfe94524ea4 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index f6a4a79a50a..d288085baab 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 676f3100ab0..f79366d20e7 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 2a72364a885..29ccc01c677 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 5b07dd3cb9b..d3e73887843 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -175,7 +175,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index e3a336f0ad2..ff36c718bf3 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index a221de7c58e..fb8e3e39b27 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -189,7 +189,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index d56ea818c17..69978ac3c78 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index d7824ca80a4..1a1adde5b2c 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index 42acfe1a08e..ef520c3e299 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index bcb3ad4fc9a..7770459214e 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index cd189b68684..b85f711288c 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index ddc208fecaf..311a62747ef 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index dcc5c722ac0..ea470ee9850 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 86e91771540..41e77d60889 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index bc9cd65d0cb..1f8975c3cf7 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index ecb604e5b3a..98d50f81087 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 86c369ceb8e..76cfde9b59f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 802294aec6c..801a4c86f33 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 4b231e63314..5971fb2833f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index de40fb5516e..46b0fb6dd04 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index 9bad3ac655b..911c472e64f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 5c55554c015..d2124c706bf 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index 94354201a7d..c09904ebd34 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 0c220005be5..7033dbedd0d 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index 0b8b1f4b468..5f6873afce7 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index 1ae7b8881a1..fb5d3ac8379 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 6d74fd2b67f..cc49a50fbf2 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index ed25d7065fa..e6e1e667a02 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 8e458e2c987..db7b37889a8 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 8b161bb4c22..2de01704496 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -335,7 +335,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index c5bb7c836d7..e4f0fe63f57 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index c289b08e185..434dd961abb 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index f0bc5d792f3..e3b935cb5b6 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index 052043e8c26..6bfa9171216 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index a90c77ea82c..003d7d7f42a 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index e6dc85cf115..e206b54b59d 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index b85769ff1a9..d94c0d745f9 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index eba5fbcf24a..3b07a812671 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -106,21 +106,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 3ae64ec88ba..c706c151c1b 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 7caddc8851c..42b6f48c35f 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 83e651e36e7..ff35c677a4e 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index 542d8cf6673..e3be828584d 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -100,21 +100,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -190,7 +190,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index b8f6ec816fd..4271c435def 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index dec9c590b4c..8463b94a4bb 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index 0bd409cbeb4..89a08dea6c0 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index d726027c758..589ef82eb3b 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 043fe3166fe..487745e57c7 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 47671530c69..521a5fec9fd 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index 67dae821fd9..096d0672b8f 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index 958ce4394b3..800fb1d0163 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index cfff965d3bb..892de59cf1b 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index b214ff99ca7..1ec49f77f31 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index 4b3c344c0f8..68220d9367f 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 14c35868fa2..a2557e8de1f 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index bf8b52917a3..cc94e9d46fa 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index 07535e23ac3..97d4df185b7 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index 1bdb9fd9814..a57fb151cad 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 0b2226f8de2..f26968c62d9 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index a9b5346defe..108ecd2f1cf 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index b95c19138b9..1ca78a50d9c 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 4939ddd9168..81d4d8a5e54 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 8d7f349ccf4..0d0729faa58 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index 2c6a3d47b17..ba5434bde4d 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index aff92cd5e72..a753da400e2 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index ad753ca193c..c66f3272290 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 2727dbd09d3..8cc44b5f586 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -280,7 +280,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 08a4b53cca3..141dd4945d4 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 3a8f2ea26ae..b72e1996a02 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1591,7 +1591,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 0d57f781afa..14f9732f151 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 853e07908f7..c38514a74ba 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -121,21 +121,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -238,7 +238,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index 2f753d3ec21..c281b2784fd 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index da458ebaba4..bce59cf81da 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 01f6865e03b..92a913e9a5f 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 78e125fe552..3860b230364 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index 4b83240d43d..7b522e07485 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 620b04b8348..649a93c04f3 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -105,21 +105,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index cda6467b661..86364bc6bfb 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index c1358ad4dd2..1300d1fc917 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index 62a64ac5335..4c2fc508d18 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 749e7b5056b..8f50c5d3102 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index b54ffe6e5ea..51e0e7b961d 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index e08cc0bf3f0..95faa7bd8e6 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index 495f9d14955..823f7542312 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 0c740cc7c17..8ee0c7132ee 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index cb18c1c3254..35f6c7207a9 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index b651e846cb1..2ecb4c9830e 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index af077d7589c..1b43195b410 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index d4049bc1977..6f6f3b9ed0f 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 1dfff1f0739..d2e58af0344 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 6700c8f4d63..d8f9221f961 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index c87c6a2a894..7c65171f882 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index b71cde850a8..be591905ad2 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index 9739b756d81..942a6317e60 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index b7446595563..d767692b552 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index 2667385fb26..af8a063286a 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 692fb90efda..bfe94524ea4 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index f6a4a79a50a..d288085baab 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 676f3100ab0..f79366d20e7 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 2a72364a885..29ccc01c677 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index b00e577962d..762664f4646 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index e3a336f0ad2..ff36c718bf3 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index a221de7c58e..fb8e3e39b27 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -189,7 +189,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index d56ea818c17..69978ac3c78 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index d7824ca80a4..1a1adde5b2c 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index 42acfe1a08e..ef520c3e299 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index bcb3ad4fc9a..7770459214e 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index cd189b68684..b85f711288c 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index ddc208fecaf..311a62747ef 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index dcc5c722ac0..ea470ee9850 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 86e91771540..41e77d60889 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index bc9cd65d0cb..1f8975c3cf7 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index ecb604e5b3a..98d50f81087 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 86c369ceb8e..76cfde9b59f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 802294aec6c..801a4c86f33 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 4b231e63314..5971fb2833f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index de40fb5516e..46b0fb6dd04 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index 9bad3ac655b..911c472e64f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 5c55554c015..d2124c706bf 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index 94354201a7d..c09904ebd34 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 0c220005be5..7033dbedd0d 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index 0b8b1f4b468..5f6873afce7 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index 1ae7b8881a1..fb5d3ac8379 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 6d74fd2b67f..cc49a50fbf2 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index ed25d7065fa..e6e1e667a02 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 8e458e2c987..db7b37889a8 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 8b161bb4c22..2de01704496 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -335,7 +335,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index c5bb7c836d7..e4f0fe63f57 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index c289b08e185..434dd961abb 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index f0bc5d792f3..e3b935cb5b6 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index 052043e8c26..6bfa9171216 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index a90c77ea82c..003d7d7f42a 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index e6dc85cf115..e206b54b59d 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index b85769ff1a9..d94c0d745f9 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index eba5fbcf24a..3b07a812671 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -106,21 +106,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 3ae64ec88ba..c706c151c1b 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 7caddc8851c..42b6f48c35f 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 83e651e36e7..ff35c677a4e 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index 542d8cf6673..e3be828584d 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -100,21 +100,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -190,7 +190,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index b8f6ec816fd..4271c435def 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index dec9c590b4c..8463b94a4bb 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index 0bd409cbeb4..89a08dea6c0 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index d726027c758..589ef82eb3b 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 043fe3166fe..487745e57c7 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 47671530c69..521a5fec9fd 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index 67dae821fd9..096d0672b8f 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index 958ce4394b3..800fb1d0163 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index cfff965d3bb..892de59cf1b 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index b214ff99ca7..1ec49f77f31 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index 4b3c344c0f8..68220d9367f 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 14c35868fa2..a2557e8de1f 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index bf8b52917a3..cc94e9d46fa 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index 07535e23ac3..97d4df185b7 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index 1bdb9fd9814..a57fb151cad 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 0b2226f8de2..f26968c62d9 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index a9b5346defe..108ecd2f1cf 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index b95c19138b9..1ca78a50d9c 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 4939ddd9168..81d4d8a5e54 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 8d7f349ccf4..0d0729faa58 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index 2c6a3d47b17..ba5434bde4d 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index aff92cd5e72..a753da400e2 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index 8de858f43a2..1df11a42e3b 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 98cd93c2d93..f884fd05ca7 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -182,21 +182,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -275,7 +275,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index 4381de35358..0c8d0ed587f 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index 638b7e796f2..015f8a634df 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -1501,21 +1501,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1586,7 +1586,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index e0dc8534eb4..99c062e1811 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index b379e781e7f..92a6f98e47a 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -117,21 +117,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -233,7 +233,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index 0a5507335ca..e11249d7966 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index ec030747c73..e9b20d3c1b6 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -113,21 +113,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -213,7 +213,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index d7b773d365d..69ab8b9c364 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index 46668088447..1061cc5a112 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 0b69fee6a14..cc638fa3bdf 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 639f3db1351..ee6d46de377 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index 145cd806d7e..9aa922ac4eb 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 4f62c1cd3bd..74ec88c4ef5 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -99,21 +99,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index a828fd4a6f7..dfceebfe612 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 615d82ac9d9..b919c6a5151 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index 70834bb9442..fc1be26cae5 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index a2d09011ed0..b371f8975f0 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index be3f11fc16a..9568403d526 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 4f94770e08c..d64eb4f95da 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index fd234b8dd05..4a8e185819d 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index acf4b97d9ec..87716ce76fa 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index c51f0271f08..f3c7cfaf38d 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 0ef118c4ea9..db93fbb6bda 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index a41051005f2..957d6b9d4de 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 7d8ab5fcef2..31447c16771 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index 0e0503cb90f..7dc04c92f9b 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 646feba537b..e8be594414c 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -113,21 +113,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -205,7 +205,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index 1ddb1abca41..ad0b149218a 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 9886687058b..a96ba008b35 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -99,21 +99,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index 1620625a1fe..67a5656f1d1 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 18419c20353..34fda4fe71c 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -94,21 +94,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index aa9a7905992..777fd431713 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 1d7d83bfa7d..f567342c6f5 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index 882b5534f2f..e9d8aac4e67 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index df8f1e1fffe..8134ac383af 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -89,21 +89,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -170,7 +170,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index dc1e1a628d2..9aefa5f9a19 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index acde52ecfce..a56b1cf269c 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -184,7 +184,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index 3f4dcb2e812..8630fdcce1d 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 6322b676ed3..ab61885af9c 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 9c6e1202600..4c7b10d4b54 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index 7a129d72cef..a91651bbaf2 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index 8e935538d96..72ab6dbd5af 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index ecb71e93d25..fe023891e4e 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index 98c3bee7b5c..6348f13b42e 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 2bac30510c3..b57bb340009 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index b3d6f50f232..02b3f0dd108 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 4407df32ea7..4c388daae84 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index 52c56a81911..241807f21ea 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 61cbaeae66e..ee37a7e19cd 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index 62e57d1655f..665365d839f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 08d6f8ea025..6528134b202 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index 8c76214aceb..7743153be9f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 2a9766bf4ce..7de4f7aa693 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -320,7 +320,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 2391b1824bd..42fc0d8e52b 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index 2dede1f971a..ec8edb91e7c 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 7babf75a747..497948fac3c 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 8964a4157a7..182447f965f 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -313,7 +313,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index 1d7bf20234e..f1868a2214f 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 40709b4b702..553c646a3f5 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index ef669fc2d04..062c05e0795 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index d5f32552c11..02f2ddc3c45 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -330,7 +330,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index d7dd94b9dc2..987e2c5ad8a 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index d65eaf7de6d..ae4e579cae5 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -78,21 +78,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -159,7 +159,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index d1cfebb7540..ed348644830 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 06b80c1ab58..db565abd3d7 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -78,21 +78,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -159,7 +159,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index 51fc2bd6fcb..4f0953253f4 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 59fd706a5ba..7675797ff74 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index f6b2e9588fa..f26abd2725c 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 0ff714b1b0b..93d394fc9be 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -102,21 +102,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 640f8597e26..7c8daa332a5 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index a8f33224102..cb58ba2a24e 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -92,21 +92,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index 506386653cd..fae5853c72d 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 7ee3b526c49..ba3fad36651 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 829793bf92f..7ad06f5d3cb 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index 01f3dd29e2c..9f0995c795f 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index b32d81abb42..d85e1bbb042 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 81cccfd4c22..8b9b5af6978 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index 4f2f198fcc7..d480f436817 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index c4c09584c9d..f25c9f0dc50 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 78c1b12b157..8cbdf34419c 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 8beed942e33..6411e7bf6c0 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index 97cc42bc32b..0210f5d0ad4 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index ae37c017c4d..6e524049b53 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index d32c0492d04..38f3510a912 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 7e326829b2a..23931db9524 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index f6058cec9af..0541f5bfae5 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index dcdc2ee01aa..94013150e2d 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 207e52f7ef0..9978c7f0474 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 46ffb7f5431..7724e3ef991 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index 694bb73a25f..d8f968d6e5a 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index d3000bed2ed..8aab8dad2f3 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index 75c1fc97991..2ddc72a903e 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index d3e303be8f1..c6c68551ad7 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index 001cec5c97f..c423a54874e 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 3ae4218bb5c..2dca2b2551a 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index 8de858f43a2..1df11a42e3b 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index f768c755a97..8cb55ea3d3d 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -33,9 +33,9 @@ GEM erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - active_model_serializers (0.10.13) - actionpack (>= 4.1, < 7.1) - activemodel (>= 4.1, < 7.1) + active_model_serializers (0.10.14) + actionpack (>= 4.1) + activemodel (>= 4.1) case_transform (>= 0.2) jsonapi-renderer (>= 0.1.1.beta1, < 0.3) activemodel (7.0.8) @@ -112,12 +112,12 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.13.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) memory_profiler (0.9.14) @@ -129,8 +129,9 @@ GEM ruby2_keywords (~> 0.0.1) mustermann-grape (1.0.2) mustermann (>= 1.0.0) - nokogiri (1.15.4) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -180,21 +181,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -273,7 +274,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index 4381de35358..0c8d0ed587f 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 6000f965e5b..7bcb3e8acc6 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -1500,21 +1500,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1585,7 +1585,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index e0dc8534eb4..99c062e1811 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 6f9b773517e..f14c0ae8b20 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -51,11 +51,15 @@ GEM extlz4 (0.3.3) ffi (1.17.0-aarch64-linux-gnu) ffi (1.17.0-x86_64-linux-gnu) - google-protobuf (3.23.1) - googleapis-common-protos-types (1.6.0) - google-protobuf (~> 3.14) - grpc (1.54.2) - google-protobuf (~> 3.21) + google-protobuf (3.25.5-aarch64-linux) + google-protobuf (3.25.5-x86_64-linux) + googleapis-common-protos-types (1.16.0) + google-protobuf (>= 3.18, < 5.a) + grpc (1.67.0-aarch64-linux) + google-protobuf (>= 3.25, < 5.0) + googleapis-common-protos-types (~> 1.0) + grpc (1.67.0-x86_64-linux) + google-protobuf (>= 3.25, < 5.0) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) json (2.6.3) @@ -114,21 +118,21 @@ GEM strscan (>= 3.0.9) roda (3.68.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -230,7 +234,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index 141c6e7cef6..501fb0b49e6 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 13e86d014d1..db962e62a69 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -113,21 +113,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -214,7 +214,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index d7b773d365d..69ab8b9c364 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index 4c1527fc444..f2eeed4c07e 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -76,21 +76,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 0b69fee6a14..cc638fa3bdf 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 9c294bbcd53..16a43174e62 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index 145cd806d7e..9aa922ac4eb 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 03148092838..0502ed346db 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index a828fd4a6f7..dfceebfe612 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 615d82ac9d9..b919c6a5151 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index 70834bb9442..fc1be26cae5 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index 603a3ab90a8..3bdd66a8890 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index be3f11fc16a..9568403d526 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index ed41769aba4..00bd9ab84ce 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index fd234b8dd05..4a8e185819d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index f20b0cbc2cf..f5b592b6e4d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index c51f0271f08..f3c7cfaf38d 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 916dc4d2af5..a7acd0dc60f 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index a41051005f2..957d6b9d4de 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 7d8ab5fcef2..31447c16771 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index 0e0503cb90f..7dc04c92f9b 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index f3f4f8d66ad..7d45c80d09f 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -112,21 +112,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -204,7 +204,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index 1ddb1abca41..ad0b149218a 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index a6e87a12d53..56ac65b2e5b 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index 1620625a1fe..67a5656f1d1 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 1ceb5780683..3bb6bf9896f 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -175,7 +175,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index aa9a7905992..777fd431713 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 1d7d83bfa7d..f567342c6f5 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index 882b5534f2f..e9d8aac4e67 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index c6c587bfb0b..8cbeb9f57dc 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index dc1e1a628d2..9aefa5f9a19 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index acde52ecfce..a56b1cf269c 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -184,7 +184,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 9c6e1202600..4c7b10d4b54 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index 547a751fa13..88038f2153a 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index 8e935538d96..72ab6dbd5af 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index f364121a2a5..d6fab8ed923 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index 98c3bee7b5c..6348f13b42e 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 2bac30510c3..b57bb340009 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index b3d6f50f232..02b3f0dd108 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index cffc4a183e9..528a074d6ef 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -122,12 +122,12 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) mysql2 (0.5.5) @@ -153,8 +152,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -206,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +306,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index 52c56a81911..241807f21ea 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index a72dae94399..d43dcf481d6 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -122,12 +122,12 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -152,8 +151,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -206,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +306,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index 62e57d1655f..665365d839f 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index bd265075039..1db576ff03c 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -122,12 +122,12 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -152,8 +151,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -207,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -306,7 +308,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index 8c76214aceb..7743153be9f 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index 5a92d97410a..1fa9a0ca6c1 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -123,12 +123,12 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -140,7 +140,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -153,8 +152,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -187,11 +187,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) rails_semantic_logger (4.12.0) rack railties (>= 5.1) @@ -213,21 +215,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -319,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 2391b1824bd..42fc0d8e52b 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index 1467fa90ce4..84433f971b8 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -122,7 +122,7 @@ GEM ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -134,7 +134,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -147,8 +146,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -181,12 +181,14 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) - rails_semantic_logger (4.12.0) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + rails_semantic_logger (4.16.0) rack railties (>= 5.1) semantic_logger (~> 4.13) @@ -203,21 +205,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -303,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 7babf75a747..497948fac3c 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index 4ea4200e249..b0626323d86 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -131,7 +131,7 @@ GEM activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.22.0) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -143,7 +143,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.5) - mini_portile2 (2.8.5) minitest (5.20.0) msgpack (1.7.2) net-imap (0.4.5) @@ -156,8 +155,9 @@ GEM net-smtp (0.4.0) net-protocol nio4r (2.6.1) - nokogiri (1.15.5) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index 1d7bf20234e..f1868a2214f 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 40709b4b702..553c646a3f5 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index ef669fc2d04..062c05e0795 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index d5f32552c11..02f2ddc3c45 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -330,7 +330,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index d7dd94b9dc2..987e2c5ad8a 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index b0c6aa19b01..333f8401712 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index d1cfebb7540..ed348644830 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 943cc7b107e..8b27dd7ec68 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index 51fc2bd6fcb..4f0953253f4 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index dfebf539065..4e18692a79e 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index f6b2e9588fa..f26abd2725c 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index f21fd98f3ba..e9fe00ccea7 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -102,21 +102,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 640f8597e26..7c8daa332a5 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 74f9dc626bf..6d17c1a43b4 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -91,21 +91,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index 506386653cd..fae5853c72d 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index f65a8177018..6f7f5a1b407 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -95,21 +95,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + 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.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -184,7 +184,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 829793bf92f..7ad06f5d3cb 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index 01f3dd29e2c..9f0995c795f 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index b32d81abb42..d85e1bbb042 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 81cccfd4c22..8b9b5af6978 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index 4f2f198fcc7..d480f436817 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index c4c09584c9d..f25c9f0dc50 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 78c1b12b157..8cbdf34419c 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 8beed942e33..6411e7bf6c0 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index 97cc42bc32b..0210f5d0ad4 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index ae37c017c4d..6e524049b53 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index d32c0492d04..38f3510a912 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 7e326829b2a..23931db9524 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index f6058cec9af..0541f5bfae5 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index dcdc2ee01aa..94013150e2d 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 207e52f7ef0..9978c7f0474 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 46ffb7f5431..7724e3ef991 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index 694bb73a25f..d8f968d6e5a 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index d3000bed2ed..8aab8dad2f3 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index 75c1fc97991..2ddc72a903e 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index d3e303be8f1..c6c68551ad7 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index 001cec5c97f..c423a54874e 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 3ae4218bb5c..2dca2b2551a 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index 5ce74e2f51c..ced389edc1b 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 8941d4d9a04..561142b32bc 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index bb8c486d47e..7c5811dbcb6 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index c60846752c7..2a557d5d5bf 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1727,7 +1727,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index aee3ff4df95..a71bbe1e97e 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index fb69c6d0734..49e23572c64 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -255,7 +255,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 57de5bbbd66..607a5280daa 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index fab9f5a5887..9b981f226b0 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -230,7 +230,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index b22a5c5dbbe..3b9b1c9b4a4 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 6216af005d3..39f6f316d87 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index fe4ba5fb4b3..2c8c5e2cb4f 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index b293026073e..6c8bd0f1b59 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index 0a942854ab8..215bc42c079 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 7f0b7580edc..310d77ffb59 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 2c761b80142..42bfb2575e5 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 88dae3f2477..f097d8a6966 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index e83c7febdd5..7a45976a5df 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index fe0ed2d5619..283d0c10393 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index e21a64655c9..06f39a3741c 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 7eed265d541..06bfb5bf0bb 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index 3c6d5f7916d..351ba7ff093 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 001532a5440..84cd370bb93 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 429dc7f1ea0..b67244a15a3 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index b450227ac98..f5ece9f4085 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index d9cdd3fd9c8..b22d1cb75f1 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 0fff6100ac4..5010c2c21f4 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index d9e2688b48d..9aa21368de3 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index 599a412646d..054a1d41d3d 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -219,7 +219,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index 3ee4894821e..07c3c207c6e 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index ff76ac4b264..5a4f88ac79b 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 410a9822b64..3b2e739a65d 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index effcc469f38..32b6d86a91b 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index ae99564470b..c24cb632c03 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index 30e0a209ea2..a76ceed7c35 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index c82a10bc783..9ca7dfcc901 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 75eb2e878c8..264aadbdc78 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index 5a4e959d974..2ae47aa92a4 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 67c7ff1a8fd..6faf28081d8 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -194,7 +194,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index 4e752ded300..a9376b49145 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index d105063db55..d4ef1af5b0b 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 9f69e2a816a..40d9bfd1d27 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index b7b0ad55411..079dd98eb3b 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index ded80c89def..30697f7cada 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 005f3784ed0..45ce9ec3dc0 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -179,7 +179,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 688cc46c6fc..061f6771d37 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index f7a89f8a553..e25890d8954 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 3b8eae0ac66..241b462effb 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index b52d5c17a1d..42a396abc44 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index aedc43a52c4..271f666542b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 1c11e22a9df..87e2a9f2c6c 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -321,7 +321,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index b5c50612d4e..d08119ece0b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index b6ac2b8a4df..99677fbfb6c 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -334,7 +334,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index fc150d7657b..af832684acf 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index da5fc559eb0..e6a7774a2a2 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index a9c460f34b0..80abaa9dd2c 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index f3923f52618..2fe732ca572 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -322,7 +322,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 56cecfad6d7..f51db7e7f91 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 04c83ca7eaf..857148d96d5 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 64a2085782a..e91a40e9a7f 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index dc8c784ccde..e6d5223eddc 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -339,7 +339,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index 10357a8365e..1ea13426c77 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index bcd5636f78f..570bd58e491 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -175,7 +175,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 0266b59404c..3aa7f3f6ed5 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index ba3c81e5b8a..6650559a14b 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -175,7 +175,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index 12f3e2062dd..5f366ad89a3 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 34caa531527..63e842df5b8 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -179,7 +179,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 65294766f35..9fcc98858ae 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index f02bb6a4ec0..f3e00fb77a7 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -219,7 +219,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 3f7be9c86f6..04f6180996c 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index b1b8d1bc984..dc40e328b97 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -202,7 +202,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 78056275499..d8278629e35 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index b793cebe4c4..0928d56ae91 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -206,7 +206,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index dec008b6194..1b7e2fd5d17 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 970c1e2e982..1ce5d8f5d94 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 73ef25e5299..54e52b9e138 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index f4f91bce53c..42afc8733d0 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 399676f5018..fa8811134f8 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 869349d6d53..5ec91757c08 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -196,7 +196,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index f4c5df88aa6..bc86ca33398 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 4663afa132a..cdb85f52384 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 08638927178..390be357d7d 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 0a837f997eb..c0e568afcfe 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index b4230fbc8c5..62b1c5353e0 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 223362a292b..df6c677b9fd 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index c00d7092e18..6e08c4bdaeb 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index d510069170b..b81ef08062e 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index 85c761e568c..7361ad248af 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index 1433287c654..d10e2d30e67 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index f96202cecda..7b8fc7bc67a 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 706233b8e40..09bddc42f87 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 6a761d8c7a1..17c498999bd 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index bc498bb7dbc..774d4c41881 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index e6cc3e6ba51..5f36641d99f 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 224a120e61f..b587fa0fa05 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1)