diff --git a/.circleci/config.yml b/.circleci/config.yml index 6aabbeeb7f8..4202d5407db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,7 +65,7 @@ save_bundle_checksum: &save_bundle_checksum command: | if [ "$CI_BUNDLE_CACHE_HIT" != 1 ]; then # Recompute gemfiles/*.lock checksum, as those files might have changed - cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock jruby-*.gemfile ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum fi cp .circleci/bundle_checksum /usr/local/bundle/bundle_checksum step_bundle_install: &step_bundle_install @@ -96,7 +96,7 @@ step_compute_bundle_checksum: &step_compute_bundle_checksum # updating the gemset lock files produces extremely large commits. command: | bundle lock # Create Gemfile.lock - cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock jruby-*.gemfile ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum step_get_test_agent_trace_check_results: &step_get_test_agent_trace_check_results run: name: Get APM Test Agent Trace Check Results diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index caa9dea0040..d320a3bc8ec 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 2392bca3bed..c8d2269d6c4 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -86,7 +85,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -114,10 +112,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -147,7 +141,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -155,7 +148,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -179,32 +171,9 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -222,7 +191,6 @@ GEM thread_safe (0.3.6-java) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -259,10 +227,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index 04be9facbf7..6c9a4988ba4 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 6f9eaee5ca4..5b63f518857 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1448,7 +1447,6 @@ GEM ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -1458,10 +1456,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -1470,12 +1464,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.6) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -1496,30 +1487,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1536,7 +1504,6 @@ GEM spoon (0.0.6) ffi thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1567,10 +1534,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index 61abd879e58..be331b4c16c 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index a37f4fc147a..240ec02dc8b 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,20 +56,17 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) que (1.4.1) - racc (1.7.1-java) rack (2.2.8) rack-protection (3.0.5) rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.5) rake redis (4.8.0) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -104,30 +95,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -166,7 +134,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -202,10 +169,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) simplecov diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index cb161fdd849..e6e722154f9 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index 747485ff399..b0d288edaff 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -31,7 +30,6 @@ GEM faraday (>= 0.7.4, < 1.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM msgpack (1.7.5-java) multipart-post (2.2.3) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -60,13 +54,10 @@ GEM ruby-debug-base (>= 0.10.4, < 0.12) qless (0.10.0) redis (>= 2.2) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index 5a92773428c..4b556852f84 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 8a9376dd957..8682ae56c5d 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,12 +42,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -75,30 +66,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -111,7 +79,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -140,10 +107,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index 6805077a993..4f90b94b745 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index fdb61982b89..0484bf32a07 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -42,7 +41,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -53,10 +51,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -66,12 +60,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,30 +84,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -130,7 +98,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 69c7b4da0d9..449c9ac82d3 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 8b502e0c0f9..eb151284916 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -52,10 +50,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index 7031271e77e..f076ec51da6 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 63b1bab0325..a0d39caf32e 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -43,7 +42,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -54,10 +52,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -67,12 +61,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -93,30 +84,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 0fd41438d1c..1aefe7d9a22 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 92c24d0a661..4ee4de7252b 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -206,30 +198,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index f464e4ccdb2..7e796e9df6a 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 3a277386255..eb809c8120b 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -206,30 +198,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index 0998dd57356..7e9c26211ed 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index b9bb0a29a93..4b6f2f275a2 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM http-parser (1.2.3) ffi-compiler (>= 1.0, < 2.0) httpclient (2.8.3) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5-java) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -76,12 +70,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM typhoeus (1.4.0) ethon (>= 0.9.0) unf (0.1.4-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -183,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index ba519b5bd90..cd851d3320c 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index cdcd2bc1ae8..e87190f322c 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -33,7 +32,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -52,10 +50,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index 1b869b7ccbc..0a4ce6a7696 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 77ab48808e1..c63d0af9b23 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -33,7 +32,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -47,10 +45,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -60,12 +54,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,30 +78,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -154,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index c17f59f4ccd..1a569f23dd3 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 0a690420913..9525641d313 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -35,7 +34,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -124,7 +92,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -154,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index 76013c9b5e5..d1e5f089eed 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index b4230fd1ccc..529e8b43341 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 7b23bd4c29c..3a477a041e3 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 813a7eb3212..16d49541f4e 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index d939a58ee75..aca27f9ad27 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index e9628f1db39..880d5532e24 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index 218f599c4f2..651ea9fe890 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index d1b163e8048..48187a4afa5 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,17 +46,14 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -83,30 +74,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -118,7 +86,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -150,10 +117,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index 033796f4229..c33d6dc5109 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index c63e5aaec0f..6da2e536d51 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,11 +154,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -188,30 +180,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -236,7 +205,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index a98d882fdc5..f4ca541cffe 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index fd45b5b7b00..703aace8aad 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,11 +154,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -188,30 +180,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -236,7 +205,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 30993738c31..5aa7d756268 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index a516f6f9383..7d95847557d 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,12 +154,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -189,30 +181,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -237,7 +206,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -273,10 +241,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index 17b3f40824c..5e779bed3f0 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 95f3d18e578..f0011d05946 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,7 +154,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -181,7 +174,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.1) redis (>= 4, < 5) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -205,30 +197,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -291,10 +259,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 30e87d56f54..4bf6a9ffe8c 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 7d15696c948..513cde899ff 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -83,7 +82,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -121,10 +119,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -161,12 +155,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -190,30 +182,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -242,7 +211,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -278,10 +246,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index 8281cda2434..0fa1afc8ca7 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 64bee287658..cb32cb0ff66 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -115,10 +113,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -159,11 +153,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -185,30 +177,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -235,7 +204,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -270,10 +238,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index 61ec8cb90c4..c77c23b0afd 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index f2ce37e120b..1934b7dc8b4 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index f09ebcce73d..68897cc3f8d 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index dcc7c8cf64d..f4ec0dde46b 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index 01c2b985466..fe455da1a14 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 65bdc38703b..0aec0e527c4 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,12 +173,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index ba931710032..a29a9a0ca05 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 4d4290151c1..23e99dc0ee8 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -138,10 +136,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,12 +174,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -209,30 +201,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -260,7 +229,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +264,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 740e9c2e112..873e23c0cad 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 7a420684bd8..6bbbf3e072b 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -132,10 +130,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -289,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 248da64d3a2..34f9efbf557 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 0c8444e0baa..ef5393de888 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,11 +169,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -203,30 +195,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -251,7 +220,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -287,10 +255,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 498b1bce57d..44a36e69b2e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index f3bdb2cedb1..63f71eb64ee 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,11 +169,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -203,30 +195,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -251,7 +220,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -287,10 +255,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index a2ba50a91fa..63d6cc83ea2 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index a92862df794..00cf49e8f1e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,12 +169,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -252,7 +221,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -289,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index 87ae8bd7ea5..a68103160e2 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 5fbd53774d7..1c384de0277 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,7 +169,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -196,7 +189,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.1) redis (>= 4, < 5) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -220,30 +212,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index b7f34736e29..47442328ae4 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 08e89aaf739..9664bf1fc33 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -96,7 +95,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -176,12 +170,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -205,30 +197,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -257,7 +226,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -294,10 +262,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index a03f4b03fab..c9de9356354 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 732470afe57..c377e38a1c0 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -128,10 +126,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -174,11 +168,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -200,30 +192,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -250,7 +219,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -286,10 +254,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails_old_redis.gemfile b/gemfiles/jruby_9.3_rails_old_redis.gemfile index 27f0816fe3b..a839e79b61f 100644 --- a/gemfiles/jruby_9.3_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.3_rails_old_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index 73d4f8c8417..5f179afa342 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 938668ceb55..0c659204a7f 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -142,10 +109,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index 3a6f531faeb..e90a14494fb 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 83755a7bd9e..3453a1cbbf5 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -142,10 +109,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 84c84eb6d72..b5824c32d8a 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index f06f5d404df..92757f668f1 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -37,10 +35,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -49,8 +43,6 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -58,7 +50,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index b36f22ecfa5..8d0dc7e4ece 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index af7305fa4b0..904f26d7f48 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -30,7 +30,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM jdbc-mysql (8.0.30) jdbc-postgres (42.6.0) jdbc-sqlite3 (3.42.0.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -69,10 +67,6 @@ GEM minitest (5.20.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -81,12 +75,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -149,7 +117,6 @@ GEM thread_safe (0.3.6-java) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 67433e5936b..32902aed35c 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index a36e92a7374..2dcf785a788 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index 6daa2980f59..ce2a99a113c 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 131483136fe..852888c0fa6 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index 33903f69cc7..3c2eedb98ef 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 56f6447f1fc..a91b024f025 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -54,7 +48,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -62,11 +55,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -131,7 +99,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index d996364285d..1b6226e0f1d 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index f7c95b0bbac..51215c8df8c 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -64,11 +57,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index f7408eb0dea..2ab238b25d4 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index 99bf91b679d..f8c15c4bc98 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (10.15.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index dd638c1e99e..0ce879b28e4 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index 4838eb08fe6..521548836e1 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (11.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 35370e3afbc..37742d718d0 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index baa10fa1737..1dcdf1af90e 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (12.6.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 1408fdc6b85..b57ca37efcc 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index ae3a487f929..4e0d4932a98 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (7.1.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index d1ea1e6c0e2..4e5f5f74408 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 6fd47e9892f..f4bdf4eb587 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (8.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 109b9959e43..cf79371164b 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index a9a63886328..26f5914a7e4 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (9.4.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index ee6d27be27f..65b1abda99d 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 354992074af..b86db5c8601 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index 6a095bab796..10309f0512e 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index dad776c5c37..9fafa3472e3 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 91265afc4a4..99c35071501 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 4612a36fa33..3ed54f9f1b0 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -81,7 +80,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -109,10 +107,6 @@ GEM nokogiri (1.15.4-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -144,7 +138,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -152,7 +145,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -176,32 +168,9 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -218,7 +187,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -256,10 +224,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 97e0afcb90a..14f7eb86205 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index aae302257a6..5ecdd5b172d 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1448,7 +1447,6 @@ GEM ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -1458,10 +1456,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -1470,12 +1464,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1497,30 +1488,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1538,7 +1506,6 @@ GEM ffi strscan (3.1.0-java) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1569,10 +1536,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index 24ee7bdc687..7e150fe4271 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index ddedc86899c..b9599f9dc24 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,13 +56,11 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) que (2.2.0) - racc (1.7.1-java) rack (2.2.8) rack-protection (3.0.5) rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -77,7 +69,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -106,30 +97,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -169,7 +137,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -205,10 +172,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index 17467a3c477..c3776718de8 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index cd4830bacb1..a5eb7712a50 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -31,7 +30,6 @@ GEM faraday (>= 0.7.4, < 1.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM msgpack (1.7.5-java) multipart-post (2.2.3) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -60,13 +54,10 @@ GEM ruby-debug-base (>= 0.10.4, < 0.12) qless (0.10.0) redis (>= 2.2) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index eadbd244a6e..2cbf46d1357 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index e9e5956a0b5..10d05123fd8 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,12 +42,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -75,30 +66,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -111,7 +79,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -141,10 +108,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index a3ab55b7c4c..4349a490284 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 58fd61f9322..fd8baa1ddc0 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -57,10 +56,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -70,12 +65,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,30 +89,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -133,7 +102,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -165,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index a570d37a332..e457e2d23f5 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 5b6662b7957..403fd0f3b46 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,10 +54,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -68,12 +63,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -95,30 +87,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index e7d4ec78039..68c48468192 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 60cf110d825..1ce368e870a 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -57,10 +56,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -70,12 +65,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,30 +88,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index b5dde5a3246..1875fc96980 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 166fe4df7ed..1e163a96b9f 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 61e2581778e..e729d469a9c 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 7d20a779447..c33a0026e42 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 3f2658ed0d1..4c04f5baaa3 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 7bd091ca78b..8efca7fea96 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -97,7 +96,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -135,10 +133,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,11 +174,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +225,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -293,10 +261,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index eb0ce13dd83..bb13661a6d8 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index 883430ada30..c2e108cb476 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -97,7 +96,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -135,10 +133,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,11 +174,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +225,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -293,10 +261,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index a4d037b1d29..58f77948803 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index cc00a23e155..073e39e6ace 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -99,7 +98,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -182,11 +176,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -210,30 +202,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -295,10 +263,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index b1feea035e1..33287df0391 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 2cfb36dcd97..469ace04f52 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM http-parser (1.2.3) ffi-compiler (>= 1.0, < 2.0) httpclient (2.8.3) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5-java) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -76,12 +70,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM typhoeus (1.4.0) ethon (>= 0.9.0) unf (0.1.4-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -184,10 +151,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index eef39c3687a..e3dd78c43c9 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 66611d2971b..9ebba407af7 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,10 +54,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -68,12 +63,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -95,30 +87,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index eb0e9dcd7d4..0ea85b9ba48 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index f9d5de81b29..22c10fda3bf 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,10 +49,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -63,12 +58,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +82,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +95,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -158,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index 145c1e0a7b7..29a7d68cb28 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 2e5086bfebc..a281f0cb0fa 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,10 +51,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +60,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,30 +83,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +95,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -158,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 249bd653194..312cffb51d9 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index cc65b046bae..4569b3ebc0a 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index df9d7a24618..55d8ebadb0e 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 3f1306c029f..ced5234ec8f 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index 5ee90b356d4..ee218e298d4 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 7641b325363..ef234610b59 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index da8a5ffbd50..9247fd70f37 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index b064a457822..c1181080d03 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,17 +46,14 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -83,30 +74,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -118,7 +86,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -151,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index e1f7923f7d4..4fa906b1d43 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index ba1581fdb20..6ac272814c8 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -76,7 +76,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM i18n (1.14.5) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.30) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -141,10 +139,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -186,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -214,30 +206,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -300,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index 0406806df55..61353511a16 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index 31ee0ba16df..ae6ee885859 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index ef476806239..7d63415c047 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 5f914c68c70..c207ac0ab38 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,12 +173,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -294,10 +262,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index 46d61e6eb49..6bf0f4e21ce 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 658c69913df..5cd283351a8 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -138,10 +136,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -184,13 +178,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,30 +206,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.3) @@ -268,7 +237,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index a96316b3a62..b8cddcd6532 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 9c2ad66f63d..376068b2799 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -132,10 +130,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -291,10 +259,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails_old_redis.gemfile b/gemfiles/jruby_9.4_rails_old_redis.gemfile index 70c854e9c6f..bf5ecdeb8a5 100644 --- a/gemfiles/jruby_9.4_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.4_rails_old_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 135688c0834..994f6ab0975 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index a3f6b1b8efb..1fd865d4d9a 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 201c60e72a6..f0cc3cbddec 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 08fa909198a..2bcce7fec1f 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.0) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index 0f8a1d8d57f..4e349bcfee7 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index c1e31caa44c..57639c34265 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -37,10 +35,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -49,8 +43,6 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -58,7 +50,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -147,10 +114,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 017ac9a1026..6a06fb950ec 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 9ac6875a982..6c16f9b61ac 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -31,7 +31,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -58,7 +57,6 @@ GEM jdbc-mysql (8.0.30) jdbc-postgres (42.6.0) jdbc-sqlite3 (3.42.0.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -71,10 +69,6 @@ GEM minitest (5.24.1) msgpack (1.7.5-java) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -84,12 +78,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.0) - racc (1.8.0-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -111,30 +102,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM strscan (3.1.0-java) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -189,10 +156,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index a029e56a2cd..860be6b7468 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index d5aad0f1d1e..7d2bc7f0e82 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 1d17052a76d..9e810eb56a3 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 3580cedac2c..13ae36c00d1 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -53,11 +47,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -67,7 +59,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -94,30 +85,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -169,10 +136,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index b944b0887bf..4a7127fdf2e 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index a96480fcf3f..67e0828dbc2 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -54,7 +48,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -62,11 +55,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -131,7 +99,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 8bca9f0555c..b205546e327 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index dd9a3354ba5..3af128dd3c4 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -64,11 +57,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index dc3bc9410d6..33e9e19653e 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 07d986251fd..e1363e13c52 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -66,11 +59,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -136,7 +104,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index d45cf068582..b8d4fc3298d 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index e7f4ea7ba53..23f90427a49 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (10.15.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index 30aee1b666a..5fba798c62c 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 960974bd8d8..c6add26ee57 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (11.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index 5351d08d0ec..2fd79b90f65 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index d963a2f6f18..0796b1799e0 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (12.6.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index d2a4adc5717..aa180405431 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 91170a28688..a8b3a61391e 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (7.1.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index 7913f9562cb..e9693f25f87 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 25173238033..bf6c766abb2 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (8.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index d4bc7a64524..fa9b3217d0a 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index add44bc28e0..3835f102343 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (9.4.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 738cdc7a811..3ed8a404e44 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index e4bbdd6557c..b9ee5eb6223 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -144,10 +111,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index 88b7ec30986..c44469b901b 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 67f03ee0d2a..d5010e9430e 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -144,10 +111,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index 6a09f4856a6..fe40adc5570 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 513400fd561..25e4b5a3160 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -94,7 +93,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -127,10 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -162,7 +156,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -170,7 +163,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -194,31 +186,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -234,7 +203,6 @@ GEM thread_safe (0.3.6) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -275,10 +243,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index d23f64885c6..bedf1f3624f 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 53728421e2e..1e561b6e77e 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1582,10 +1549,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 071e59dfa32..3247649acdd 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 7d063127207..a3f9fd77094 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.19) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.13.1) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.5) rake @@ -95,7 +89,6 @@ GEM redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -124,29 +117,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -227,10 +196,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) simplecov diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index 50f9e78d306..ec8047f9b61 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index a8be46cb89f..4b308c55543 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index bd22732f425..c0ec3654d5e 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index ea6af13542c..a7586d77091 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -152,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index 8c0b6dd37a3..43f0be184dd 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 7fa1a7fcc4b..5aa268617b2 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index d6cf6d0e779..c805952d263 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 02d7dc5e450..d58752294c9 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -49,7 +48,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index 716b9363a89..e3ba378c37a 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index 73d535f7ebb..ea9b73d4ad3 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -51,7 +50,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,10 +63,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index d7a6e2e9863..41f4fc73b09 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 047b0c2966f..0376db20a83 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -221,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index dd08a725fe9..3ed526dbbcb 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 811dec26f75..5bd8885c295 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -221,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index 293fde87aa5..25a2f807c72 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 2f1cd1c3424..0e23745ce2c 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM rack (>= 1.0.0) url_mount (~> 0.2.1) inflecto (0.0.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -137,9 +135,6 @@ GEM net-smtp (0.3.3) net-protocol os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -153,11 +148,9 @@ GEM rack (2.2.6.2) rack-test (2.0.2) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -179,29 +172,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -215,7 +185,6 @@ GEM tilt (2.1.0) timeout (0.3.2) transproc (1.1.1) - unicode-display_width (2.4.2) url_mount (0.2.1) rack warning (1.3.0) @@ -253,10 +222,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index f0465c4837a..875681d2e17 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index a18f10ab564..311ef6cf91f 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -200,10 +167,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 1a99748f2d1..5305db0aa9f 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 7a44c869cec..c29a270e147 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index 6c492eebcde..5bb495e022e 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index ba710a9aa49..c8d9f81a007 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,10 +56,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -73,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index fe2793dc660..b15f5a5355b 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index 426734f8662..86958c2b530 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -43,7 +42,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,10 +58,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 5d67345a1fc..5b9bbcab434 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index eebd5e1cd52..2e044dd4f41 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 31d41f53cac..e477603d0c6 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index c487afac955..c780f7fb906 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.12.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index 652843fc4b9..63843041604 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index cd3d0eb648b..81e691003fc 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index ec0147d198e..b078cd5bc1a 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index bed1678e123..ed8207eb0f3 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 6777d994708..9edae54865d 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index aed1bde163c..66af0b2e73f 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index 1f791c94be3..15f1f9a59d0 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index ef26bb05697..d06693c1817 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index ad8a2f84b23..7b8d713056c 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 49d57add690..af311376764 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 4e46002aa59..7a8523e485d 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index b2025347c16..40a4aee5437 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index fc43c4c0859..cac4785c9ff 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 8d2faae11fb..445e6cdbb2b 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,12 +164,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -198,29 +191,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -243,7 +213,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -283,10 +252,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index 764e629470a..673743a7b1a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 f6febd8ca81..0bb5b3f46f9 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,7 +164,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -190,7 +184,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 2c68fc14f9c..e29d796b734 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 2e3778283f9..f1aa754d1da 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -85,7 +84,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -170,12 +165,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -199,29 +192,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -248,7 +218,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -288,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index aa090ddb522..aacd897f156 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index d760d8a36e1..19073e1ab2f 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -122,9 +120,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -168,11 +163,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -194,29 +187,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -241,7 +211,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -280,10 +249,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 9eb0e1aac94..aaddcb06690 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 100c8631d1f..daabbdced97 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 9245911a663..e292f2e2c42 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index cb6a8d33ede..8df7c2bd567 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index 2c2acd506af..864965a8ef1 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index a97eed2f7e9..57fdb2bda9d 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 9bc6c8ced4a..e8e6afe2cc6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 85f4a389019..9689f28a0c6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,12 +184,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +211,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -266,7 +236,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -306,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index 148925e15de..d59528e31b7 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 8350fef872e..a86102b016b 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index 02a39c47964..22a6fd29e52 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index e66911c0e1f..5bd2c931b3b 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 7e3ea48143a..35843cd37ec 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 201d5011b42..9ce6e7e7b1f 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index 38b38382381..659fa2eb5d9 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index c5757f07de1..846e5857910 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index b25d109e8c0..b17d742e88b 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 4f2a49047d9..712ae43853d 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,7 +179,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -205,7 +199,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -229,29 +222,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index 2176dd02611..5e6cb3a7c16 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index d8130d4a3f4..6181e92d1a8 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -98,7 +97,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -263,7 +233,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 40f2e53688b..9a6afa8fbae 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 636229d497e..66991e1bfac 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -135,9 +133,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index bc0b941b06b..f5ce43214f8 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index b2c72966eda..8933632963f 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 01a5da52fc4..d7c2f96b065 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index b877afb416c..41b903cdacb 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 0dcf84cb2da..e2e32cb29c7 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index e4f85389222..67fbcef7901 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index e7f2ce310ab..d70da47b0c7 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index 40d065e6a69..529bb878854 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 77f1bdd7673..1e36ad194e0 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -53,7 +52,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM thread_safe (0.3.6) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index 1d9a167eb00..b5b43b5fdae 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index ff019c17852..f60f3fab171 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 6fce168aefb..6d806835bb0 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index 018c17996d9..c0997d0517e 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index 111eb91da35..621ff093714 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index eb0fe3a5f37..3ac7985604a 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.8.0) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index 23cf27863e7..15a4d64e95f 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 9ad6c0f1287..a2228005aca 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.8.0) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -178,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index 6e662ebd7df..9f057403bf5 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 33b2a726986..cde2efeb27c 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index ba919253b84..1436623888c 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 1005f19282e..7f88df5a034 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index 554b985605b..fa6df5ee62d 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 0b05cfe37c3..cf6d21e6c0f 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index 081c9bc5b55..402d284d148 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 527d96dc0ba..09aee3f41bf 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 23e2ed3e699..1e639e2beb6 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 2edecd18493..689bec535a3 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index 2d7aa37dccc..14e6c67e1f0 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index 50578a14122..e6666fa5ad0 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index 445fa83b2a6..e67023efc98 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index ab70a923c72..dd9d7bfa776 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index d470de67a8f..96e42d51921 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 817e8abde60..61082055c1a 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index d36adf61bdf..a9d50f158f2 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 57e306f993c..c948d7c63a6 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -90,7 +89,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -123,10 +121,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index ee94de7df40..17e02fefc18 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 704e97ed24f..7dbe70f88c3 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1582,10 +1549,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index fdc0206e1f0..eedda585e3a 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 514da5bd12d..e23b2ef319e 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -95,7 +89,6 @@ GEM redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -124,29 +117,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -226,10 +195,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6) simplecov diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 830240a5937..354e97e39a4 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 812a7585e44..8bbf070cb69 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index e5d064da8bd..4fb04799c63 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index b003e90f7d3..7fde72fcc35 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -152,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index cc5b5c17f29..96c606fa8d3 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 179fc56a8ec..99a30411942 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 925ae8a29c0..93abbf31b41 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 6511a551e29..3264d85b448 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -49,7 +48,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index b13b4800c5f..f8a253836a2 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index a91c387cea4..d67034b519a 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -138,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 2600f4886bc..5f1da96a46c 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index f3ae9df59e7..e2fa2703014 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index b0f02a5b783..00a0ddcdc1c 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 1a13c7212f7..1f88198c0a0 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index c54e22d4847..3c79c693e5f 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 460dccbb2a6..a0678483399 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index a366f5a3da6..887884938d4 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index dc32262a8e9..421118831c7 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index 0995e8a34ea..ce135f24733 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 7c3cc33063d..a49739ef2d3 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -196,11 +190,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -224,29 +216,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -269,7 +238,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 64fb3053933..63c066cb67d 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index a69d9f116f3..6d6cf387423 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM rack (>= 1.0.0) url_mount (~> 0.2.1) inflecto (0.0.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -138,9 +136,6 @@ GEM net-smtp (0.3.3) net-protocol os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -154,11 +149,9 @@ GEM rack (2.2.6.2) rack-test (2.0.2) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -180,29 +173,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -216,7 +186,6 @@ GEM tilt (2.1.0) timeout (0.3.2) transproc (1.1.1) - unicode-display_width (2.4.2) url_mount (0.2.1) rack warning (1.3.0) @@ -255,10 +224,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 4eb06a6c37f..15f7b84977f 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index bda7c85ba41..755d6912d55 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -200,10 +167,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index b0b72a794f7..219492f7b2b 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index a3900f5e341..1e9fb19e23e 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index 601d4ff4049..cb3dc7b3e74 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index 42604bc4bc9..ee9bac1fa97 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,10 +56,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -73,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index ff83be947d3..8750f1886dd 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index 6b0ea143731..fece29c451c 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -42,7 +41,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,10 +57,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +68,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -167,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index 480ef887726..4f0a6416f7f 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 220f626f989..b34b6e0bfd8 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index a29c3d0fd84..ffabf3314e9 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 405ab83ff35..75506046c27 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index 6fa965f9d3e..7921d2328c7 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index ab082541ec4..d2d3d109669 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index 79c90e1e5a5..aad5aee47d2 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index aae73a3dc3a..d426605c5f8 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index 3ccae012106..989d876c619 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index aa28b3b5f46..b59371f9534 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index 7ff05140ed0..007a780f6e3 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 826ee7fa80b..3bf4b0ca73a 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 70d9b634096..7d163834702 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index 1927ebc8bd6..424d090d00e 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index c4b319a96aa..1bda962ad26 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index a0ea3a3abfc..866c91a7f58 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index df474e5b2fc..8c78cdad294 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index e79e5d2fd0e..1dce5094937 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,12 +164,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -198,29 +191,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -243,7 +213,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -283,10 +252,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index f6d1d494949..293a1e0f638 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 1610407bcb1..920afd58914 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,7 +164,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -190,7 +184,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index ade2b5d3e45..523a5466cff 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 90c6cfeb000..15b9379b1cd 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -85,7 +84,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -170,12 +165,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -199,29 +192,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -248,7 +218,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -288,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 0ef9f6dd2ea..60ec8aa5050 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 0503c9bd8f5..236f3e092d6 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -122,9 +120,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -168,11 +163,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -194,29 +187,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -241,7 +211,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -280,10 +249,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 6a82159132f..e4fd2aef5c5 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 9ef57fd6c7a..f4ef59b90c9 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index 3dff9c0b1e8..c1117623e53 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 4bb384d90ed..2d510daa38c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index e5298911fa1..c6228e2f081 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index f9e447a252f..6d5a71141eb 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 6fe20f31935..227afd93ffd 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index a113c3f2c22..acdd39e7843 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,13 +184,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +212,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (7.0.6) concurrent-ruby (< 2) connection_pool (>= 2.3.0) @@ -268,7 +238,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -308,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index 3d04beee500..d52a1837f8d 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index a52add233a7..2de66475556 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 4306b203b08..95c453457dc 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 096565fc7f4..1a276292e0d 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 624fadec311..747e43290ed 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 6680001093b..f5e984a884b 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index c7a94a70854..edf1bd0be3a 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 07dac23a8ac..5f8056da84e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 68fb53124e5..9a2604b64b5 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 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 b6c75246c31..8d6092aad53 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,7 +179,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -205,7 +199,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -229,29 +222,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index f6807d362e1..355ea79888f 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index d503ae4bf5f..a513a7bddf2 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -98,7 +97,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -263,7 +233,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 37c0a014df6..384c5282522 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 222853ed80e..11dbc2b3b4d 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -135,9 +133,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index d2cd6c776c4..5393fac75a5 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 4fdb0a3e20e..3b1520ee71c 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index a520e124d1e..02fb05b5365 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 87d12bcb00f..5423f07db2d 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 13e4de10f2f..6772d2c56b1 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index ed0bd01e3da..519e59b5a40 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index a17ea16b325..f2ebdc39569 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index ea8c91e9917..e175f478d32 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 12b310265f4..5072a17bdcf 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -53,7 +52,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -150,7 +118,6 @@ GEM strscan (3.1.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -190,10 +157,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index e110aff2055..3fcbe383b22 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index 8debb0dd245..fc30c5ed369 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 4d2d01b1109..1910132b24f 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 34acd83239f..995c07400ff 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 04052ec508a..cfd803e3a48 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 408f29e4c42..3abee95c508 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index 43412fa8e42..44c319cae28 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index b6262536a44..3c30ec68483 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -178,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 477c413ba34..29d5823c501 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index d8bbb6d6ce6..4657eb8b3b8 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index bf0e3f50581..e3a73dd30f5 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index d6931ae5c8e..473a20c4c60 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index cfe9022c436..92fdd457283 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 2f4fd15c86c..17c52f31848 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index 39c5578f5e8..16f544e3334 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 054c14462ac..d4936fbc7d4 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 3b4305f7b5d..aef615a80da 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 3bbf04b040b..c67899da9ca 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 43261b0b04b..e347337b220 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index 05c052453dd..ba15840ee83 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index c66ca37d5e7..65ba27eccab 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index c2789740ce5..7b0fc89c076 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -156,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index 1c532df57a5..d5c43966388 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 5fdd34270b2..8eb59347b08 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index db3b00b1212..52e48cdce09 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 20e5cb9a0b6..0707891813c 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -89,7 +88,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -122,10 +120,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -272,10 +240,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 117c2802c77..b550f6d66c8 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index bf38915b28f..66e5937df98 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1583,10 +1550,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 27c9fcb27af..7e772996d4c 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 95c66017d8e..f71cdf96700 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -97,7 +91,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -126,29 +119,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -189,7 +159,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -230,10 +199,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index a8b5989607d..e699baa3624 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index e1e2b8556b8..c14433feb28 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 6bbf8a35a3a..93c4fd08e14 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 2b526121c63..c5e9855c351 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index 27a5b792c13..b999b039f27 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index bbdd8b436cd..305e9db99ef 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -110,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -143,7 +112,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index e9f5862bf00..ffd2a5eb21e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 8fdd7fb7a65..1fab6478d8c 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index aa74ecf0e43..416bb546db6 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index eb0844a6960..e5db40e6313 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +101,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index 1129ecc6f7b..af39dc1df59 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 5effb0e481b..7712c12ff4a 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index c3d845c64c7..6fc8f6a254b 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 957916e7cb1..da142c74173 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index a269ccb2e5b..cf85a8a06e4 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index dcca211e4d3..07799e52d34 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index 31a6fd2dfd5..c3652170170 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 2b980bbad82..2db42687c6e 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 7ada86e587f..43a44f7ad9b 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 9d91bbad304..22a6ea54083 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -107,7 +106,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -150,10 +148,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -197,11 +191,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -225,29 +217,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -270,7 +239,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index 8a94e8fd297..801baf19d2b 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 98fa8e5a4ff..d1ef944344f 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -201,10 +168,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index 7aa53ff3a5e..9bc4540cc88 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 93a6694901e..51f5d706c18 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index eb1eebddf07..048682c6d39 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index cff16d10f78..83f2cc7fc75 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -61,10 +60,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index ab01d0bbaec..c446e02ce35 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 022c7c10122..465311cca9b 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 528eb6281e9..4df1bd1ac54 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 6ea0eb1adcc..e47f2bce133 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -166,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index fa03f2ac546..739fffd9e84 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 4fe23161d30..77e6712197b 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index 1e8707a988d..baa5a534a4a 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index f7402877031..4a4610017bb 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index a08797d4ee8..60d6e96d706 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index 8581a5a787b..aad48dc0637 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index 5e4535a8b53..886cbbbc6f9 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index a3677b94285..54642477f63 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index 97cc0b6d206..f5234a7e2ec 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 6f38a2f3598..0970fc0beea 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index b9708f122a2..027346d0cf5 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index 0522ab7982e..ddad83d3cb1 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 2f162bc5eb8..e0f5aeffa1d 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 804905291f8..b3a789e6dc9 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 4ae4cc24db9..90eee1e65e1 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 17f8e355f3f..84f20c67799 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index 280abf0b030..f9065004438 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 943dc636515..260b24d89e6 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -193,13 +188,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +216,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index e548fa50b3c..0bcca5c73f7 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 269309a30d1..558f1e3e407 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index b9baf1a6592..51d8d5ca920 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index c0b05cc8ba7..e36f2d8150d 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -105,7 +104,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 2e32b1a98bf..9166028a3a0 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index 57086df0100..4315951ff32 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -297,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 12ebea780d0..6123609d84d 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index c415c69835b..d4bb81cbd9b 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -126,7 +125,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -165,10 +163,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -220,13 +214,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -250,29 +242,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -288,7 +257,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -327,10 +295,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails_old_redis.gemfile b/gemfiles/ruby_3.0_rails_old_redis.gemfile index 3cc2e136201..3118c34d603 100644 --- a/gemfiles/ruby_3.0_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.0_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index c8ec64ced3c..193f0fcf9cc 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 81acb1aaba5..0167a37015a 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index 018259e6afe..15ad6b2febf 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index 4ec56cc9610..d5eac0ecbe0 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index 3323ec2baf6..5c4ee1a0eb9 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 1b063fca7d5..f45011d743c 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -159,10 +128,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index db5bea183f4..8a553116e94 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index f199372a978..966f20e5687 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,7 +51,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,10 +67,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -84,12 +78,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 47a7c231923..26b00162274 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 14c5736ae5a..d0187dabfbf 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -177,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 394dba4f204..09a4784be42 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index ab7bf24a9a6..38181381d14 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,9 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +63,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -78,7 +72,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -105,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -145,7 +115,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -181,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index ec4c1607ef4..aff98433b32 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index df14d7471ee..db461cf234d 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index 954dbdbe27a..de04f81dd11 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 01bc4739f0b..8333705f46a 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 5c60b05e3f3..4d40235e094 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 86536da465d..60612bd4b9e 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -79,11 +72,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -146,7 +114,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -182,10 +149,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index dc1a588b06c..f2ffd9efb02 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index b4e72d75369..d157905130f 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index c91d810e684..3c650142390 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index e0027c0db0d..1be39ea683a 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index 3199f19a48e..fd88c55b26b 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 26e2af3f237..a39844a6059 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index 10fcf73e02f..435abeaae7e 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index 18ec914fa03..b0ccb693ddf 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index 84f1d26e650..ce21f3c93e8 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index f2caea0da16..5764c54b7fb 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index 9035d9a3699..4e39d862013 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index a3f400045e5..d2ef1403831 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 0e4caba9e48..98dbcf511ff 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 10d85c80079..9a1939adeb6 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index aa082ccb652..2e58c1c1a02 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 820ce2199d0..74afdd62805 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index db3b00b1212..52e48cdce09 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 20e5cb9a0b6..0707891813c 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -89,7 +88,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -122,10 +120,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -272,10 +240,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 117c2802c77..b550f6d66c8 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index bf38915b28f..66e5937df98 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1583,10 +1550,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 27c9fcb27af..7e772996d4c 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 95c66017d8e..f71cdf96700 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -97,7 +91,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -126,29 +119,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -189,7 +159,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -230,10 +199,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index a8b5989607d..e699baa3624 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index e1e2b8556b8..c14433feb28 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 6bbf8a35a3a..93c4fd08e14 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 2b526121c63..c5e9855c351 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index 27a5b792c13..b999b039f27 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index bbdd8b436cd..305e9db99ef 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -110,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -143,7 +112,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index e9f5862bf00..ffd2a5eb21e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 8fdd7fb7a65..1fab6478d8c 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index aa74ecf0e43..416bb546db6 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index eb0844a6960..e5db40e6313 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +101,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index 1129ecc6f7b..af39dc1df59 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 5effb0e481b..7712c12ff4a 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index c3d845c64c7..6fc8f6a254b 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 957916e7cb1..da142c74173 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index a269ccb2e5b..cf85a8a06e4 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index dcca211e4d3..07799e52d34 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index 31a6fd2dfd5..c3652170170 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 2b980bbad82..2db42687c6e 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 7ada86e587f..43a44f7ad9b 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 9d91bbad304..22a6ea54083 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -107,7 +106,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -150,10 +148,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -197,11 +191,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -225,29 +217,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -270,7 +239,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index 8a94e8fd297..801baf19d2b 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 98fa8e5a4ff..d1ef944344f 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -201,10 +168,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index 7aa53ff3a5e..9bc4540cc88 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 93a6694901e..51f5d706c18 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index eb1eebddf07..048682c6d39 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index cff16d10f78..83f2cc7fc75 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -61,10 +60,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index ab01d0bbaec..c446e02ce35 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 022c7c10122..465311cca9b 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 528eb6281e9..4df1bd1ac54 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index 0028c265354..8c8d9d506e7 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.22.0-x86_64-darwin) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,9 +62,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,11 +72,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -172,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index fa03f2ac546..739fffd9e84 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 4fe23161d30..77e6712197b 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index 1e8707a988d..baa5a534a4a 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index f7402877031..4a4610017bb 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index a08797d4ee8..60d6e96d706 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index 8581a5a787b..aad48dc0637 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index 5e4535a8b53..886cbbbc6f9 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index a3677b94285..54642477f63 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index 97cc0b6d206..f5234a7e2ec 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 6f38a2f3598..0970fc0beea 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index b9708f122a2..027346d0cf5 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index 0522ab7982e..ddad83d3cb1 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 2f162bc5eb8..e0f5aeffa1d 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 804905291f8..b3a789e6dc9 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 4ae4cc24db9..90eee1e65e1 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 17f8e355f3f..84f20c67799 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index 280abf0b030..f9065004438 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 943dc636515..260b24d89e6 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -193,13 +188,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +216,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index e548fa50b3c..0bcca5c73f7 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 269309a30d1..558f1e3e407 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index b9baf1a6592..51d8d5ca920 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index c0b05cc8ba7..e36f2d8150d 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -105,7 +104,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 2e32b1a98bf..9166028a3a0 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index 57086df0100..4315951ff32 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -297,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 12ebea780d0..6123609d84d 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index c415c69835b..d4bb81cbd9b 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -126,7 +125,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -165,10 +163,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -220,13 +214,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -250,29 +242,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -288,7 +257,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -327,10 +295,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails_old_redis.gemfile b/gemfiles/ruby_3.1_rails_old_redis.gemfile index 3cc2e136201..3118c34d603 100644 --- a/gemfiles/ruby_3.1_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.1_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index c8ec64ced3c..193f0fcf9cc 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 81acb1aaba5..0167a37015a 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index 018259e6afe..15ad6b2febf 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index 4ec56cc9610..d5eac0ecbe0 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index 3323ec2baf6..5c4ee1a0eb9 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 1b063fca7d5..f45011d743c 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -159,10 +128,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index db5bea183f4..8a553116e94 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index f199372a978..966f20e5687 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,7 +51,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,10 +67,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -84,12 +78,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 47a7c231923..26b00162274 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 14c5736ae5a..d0187dabfbf 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -177,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 394dba4f204..09a4784be42 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index ab7bf24a9a6..38181381d14 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,9 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +63,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -78,7 +72,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -105,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -145,7 +115,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -181,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index ec4c1607ef4..aff98433b32 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index df14d7471ee..db461cf234d 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index 954dbdbe27a..de04f81dd11 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 01bc4739f0b..8333705f46a 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 5c60b05e3f3..4d40235e094 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 86536da465d..60612bd4b9e 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -79,11 +72,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -146,7 +114,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -182,10 +149,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index dc1a588b06c..f2ffd9efb02 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index b4e72d75369..d157905130f 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index c91d810e684..3c650142390 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index e0027c0db0d..1be39ea683a 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index 3199f19a48e..fd88c55b26b 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 26e2af3f237..a39844a6059 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index 10fcf73e02f..435abeaae7e 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index 18ec914fa03..b0ccb693ddf 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index 84f1d26e650..ce21f3c93e8 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index f2caea0da16..5764c54b7fb 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index 9035d9a3699..4e39d862013 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index a3f400045e5..d2ef1403831 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 0e4caba9e48..98dbcf511ff 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 10d85c80079..9a1939adeb6 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index aa082ccb652..2e58c1c1a02 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 820ce2199d0..74afdd62805 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index cd781e2f211..485d3740f23 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 738d07fb99d..a29003e80c0 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -88,7 +87,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -121,10 +119,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -155,7 +149,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -163,7 +156,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -187,31 +179,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -226,7 +195,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -267,10 +235,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index 68d1007828f..be6c26e7a4d 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index fd8f2e26f4f..18635161389 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1455,7 +1454,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1468,10 +1466,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1479,12 +1473,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1506,29 +1497,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1544,7 +1512,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1578,10 +1545,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index 6dab61251d9..07d57a70775 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 34b58394d1f..0f652e9bd8f 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -48,7 +47,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,9 +65,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,7 +78,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -93,7 +87,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -185,7 +155,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -225,10 +194,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index a80fa0f9abb..ae3bba41c9e 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 4e51d3c0321..94365bca049 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -44,7 +43,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,9 +62,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -91,12 +86,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -118,29 +111,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -167,7 +137,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -205,10 +174,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index d55b982d4ab..891044671de 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index f8c3d16aa48..1ac0a35c98d 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,11 +51,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +117,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 09efed3a336..27b8e6b434b 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 4d5db707a82..9d470a966b1 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -139,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -174,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index 449ac43f845..aed5ebc4c02 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 9fe903a93d6..2d14a3cb734 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -65,10 +64,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index f9405972c8a..badcfc73421 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 2f8317d4eac..dfdc838555b 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index edb5898b51b..9d142953a86 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index c04c11d02d7..132e3b1c694 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +230,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -301,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index f1eb85dfcd0..d066b71b009 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 78f50987089..ee3d929d020 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +230,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -301,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index 4b799796f7e..0f2e84132b7 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 441d3c7ad9c..d8f7bec7884 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index a9364961cd4..5da99d6a19f 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 191e5edf623..9e5067074d3 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index f667a0f732b..b81a2ff54c4 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 3691317f575..1e1f8252a2b 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index dc32cc47097..e6b82f3cce1 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 7cb0a1918c4..8ae54597405 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,7 +54,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -75,10 +73,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -118,29 +109,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -157,7 +125,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -196,10 +163,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index de901141719..c45d76e4e2b 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 986fc480a5f..95805bef67d 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -65,10 +64,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index ea9d740c6a2..2185f8aafc9 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 3549607c9ed..5cbea336efe 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -60,10 +59,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index e7ed9c1100f..f723c9243e7 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index ec15305f3e3..7c38ac74612 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -62,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index b0ab8f1f286..be1276e89ac 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index bf64137f2b2..7faeda4c711 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,9 +56,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,11 +63,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -94,29 +87,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +97,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -161,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index 9843af97d99..b99812d76bd 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index 003e96fdbcc..aa2f6a66b22 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -82,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -108,29 +99,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +108,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -175,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index fc8a53898b2..94d774655b6 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index ac39b775d17..3d534cdfb69 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 5f0e00d9f29..2590776110e 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index f8387625633..89209a88fc0 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index a629b8caecb..6bd7ef3ab7f 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index e05b975097a..2e28842761d 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index ec624ba27ec..7f26c518698 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index c7ed7113fd6..91d2940d5cb 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index 3a88c449ac4..d0a43aab470 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 54727e77877..d369989042c 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index e83b417adff..17811ef3980 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 3d946964139..1b87792b1fb 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index da07d92f49d..071f6c4d2c7 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 8f19a28ea3b..1547a6dd32f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index b65755b2159..98601cf69b3 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 733a999ed54..94b4088e603 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,13 +184,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +212,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -270,7 +240,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -312,10 +281,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 7f42665e2bf..532d5992925 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index c34fba37f64..b057b5b0988 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -138,9 +136,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -255,7 +225,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 286747986d4..483c5c6c05f 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 712eb0ff71f..d34a182cfad 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -104,7 +103,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +211,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -305,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index a24b15ca518..6d0b2c3573b 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 8b0b8e0e309..08cb11a5ab7 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -217,29 +209,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index 006dafab72d..cd45bf1a819 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index 943bd28c2dc..f2f457a8ff8 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -164,10 +162,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -216,13 +210,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -246,29 +238,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -284,7 +253,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -322,10 +290,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails_old_redis.gemfile b/gemfiles/ruby_3.2_rails_old_redis.gemfile index acf6f6605fa..b581376aa12 100644 --- a/gemfiles/ruby_3.2_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.2_rails_old_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index c7423cbe3f0..9ca41079749 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 50887964e5f..53480650ad3 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,12 +51,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -83,29 +76,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +86,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -150,10 +119,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index a80abdd50a9..99ce6f43e9b 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 9c320e1c8e6..404d6c81dc2 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,12 +51,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -83,29 +76,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +86,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -150,10 +119,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index b79c4d9d9b8..85b8db19aed 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 9c7cc0f1499..48fa8fe8083 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,7 +52,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -65,7 +59,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index 4f3a9bba7b0..cd8d81351ea 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index f3081597c6f..6f813b75aeb 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -51,7 +50,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -80,12 +74,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -147,7 +115,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 25ae2f88533..9fee50f2c56 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 4a1a894e98e..66b835df334 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,9 +48,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,14 +58,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -97,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -172,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index cc1ae388517..aadef1821e8 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 8d127d5c9f2..dd948e3704e 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +59,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -74,7 +68,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 79c6068bc8b..12961d060b1 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index 040b2784c37..c39cddaee80 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -71,11 +64,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,29 +88,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index a35d2d05075..9465f917f15 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 698e3f99f09..752832d9958 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index ad413b7d594..cbc347d40eb 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 71fcfbc2f33..fead993cef1 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 93a5975d521..87473a10869 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 5fbc0a7a593..dad05a9404a 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index d6ccbe3d451..41edeb33001 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 10d633de97f..6d56d35d6a3 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index 2e1b91d06ff..144c7a42adc 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 1c91f743b6c..e500be57fd7 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index 17d9a9abb41..adb9b336ba4 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index bbb1c542d2b..139d197810a 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 352eb982a29..7058ea2e0ee 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 001e899d443..10c3c95fc3f 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index 7e5411f19f1..d0e06e08f2a 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index f15a3cf3abb..49aed417129 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index f84c0c4cf04..00a02c0e01f 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index b18995496df..5c2cb366a49 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index cfbd5cdb264..3b331617a10 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index b27b795714f..7450308117c 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index cd781e2f211..485d3740f23 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index 079621d701f..5f447d982d0 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -87,7 +86,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -120,10 +118,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -154,7 +148,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -162,7 +155,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -186,31 +178,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -225,7 +194,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -266,10 +234,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index 68d1007828f..be6c26e7a4d 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 7cafc628abf..18e8d9049b8 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1454,7 +1453,6 @@ GEM google-protobuf (3.24.2) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1467,10 +1465,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1478,12 +1472,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1505,29 +1496,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1543,7 +1511,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1577,10 +1544,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index 6dab61251d9..07d57a70775 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 9ef671f2146..fa8f0682501 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -48,7 +47,6 @@ GEM google-protobuf (>= 3.25, < 5.0) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,9 +65,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,7 +78,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -94,7 +88,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -123,29 +116,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.2) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -226,10 +195,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index a80fa0f9abb..ae3bba41c9e 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index fea5a7c8a0d..dc732506453 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -43,7 +42,6 @@ GEM google-protobuf (3.23.1) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,9 +61,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -90,12 +85,10 @@ GEM rack (2.2.7) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -117,29 +110,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -166,7 +136,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -204,10 +173,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index d55b982d4ab..891044671de 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index 583ec8b3682..063b7c70c3d 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,11 +50,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -81,29 +74,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +84,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -147,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 09efed3a336..27b8e6b434b 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 60234ba7b4a..97e082e6b96 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -138,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -173,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index 449ac43f845..aed5ebc4c02 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 7789c3cfc06..c185c27ce11 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -64,10 +63,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index f9405972c8a..badcfc73421 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 2f8317d4eac..dfdc838555b 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index edb5898b51b..9d142953a86 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index de273167c94..d0d782dee56 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index f1eb85dfcd0..d066b71b009 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index 4961696b224..d268e3ca052 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index 4b799796f7e..0f2e84132b7 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index d686acb1e7d..d3365b31b9d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -303,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index a9364961cd4..5da99d6a19f 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 2b8cf4c3eb1..97aa445bd07 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -303,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index f667a0f732b..b81a2ff54c4 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 3691317f575..1e1f8252a2b 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index dc32cc47097..e6b82f3cce1 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index ec9363ea535..0f276418bca 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -54,7 +53,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -74,10 +72,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -117,29 +108,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -156,7 +124,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -195,10 +162,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index de901141719..c45d76e4e2b 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 74f9ccdf37c..a103ff95300 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -64,10 +63,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index ea9d740c6a2..2185f8aafc9 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 7b0071a059d..ffacf13176c 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -59,10 +58,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -71,12 +66,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -166,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index e7ed9c1100f..f723c9243e7 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index ec15305f3e3..7c38ac74612 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -62,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index b0ab8f1f286..be1276e89ac 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 072c43a1796..53b2696488c 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -57,9 +55,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,11 +62,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +86,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +96,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -160,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index 9843af97d99..b99812d76bd 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index 003e96fdbcc..aa2f6a66b22 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -82,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -108,29 +99,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +108,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -175,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 5f0e00d9f29..2590776110e 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index 0dc721f203a..f15d532ca11 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,10 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,17 +50,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index a629b8caecb..6bd7ef3ab7f 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 18d842301b8..513cdc979a8 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,10 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,17 +50,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index ec624ba27ec..7f26c518698 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index c7ed7113fd6..91d2940d5cb 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index 3a88c449ac4..d0a43aab470 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 33cc3d174d9..17e52e1b6dd 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -185,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -298,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index e83b417adff..17811ef3980 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 232f82369b9..00bd7f36f76 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -142,9 +140,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -298,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index da07d92f49d..071f6c4d2c7 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index f4f73044ed5..478562b2908 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -142,9 +140,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index b65755b2159..98601cf69b3 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index e9f569e110d..17b06582f76 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -190,13 +185,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.14.1) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -220,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) sidekiq (7.1.0) @@ -271,7 +241,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -313,10 +282,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 7f42665e2bf..532d5992925 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index 5891f7bb953..ed7183204d5 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -137,9 +135,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -210,29 +203,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 286747986d4..483c5c6c05f 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index f7c65ce8706..cd820d99d26 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -304,10 +272,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index a24b15ca518..6d0b2c3573b 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 8b0b8e0e309..08cb11a5ab7 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -217,29 +209,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index 006dafab72d..cd45bf1a819 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index 943bd28c2dc..f2f457a8ff8 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -164,10 +162,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -216,13 +210,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -246,29 +238,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -284,7 +253,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -322,10 +290,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails_old_redis.gemfile b/gemfiles/ruby_3.3_rails_old_redis.gemfile index acf6f6605fa..b581376aa12 100644 --- a/gemfiles/ruby_3.3_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.3_rails_old_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index c7423cbe3f0..9ca41079749 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 0da4e8939f3..84d40727081 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,12 +50,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index a80abdd50a9..99ce6f43e9b 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index f22e4d596b8..3196f10d80a 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,12 +50,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index b79c4d9d9b8..85b8db19aed 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index fc179422917..f211c5de2b6 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,7 +51,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -64,7 +58,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.14.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index 4f3a9bba7b0..cd8d81351ea 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index 878a5ea38b5..7b19b882e76 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -80,12 +74,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -147,7 +115,6 @@ GEM trilogy (2.7.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 25ae2f88533..9fee50f2c56 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 7e32714baf5..b476f932283 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,9 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,14 +57,12 @@ GEM rack (2.2.7) rack-protection (3.0.6) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -96,29 +89,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -136,7 +106,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -171,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index cc1ae388517..aadef1821e8 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index e13117348be..4ea24523ad2 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,9 +48,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +58,6 @@ GEM rack (2.2.7) rack-protection (3.0.6) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -73,7 +67,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -100,29 +93,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -175,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 79c6068bc8b..12961d060b1 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index 040b2784c37..c39cddaee80 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -71,11 +64,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,29 +88,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index a35d2d05075..9465f917f15 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 698e3f99f09..752832d9958 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index ad413b7d594..cbc347d40eb 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 71fcfbc2f33..fead993cef1 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 93a5975d521..87473a10869 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 5fbc0a7a593..dad05a9404a 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index d6ccbe3d451..41edeb33001 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 10d633de97f..6d56d35d6a3 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index 2e1b91d06ff..144c7a42adc 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 1c91f743b6c..e500be57fd7 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index 17d9a9abb41..adb9b336ba4 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index bbb1c542d2b..139d197810a 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 352eb982a29..7058ea2e0ee 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 001e899d443..10c3c95fc3f 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index 7e5411f19f1..d0e06e08f2a 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index f15a3cf3abb..49aed417129 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index f84c0c4cf04..00a02c0e01f 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index b18995496df..5c2cb366a49 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index cfbd5cdb264..3b331617a10 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index b27b795714f..7450308117c 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index a2e07cceda6..f4f114ba5e3 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 45df7994d26..f97e6f162f0 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -45,7 +45,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM irb (1.13.2) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -138,10 +136,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -179,7 +173,6 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -189,7 +182,6 @@ GEM rake (> 12) rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) request_store (1.7.0) @@ -215,31 +207,8 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -255,7 +224,6 @@ GEM thor (1.3.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -299,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index c75126da92b..8d0ad0015d8 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index c133efc3e5d..840ad8dcc6b 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) aws-eventstream (1.3.0) aws-partitions (1.948.0) aws-sdk (3.2.0) @@ -1585,7 +1584,6 @@ GEM google-protobuf (3.25.3) hashdiff (1.1.0) jmespath (1.6.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1599,10 +1597,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1611,12 +1605,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -1638,29 +1629,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.2.1) aws-sdk-core (>= 2) concurrent-ruby @@ -1676,7 +1644,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.1) thor (1.3.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -1713,10 +1680,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 1474d4ef6f4..bfa5f73836d 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index cee1993a870..cf3e93c45cc 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -13,7 +13,6 @@ GEM addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) amq-protocol (2.3.2) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -48,7 +47,6 @@ GEM google-protobuf (~> 3.25) googleapis-common-protos-types (~> 1.0) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,7 +75,6 @@ GEM pry (~> 0.13) public_suffix (6.0.0) que (2.3.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) @@ -92,7 +85,6 @@ GEM rack (>= 1.3) rackup (2.2.0) rack (>= 3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.7) rake @@ -103,7 +95,6 @@ GEM connection_pool redis-namespace (1.11.0) redis (>= 4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -132,29 +123,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) @@ -196,7 +164,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.3.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -240,10 +207,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index dcb90710598..8658fa2d219 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index c93978f82e0..644612107b7 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -47,7 +46,6 @@ GEM google-protobuf (3.25.3) hashdiff (1.1.0) hitimes (1.3.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -94,16 +88,13 @@ GEM thin (~> 1.6) thor (~> 0.19.1) vegas (~> 0.1.11) - racc (1.8.0) rack (2.2.9) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -125,29 +116,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -174,7 +142,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.4.0) - unicode-display_width (2.5.0) vegas (0.1.11) rack (>= 1.0.0) warning (1.4.0) @@ -215,10 +182,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index 01b23e2d3da..49f40b3d879 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 5bde6ab9ed0..c5f0934af53 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index 21436a3d56d..1237f4ea150 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 8127562c032..4c4e69f7fed 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -69,10 +68,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index 12f2bc2e928..210175d3987 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 84c4385435b..69f83de14bd 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -107,29 +99,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +109,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -178,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index af6d40078a6..f7693bb269d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 9ec5358a17c..6f71d768e91 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -106,29 +98,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -138,7 +107,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -176,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index ff2b885583a..504df2e2797 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index d107c1264d5..41141b3d79f 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index 375c20be96f..c5c64a26cd2 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 9ed446be3e1..6a9bd611a3f 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index d3a8c9d8161..947bd92fefb 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index b959d6e6ea4..de15e8374d0 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 46d08eb7f03..027450148c4 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index 4f35d93aa3a..6a68bdfe0f8 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index fd458a7b381..b92d03d0cbe 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 0d1cc4a2f5f..83371169324 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 09320ec2626..9d51dfae5fa 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index bfbe3f6559a..c0f7d80afa7 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -58,7 +57,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -81,10 +79,6 @@ GEM uri netrc (0.11.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -93,12 +87,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -125,29 +116,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -160,7 +128,6 @@ GEM strscan (3.1.1) typhoeus (1.4.1) ethon (>= 0.9.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -203,10 +170,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index be165b3fb44..da5447fd7cb 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 193c639f5f0..8a6e10be7ed 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -107,29 +99,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +109,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -178,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 7327e22aba9..af95c34319e 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index e47e94be01e..6bd9ff7563a 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +70,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -102,29 +94,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -135,7 +104,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -173,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index 68ef9748484..0595d9e54c1 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index c21a5addc66..bf46f755e95 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +70,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -101,29 +93,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -133,7 +102,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index c613f8f9968..f1bd46aca09 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 0fc192e8a41..cc0380332df 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -62,10 +60,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +68,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -171,10 +138,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index bdb686e46d9..e541029d137 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 6bf38e94ae6..41f215fc0f0 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.16.0) google-protobuf (>= 3.18, < 5.a) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.1) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +77,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.8) rake - regexp_parser (2.9.2) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +100,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +109,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.24.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index c5d31419955..4d37375eb11 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 70bd5f5e6ae..3c2d882c0cf 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.10) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -166,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 76c7008ca2d..6aa6134698d 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 4a8392c503f..42be05c7ed0 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -166,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 0cc32214beb..d64f02bcb3f 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 22f97c82b97..dfbcd3fbda5 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 5bfc78b0799..8b2103c478b 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 23a19f1603f..fc15081c378 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -219,29 +211,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 3f6d2014a6b..cf7ce6d49e5 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index ff2dcde8299..ecec4a62040 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -219,29 +211,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index f06f03de175..a46d6d80df4 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 5e891d8d541..e20312bfc67 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -191,12 +185,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (4.8.1) - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index 66ce515f422..b481e14fc45 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 58ee0a67dc9..c21d4cb2429 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -196,13 +190,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis-client (0.22.2) connection_pool - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -226,29 +218,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) sidekiq (7.2.4) @@ -278,7 +247,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -323,10 +291,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index a7a575df72e..d55babb46c4 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 041e4ab3948..3be10c50b06 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,10 +139,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -216,29 +208,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index f1557668313..c4da7ecbde2 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index ec49b85f13d..354d0f444f9 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM trilogy (2.8.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 64bc1e18f59..64bb8db6aca 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 312f01efc99..f2cdd4df253 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -151,10 +149,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -300,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 1c3874e191c..07f4a7a98ef 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index d446d36b952..2ca790ddad6 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -166,10 +164,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -218,13 +212,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -248,29 +240,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -286,7 +255,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -328,10 +296,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index d159ab84a59..147f45a317b 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index aa4f61f1b45..31746f661d6 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index d51e22bb65d..3ca823ebab6 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,13 +56,10 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 14dfd5a1506..5bd31e37398 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 1e5e86bbf21..31b70853fd0 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,13 +56,10 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (4.8.1) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index c0441e954b0..78c7941b735 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 186e3129d8f..20ff6350563 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,8 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -72,7 +64,6 @@ GEM redis-client (>= 0.22.0) redis-client (0.22.2) connection_pool - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 869ab1aeb32..85f8804a529 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index eca878ee832..fed9809081c 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -53,7 +52,6 @@ GEM hashdiff (1.1.2) i18n (1.14.6) concurrent-ruby (~> 1.0) - json (2.8.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -72,10 +70,6 @@ GEM mutex_m (0.2.0) mysql2 (0.5.6) os (1.1.4) - parallel (1.26.3) - parser (3.3.6.0) - ast (~> 2.4.1) - racc pg (1.5.9) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.8) rake - regexp_parser (2.9.2) rexml (3.3.9) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.36.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.23.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.86.0) bigdecimal simplecov (0.21.2) @@ -150,7 +118,6 @@ GEM trilogy (2.9.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.24.0) addressable (>= 2.8.0) @@ -192,10 +159,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 6f6ea6450a9..e2ec06ac0fe 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 92d77581eea..a50d6bcb878 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -54,10 +52,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -66,21 +60,18 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) rack (>= 3.0.0, < 4) rack-session (2.0.0) rack (>= 3.0.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 5dad2208aa7..0485f8c591b 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 5c8a59c471d..c4459a75c6f 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -55,10 +53,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +61,12 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) rack (>= 3.0.0, < 4) rack-session (2.0.0) rack (>= 3.0.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -84,7 +76,6 @@ GEM connection_pool redis-namespace (1.11.0) redis (>= 4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -152,7 +120,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -190,10 +157,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index b7b9197e136..71b06b59ebe 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 24e490ba099..f98c889030f 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.9) rack-contrib (2.5.0) rack (< 4) @@ -72,11 +65,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -98,29 +89,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -138,7 +106,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index e895aecb1f4..4b3618149df 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 55ef87a6738..7d11916788c 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.9) rack-contrib (2.5.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index dc4bee184c2..333a97ebf5d 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index c60753b6b5b..8f4e54eb64f 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-contrib (2.5.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index d7a78b18476..1953837d69f 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 726f9b0626e..a4bf97ffa24 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 30907c0ac61..c1cc8ce4efd 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index c57f17f4731..5fb68173d0e 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 0f4275546dd..446b0c9ca51 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index cf0af25322d..2d7ca5d0223 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index 64a331e89d4..90c9a0923f1 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 4de7200d505..d555e1155c9 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index 22f53972283..9f5c085907d 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index b4d80210957..631564d8bfb 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index 36478a0f1bf..b24d5808452 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 58222e88d2c..d1c96dd6c93 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 4d62d6ac60d..182c5244d36 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index d62196fdfc8..807a87dc8e0 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index c76df823bae..4f70a72af07 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 0413dd361ec..6a039a2b0d3 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 06130347bfc..761aa6b2efe 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -26,13 +26,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -41,6 +34,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 439c6cd40e0..58f6e430e15 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -27,13 +27,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -43,6 +36,13 @@ gem 'webrick', '>= 1.7.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 27266605d0a..eebb115a867 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -50,6 +43,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index fa7fba5474e..bf5e73a950d 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -51,6 +44,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index 46fe32fe1bb..d7aa6f93304 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -51,6 +44,13 @@ gem 'webrick', '>= 1.7.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index 63430e1029e..a75a93d9c1a 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -53,6 +46,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 245150568b4..1500dcdac6c 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -34,13 +34,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -52,6 +45,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 245150568b4..1500dcdac6c 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -34,13 +34,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -52,6 +45,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 09c61b74a50..0509cdc69ae 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -37,13 +37,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb @@ -55,6 +48,13 @@ group :check do gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index e00703e4341..426a18b4b1d 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -37,13 +37,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -56,6 +49,13 @@ group :check do gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do