wsdl 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/AGENTS.md +18 -90
- data/CHANGELOG.md +137 -4
- data/CONTRIBUTING.md +11 -61
- data/Gemfile +6 -0
- data/README.md +33 -8
- data/Rakefile +67 -2
- data/benchmarks/profile.rb +84 -0
- data/benchmarks/run.rb +8 -9
- data/docs/contributing/development.md +59 -0
- data/docs/contributing/testing.md +254 -0
- data/docs/core/building-requests.md +9 -10
- data/docs/core/configuration.md +80 -152
- data/docs/core/handling-responses.md +19 -2
- data/docs/core/http-client.md +208 -0
- data/docs/core/inspecting-services.md +86 -10
- data/docs/core/resolving-imports.md +11 -10
- data/docs/core/thread-safety.md +87 -0
- data/docs/getting_started.md +34 -5
- data/docs/reference/errors.md +2 -2
- data/docs/reference/specifications.md +1 -1
- data/docs/reference/strictness-fixture-matrix.md +64 -0
- data/docs/reference/unsupported-features.md +1 -1
- data/docs/security/ws-security-troubleshooting.md +1 -1
- data/docs/security/ws-security-username-token.md +7 -7
- data/lib/wsdl/client.rb +147 -132
- data/lib/wsdl/config.rb +21 -45
- data/lib/wsdl/contract/operation_contract.rb +12 -9
- data/lib/wsdl/contract/part_contract.rb +13 -16
- data/lib/wsdl/contract.rb +5 -4
- data/lib/wsdl/definition/builder.rb +300 -0
- data/lib/wsdl/definition/element_hash.rb +197 -0
- data/lib/wsdl/definition.rb +581 -0
- data/lib/wsdl/errors.rb +92 -25
- data/lib/wsdl/http/client.rb +362 -0
- data/lib/wsdl/http/config.rb +71 -0
- data/lib/wsdl/http/redirect_guard.rb +237 -0
- data/lib/wsdl/http/response.rb +33 -0
- data/lib/wsdl/http.rb +19 -0
- data/lib/wsdl/limits.rb +24 -8
- data/lib/wsdl/operation.rb +156 -98
- data/lib/wsdl/parse_options.rb +10 -11
- data/lib/wsdl/parser/binding.rb +5 -8
- data/lib/wsdl/parser/binding_operation.rb +105 -74
- data/lib/wsdl/parser/document.rb +10 -2
- data/lib/wsdl/parser/document_collection.rb +1 -1
- data/lib/wsdl/parser/import_result.rb +19 -0
- data/lib/wsdl/parser/input_output.rb +69 -57
- data/lib/wsdl/parser/message_info.rb +6 -1
- data/lib/wsdl/parser/message_reference.rb +5 -2
- data/lib/wsdl/parser/operation_info.rb +61 -21
- data/lib/wsdl/parser/operation_map.rb +120 -0
- data/lib/wsdl/parser/port.rb +1 -1
- data/lib/wsdl/parser/port_type.rb +10 -8
- data/lib/wsdl/parser/port_type_operation.rb +28 -4
- data/lib/wsdl/parser.rb +81 -23
- data/lib/wsdl/qname.rb +99 -15
- data/lib/wsdl/request/dsl_context.rb +13 -10
- data/lib/wsdl/request/security_conflict_detector.rb +2 -2
- data/lib/wsdl/request/serializer.rb +3 -3
- data/lib/wsdl/request/validator.rb +30 -25
- data/lib/wsdl/request.rb +8 -7
- data/lib/wsdl/resolver/importer.rb +347 -0
- data/lib/wsdl/resolver/loader.rb +452 -0
- data/lib/wsdl/resolver/source.rb +171 -0
- data/lib/wsdl/resolver.rb +18 -0
- data/lib/wsdl/response/builder.rb +393 -0
- data/lib/wsdl/response/parser.rb +55 -4
- data/lib/wsdl/response/type_coercer.rb +56 -10
- data/lib/wsdl/response.rb +32 -52
- data/lib/wsdl/schema/collection.rb +83 -229
- data/lib/wsdl/schema/definition.rb +54 -3
- data/lib/wsdl/schema/node.rb +187 -66
- data/lib/wsdl/security/canonicalizer.rb +1 -1
- data/lib/wsdl/security/config.rb +0 -3
- data/lib/wsdl/security/credential_normalizer.rb +4 -8
- data/lib/wsdl/security/digester.rb +2 -2
- data/lib/wsdl/security/request_materializer.rb +3 -3
- data/lib/wsdl/security/secure_compare.rb +1 -3
- data/lib/wsdl/security/security_header.rb +4 -4
- data/lib/wsdl/security/signature.rb +6 -6
- data/lib/wsdl/security/signature_options.rb +1 -1
- data/lib/wsdl/security/verifier/base.rb +11 -0
- data/lib/wsdl/security/verifier/certificate_resolver.rb +0 -8
- data/lib/wsdl/security/verifier/reference_validator.rb +0 -6
- data/lib/wsdl/security/verifier/timestamp_validator.rb +11 -0
- data/lib/wsdl/security/verifier.rb +44 -35
- data/lib/wsdl/security.rb +29 -28
- data/lib/wsdl/strictness.rb +126 -0
- data/lib/wsdl/version.rb +1 -1
- data/lib/wsdl/xml/attribute.rb +61 -0
- data/lib/wsdl/xml/element.rb +164 -33
- data/lib/wsdl/xml/element_builder.rb +185 -67
- data/lib/wsdl/xml/parser.rb +11 -59
- data/lib/wsdl/xml/threat_scanner.rb +217 -0
- data/lib/wsdl.rb +86 -38
- data/scripts/lint_links.rb +44 -0
- data/scripts/specifications.rb +417 -0
- data/spec/acceptance/amazon_spec.rb +333 -0
- data/spec/acceptance/authentication_spec.rb +63 -0
- data/spec/acceptance/awse_spec.rb +456 -0
- data/spec/acceptance/betfair_spec.rb +311 -0
- data/spec/acceptance/blz_service_spec.rb +46 -0
- data/spec/acceptance/bookt_spec.rb +103 -0
- data/spec/acceptance/bronto_spec.rb +539 -0
- data/spec/acceptance/bydexchange_spec.rb +35 -0
- data/spec/acceptance/crowd_spec.rb +169 -0
- data/spec/acceptance/daisycon_spec.rb +33 -0
- data/spec/acceptance/data_exchange_spec.rb +31 -0
- data/spec/acceptance/document_literal_spec.rb +106 -0
- data/spec/acceptance/economic_spec.rb +3099 -0
- data/spec/acceptance/email_verification_spec.rb +121 -0
- data/spec/acceptance/equifax_spec.rb +536 -0
- data/spec/acceptance/exhaustive_roundtrip_spec.rb +97 -0
- data/spec/acceptance/geotrust_spec.rb +56 -0
- data/spec/acceptance/interhome_spec.rb +544 -0
- data/spec/acceptance/iws_spec.rb +44 -0
- data/spec/acceptance/jetairways_spec.rb +149 -0
- data/spec/acceptance/jira_spec.rb +141 -0
- data/spec/acceptance/juniper_spec.rb +49 -0
- data/spec/acceptance/marketo_spec.rb +81 -0
- data/spec/acceptance/namespaced_actions_spec.rb +71 -0
- data/spec/acceptance/oracle_spec.rb +314 -0
- data/spec/acceptance/ratp_spec.rb +1025 -0
- data/spec/acceptance/rio2_spec.rb +45 -0
- data/spec/acceptance/rpc_literal_spec.rb +103 -0
- data/spec/acceptance/schema_patterns_spec.rb +436 -0
- data/spec/acceptance/security_round_trip_spec.rb +165 -0
- data/spec/acceptance/split_namespace_spec.rb +21 -0
- data/spec/acceptance/spyne_spec.rb +71 -0
- data/spec/acceptance/stockquote_spec.rb +46 -0
- data/spec/acceptance/strictness_fixture_matrix_spec.rb +122 -0
- data/spec/acceptance/taxcloud_spec.rb +145 -0
- data/spec/acceptance/team_software_spec.rb +79 -0
- data/spec/acceptance/telefonkatalogen_spec.rb +113 -0
- data/spec/acceptance/temperature_spec.rb +71 -0
- data/spec/acceptance/travelport_spec.rb +83 -0
- data/spec/acceptance/wasmuth_spec.rb +78 -0
- data/spec/acceptance/xignite_spec.rb +190 -0
- data/spec/acceptance/xsw_attack_vectors_spec.rb +415 -0
- data/spec/acceptance/yahoo_spec.rb +177 -0
- data/spec/conformance/soap_1_1_spec.rb +289 -0
- data/spec/conformance/soap_1_2_spec.rb +454 -0
- data/spec/conformance/wsdl_1_1_spec.rb +263 -0
- data/spec/conformance/xml_schema_spec.rb +640 -0
- data/spec/fixtures/parser/abstract_types.wsdl +86 -0
- data/spec/fixtures/parser/attribute_groups.wsdl +65 -0
- data/spec/fixtures/parser/attribute_types.wsdl +73 -0
- data/spec/fixtures/parser/operation_overloading.wsdl +64 -0
- data/spec/fixtures/parser/recursive_types.wsdl +65 -0
- data/spec/fixtures/parser/xs_all.wsdl +60 -0
- data/spec/fixtures/parser/xs_choice.wsdl +67 -0
- data/spec/fixtures/parser/xs_group.wsdl +67 -0
- data/spec/fixtures/parser/xs_list.wsdl +66 -0
- data/spec/fixtures/parser/xs_union.wsdl +62 -0
- data/spec/fixtures/wsdl/bookt/manifest.yml +22 -0
- data/spec/fixtures/wsdl/bydexchange/manifest.yml +14 -0
- data/spec/fixtures/wsdl/rio2/manifest.yml +9 -0
- data/spec/fixtures/wsdl/split_namespace/service.wsdl +46 -0
- data/spec/fixtures/wsdl/split_namespace/types_a.xsd +14 -0
- data/spec/fixtures/wsdl/split_namespace/types_b.xsd +15 -0
- data/spec/fixtures/wsdl/team_software/manifest.yml +8 -0
- data/spec/fixtures/wsdl/travelport/manifest.yml +3 -0
- data/spec/fixtures/wsdl/wasmuth/manifest.yml +6 -0
- data/spec/integration/authentication_spec.rb +67 -40
- data/spec/integration/betfair_spec.rb +135 -176
- data/spec/integration/blz_service_spec.rb +71 -30
- data/spec/integration/crowd_spec.rb +100 -55
- data/spec/integration/equifax_spec.rb +138 -273
- data/spec/integration/interhome_spec.rb +152 -271
- data/spec/integration/marketo_spec.rb +86 -66
- data/spec/integration/ratp_spec.rb +69 -349
- data/spec/integration/rpc_literal_spec.rb +49 -87
- data/spec/integration/telefonkatalogen_spec.rb +61 -54
- data/spec/integration/temperature_spec.rb +46 -59
- data/spec/integration/xignite_spec.rb +75 -112
- data/spec/integration/yahoo_spec.rb +73 -114
- data/spec/performance/element_builder_spec.rb +39 -0
- data/spec/performance/parse_pipeline_spec.rb +36 -0
- data/spec/performance/qname_spec.rb +60 -0
- data/spec/performance/request_serializer_spec.rb +46 -0
- data/spec/performance/response_parser_spec.rb +61 -0
- data/spec/performance/schema_node_spec.rb +54 -0
- data/spec/performance/threat_scanner_spec.rb +23 -0
- data/spec/property/response_roundtrip_spec.rb +163 -0
- data/spec/property/wsdl_parser_spec.rb +116 -0
- data/spec/property/xml_parser_spec.rb +304 -0
- data/spec/spec_helper.rb +28 -11
- data/spec/support/allocation_helpers.rb +25 -0
- data/spec/support/http_mock.rb +2 -2
- data/spec/support/parsed_fixture.rb +37 -0
- data/spec/support/performance.rb +28 -0
- data/spec/support/roundtrip_candidates.rb +139 -0
- data/spec/support/schema_element_helper.rb +31 -7
- data/spec/support/test_service/input_extractor.rb +37 -0
- data/spec/support/test_service/mock_server.rb +276 -0
- data/spec/support/test_service/operation_definition.rb +121 -0
- data/spec/support/test_service/response_matcher.rb +35 -0
- data/spec/support/test_service/service_definition.rb +136 -0
- data/spec/support/test_service/spec_helpers.rb +43 -0
- data/spec/support/test_service.rb +76 -0
- data/spec/support/timeout.rb +41 -0
- data/spec/support/verifier_helpers.rb +200 -0
- data/spec/wsdl/client_spec.rb +543 -294
- data/spec/wsdl/config_spec.rb +16 -32
- data/spec/wsdl/contract/message_contract_spec.rb +68 -0
- data/spec/wsdl/contract/part_contract_spec.rb +131 -4
- data/spec/wsdl/contract/template_spec.rb +0 -2
- data/spec/wsdl/definition/builder_spec.rb +364 -0
- data/spec/wsdl/definition/element_hash_spec.rb +314 -0
- data/spec/wsdl/definition_spec.rb +395 -0
- data/spec/wsdl/errors_spec.rb +386 -0
- data/spec/wsdl/formatting_spec.rb +1 -3
- data/spec/wsdl/http/client_integration_spec.rb +196 -0
- data/spec/wsdl/http/client_spec.rb +740 -0
- data/spec/wsdl/http/config_spec.rb +30 -0
- data/spec/wsdl/http/redirect_guard_spec.rb +604 -0
- data/spec/wsdl/http/response_spec.rb +47 -0
- data/spec/wsdl/limits_spec.rb +27 -35
- data/spec/wsdl/log_spec.rb +1 -3
- data/spec/wsdl/nillable_spec.rb +68 -52
- data/spec/wsdl/operation/document_literal_spec.rb +137 -62
- data/spec/wsdl/operation/example_body_spec.rb +5 -7
- data/spec/wsdl/operation/rpc_literal_spec.rb +107 -51
- data/spec/wsdl/operation_contract_spec.rb +5 -4
- data/spec/wsdl/operation_spec.rb +327 -213
- data/spec/wsdl/parse_load_spec.rb +152 -0
- data/spec/wsdl/parse_options_spec.rb +68 -0
- data/spec/wsdl/parser/binding_operation_spec.rb +226 -29
- data/spec/wsdl/parser/document_collection_spec.rb +1 -3
- data/spec/wsdl/parser/document_spec.rb +14 -17
- data/spec/wsdl/parser/input_output_spec.rb +95 -238
- data/spec/wsdl/parser/message_info_spec.rb +146 -0
- data/spec/wsdl/parser/message_reference_spec.rb +120 -0
- data/spec/wsdl/parser/operation_info_spec.rb +128 -0
- data/spec/wsdl/parser/operation_map_spec.rb +169 -0
- data/spec/wsdl/parser/port_type_operation_spec.rb +188 -0
- data/spec/wsdl/parser/port_type_spec.rb +137 -0
- data/spec/wsdl/parser_spec.rb +243 -0
- data/spec/wsdl/qname_spec.rb +229 -15
- data/spec/wsdl/request/dsl_spec.rb +11 -13
- data/spec/wsdl/request/envelope_spec.rb +0 -2
- data/spec/wsdl/request/rpc_wrapper_spec.rb +2 -4
- data/spec/wsdl/request/security_conflict_detector_spec.rb +1 -3
- data/spec/wsdl/request/validator_spec.rb +19 -21
- data/spec/wsdl/resolver/loader_spec.rb +552 -0
- data/spec/wsdl/resolver/source_spec.rb +150 -0
- data/spec/wsdl/response/builder_spec.rb +308 -0
- data/spec/wsdl/response/parser_spec.rb +174 -5
- data/spec/wsdl/response/security_context_spec.rb +0 -3
- data/spec/wsdl/response/type_coercer_spec.rb +167 -2
- data/spec/wsdl/response_spec.rb +193 -82
- data/spec/wsdl/schema/collection_spec.rb +295 -139
- data/spec/wsdl/schema/node_spec.rb +293 -38
- data/spec/wsdl/security/algorithm_mapper_spec.rb +1 -3
- data/spec/wsdl/security/canonicalizer_spec.rb +1 -3
- data/spec/wsdl/security/config_spec.rb +16 -15
- data/spec/wsdl/security/constants_spec.rb +1 -3
- data/spec/wsdl/security/credential_normalizer_spec.rb +48 -3
- data/spec/wsdl/security/digester_spec.rb +1 -3
- data/spec/wsdl/security/id_generator_spec.rb +1 -3
- data/spec/wsdl/security/policy_spec.rb +0 -2
- data/spec/wsdl/security/reference_spec.rb +1 -3
- data/spec/wsdl/security/request_context_spec.rb +5 -7
- data/spec/wsdl/security/request_materializer_spec.rb +189 -0
- data/spec/wsdl/security/request_policy_spec.rb +0 -2
- data/spec/wsdl/security/response_policy_spec.rb +0 -2
- data/spec/wsdl/security/response_verification_spec.rb +1 -3
- data/spec/wsdl/security/secure_compare_spec.rb +0 -1
- data/spec/wsdl/security/security_header_spec.rb +21 -21
- data/spec/wsdl/security/signature_options_spec.rb +1 -3
- data/spec/wsdl/security/signature_spec.rb +126 -46
- data/spec/wsdl/security/timestamp_spec.rb +1 -3
- data/spec/wsdl/security/username_token_spec.rb +2 -4
- data/spec/wsdl/security/verifier/base_spec.rb +0 -2
- data/spec/wsdl/security/verifier/certificate_resolver_spec.rb +3 -6
- data/spec/wsdl/security/verifier/certificate_validator_spec.rb +7 -9
- data/spec/wsdl/security/verifier/element_position_validator_spec.rb +1 -4
- data/spec/wsdl/security/verifier/reference_validator_spec.rb +1 -4
- data/spec/wsdl/security/verifier/signature_validator_spec.rb +1 -4
- data/spec/wsdl/security/verifier/structure_validator_spec.rb +1 -4
- data/spec/wsdl/security/verifier/timestamp_validator_spec.rb +75 -2
- data/spec/wsdl/security/verifier_spec.rb +131 -16
- data/spec/wsdl/security/xml_builder_helper_spec.rb +7 -9
- data/spec/wsdl/strictness_spec.rb +148 -0
- data/spec/wsdl/wsdl_spec.rb +73 -35
- data/spec/wsdl/xml/attribute_spec.rb +101 -0
- data/spec/wsdl/xml/element_builder_spec.rb +79 -56
- data/spec/wsdl/xml/element_spec.rb +315 -2
- data/spec/wsdl/xml/parser_spec.rb +1 -2
- data/spec/wsdl/xml/threat_scanner_spec.rb +151 -0
- data/vendor/bundle/ruby/4.0.0/bin/mutant +28 -0
- data/vendor/bundle/ruby/4.0.0/bin/mutant-ruby +28 -0
- data/vendor/bundle/ruby/4.0.0/bin/stackprof +28 -0
- data/vendor/bundle/ruby/4.0.0/bin/stackprof-flamegraph.pl +28 -0
- data/vendor/bundle/ruby/4.0.0/bin/stackprof-gprof2dot.py +28 -0
- data/vendor/bundle/ruby/4.0.0/bin/unparser +28 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/gem_make.out +38 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/mkmf.log +458 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/date-3.5.1/gem_make.out +6 -6
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/erb-6.0.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/io-console-0.8.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/gem_make.out +25 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.9.0/gem_make.out +6 -6
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/gem_make.out +6 -6
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/racc-1.8.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/redcarpet-3.6.1/gem_make.out +10 -10
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/gem.build_complete +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/gem_make.out +22 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/mkmf.log +181 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/stackprof/stackprof.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stringio-3.2.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/syslog-0.4.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/bigdecimal.gemspec +62 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/Makefile +274 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/bigdecimal.c +6264 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/bigdecimal.h +293 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/div.h +192 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/extconf.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/missing.h +106 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/ntt.h +191 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal/math.rb +927 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal/util.rb +186 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal.rb +387 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/linear.rb +110 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/nlsolve.rb +57 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/pi.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_decimal.rbs +1502 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_decimal_util.rbs +158 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_math.rbs +423 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/CHANGES.md +750 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/ext/json/ext/fbuffer/fbuffer.h +251 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/ext/json/ext/parser/parser.c +1697 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/LICENSE +271 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/VERSION +1 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/bin/mutant +4 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/bin/mutant-ruby +64 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/find_metaclass_containing.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/const.rb +26 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/optarg.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/resbody.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/send.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/symbol.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta.rb +9 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/named_children.rb +90 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/node_predicates.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/nodes.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/lexer.rb +170 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/parser.rb +194 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/source.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/token.rb +15 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern.rb +125 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/sexp.rb +30 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/structure.rb +915 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/types.rb +65 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/bootstrap.rb +197 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/irb.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/run.rb +60 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/show.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/subject.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/test.rb +79 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment.rb +158 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/root.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/util.rb +128 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command.rb +229 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli.rb +13 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/config/coverage_criteria.rb +70 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/config.rb +285 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/context.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/env.rb +169 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/descendants.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/method.rb +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/methods.rb +70 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/namespace.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/parser.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/source.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression.rb +60 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/hooks.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/integration/null.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/integration.rb +141 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/exception.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/fork.rb +250 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/none.rb +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation.rb +32 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/loader.rb +47 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/chain.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/config.rb +115 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/descendants.rb +26 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/filter.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/instance.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/metaclass.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/singleton.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method.rb +179 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/methods.rb +115 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/namespace.rb +34 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/null.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/scope.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/static.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example/dsl.rb +108 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example/verification.rb +142 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example.rb +80 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta.rb +41 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/config.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/operators.rb +195 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/runner/sink.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/runner.rb +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation.rb +151 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/and_asgn.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/argument.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/arguments.rb +72 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/begin.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/binary.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/block.rb +88 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/block_pass.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/break.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/case.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/case_match.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/class.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/conditional_loop.rb +56 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/const.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/const_pattern.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/define.rb +87 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/defined.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/dynamic_literal.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/ensure.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/generic.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/guard.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/if.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/in_pattern.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/index.rb +102 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/kwargs.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/kwbegin.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/array.rb +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/boolean.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/complex.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/float.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/hash.rb +50 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/integer.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/nil.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/range.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/rational.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/regex.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/string.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/symbol.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/masgn.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_alt.rb +26 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_current_line.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_pattern_p.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/mlhs.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/module.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/access.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/constant_assignment.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/variable_assignment.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/next.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/noop.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/nthref.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/numblock.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/op_asgn.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/or_asgn.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/procarg_zero.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/regopt.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/resbody.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/rescue.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/return.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/sclass.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/attribute_assignment.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/binary.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/conditional.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send.rb +274 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/splat.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/super.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/when.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/yield.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/zsuper.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node.rb +141 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/regexp.rb +211 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util/array.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util/symbol.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util.rb +9 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/connection.rb +167 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/driver.rb +68 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/pipe.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/source.rb +65 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/worker.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel.rb +127 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parser.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/procto.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/range.rb +15 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/registry.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/format.rb +190 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/config.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/coverage_result.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env_progress.rb +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env_result.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/isolation_result.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/mutation.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/mutation_result.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/status_progressive.rb +75 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/subject_result.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/test.rb +186 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer.rb +88 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/progress_bar.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli.rb +116 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/null.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/sequence.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter.rb +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository/diff/ranges.rb +41 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository/diff.rb +113 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository.rb +6 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/require_highjack.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/result.rb +306 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/scope.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/segment/recorder.rb +124 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/segment.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector/expression.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector/null.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/config.rb +26 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/instance.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/metaclass.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/singleton.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test/runner/sink.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test/runner.rb +62 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/timer.rb +73 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/transform.rb +438 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/usage.rb +97 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/util.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/variable.rb +319 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/version.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/world.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/zombifier.rb +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant.rb +388 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-rspec-0.15.1/LICENSE +271 -0
- data/vendor/bundle/ruby/4.0.0/gems/mutant-rspec-0.15.1/lib/mutant/integration/rspec.rb +170 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +2411 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +6 -0
- data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.11.1/lib/parser/current.rb +146 -0
- data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.11.1/lib/parser/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/formatter.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/notification_decorator.rb +54 -0
- data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/version.rb +7 -0
- data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github.rb +9 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/config/default.yml +6218 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cache_config.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/auto_generate_config.rb +167 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/show_cops.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/show_docs_url.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config.rb +400 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_finder.rb +78 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_store.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_validator.rb +291 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/argument_alignment.rb +151 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/dot_position.rb +139 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +224 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_line_between_defs.rb +311 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +140 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/end_alignment.rb +215 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +428 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/space_around_keyword.rb +276 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/space_in_lambda_literal.rb +79 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/constant_reassignment.rb +198 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/duplicate_methods.rb +440 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_conditional_body.rb +153 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_in_pattern.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_when.rb +68 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/number_conversion.rb +200 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +276 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +133 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +56 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/useless_constant_scoping.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/useless_default_value_argument.rb +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +122 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/mixin/check_single_line_suitability.rb +47 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/registry.rb +325 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/and_or.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/arguments_forwarding.rb +582 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/ascii_comments.rb +60 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/block_delimiters.rb +496 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/collection_compact.rb +163 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/concat_array_literals.rb +97 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/conditional_assignment.rb +666 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/empty_class_definition.rb +119 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/file_open.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/global_vars.rb +81 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/hash_lookup_method.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/if_unless_modifier.rb +362 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/if_with_semicolon.rb +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/ip_addresses.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/mutable_constant.rb +246 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/non_nil_check.rb +152 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/numeric_literals.rb +130 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/raise_args.rb +160 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_each.rb +119 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_parentheses.rb +360 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_percent_q.rb +110 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/safe_navigation.rb +427 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/single_line_block_params.rb +119 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/symbol_proc.rb +283 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/trailing_method_end_statement.rb +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/yoda_expression.rb +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/disabled_config_formatter.rb +297 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/junit_formatter.rb +143 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/worst_offenders_formatter.rb +64 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/lsp/routes.rb +263 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/mcp/server.rb +198 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/path_util.rb +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/plugin/loader.rb +100 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/result_cache.rb +259 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/rspec/shared_contexts.rb +284 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/runner.rb +534 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/server/core.rb +118 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/target_finder.rb +221 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/version.rb +160 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/binding.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/node_pattern_subcompiler.rb +146 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +431 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/lexer.rex.rb +184 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/parser.racc.rb +472 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern.rb +127 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/traversal.rb +193 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/version.rb +9 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/sorbet-runtime.rb +119 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/_types.rb +382 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/abstract_utils.rb +50 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/boolean.rb +8 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/compatibility_patches.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/configuration.rb +575 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/enum.rb +406 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/generic.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/helpers.rb +65 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/data.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/declare.rb +53 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/hooks.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/validate.rb +128 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/caller_utils.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/casts.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/class_utils.rb +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/decl_state.rb +30 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/final.rb +50 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/_methods.rb +612 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/call_validation.rb +335 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/call_validation_2_7.rb +1729 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/decl_builder.rb +255 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/modes.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/signature.rb +258 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/signature_validation.rb +332 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/mixins/mixins.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/retry.rb +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/runtime_levels.rb +78 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/sealed.rb +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/not_typed.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/simple_pair_union.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/string_holder.rb +30 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/type_alias.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/void.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/_props.rb +166 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/constructor.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/custom_type.rb +108 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/decorator.rb +742 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/errors.rb +8 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/generated_code_validation.rb +277 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/has_lazily_specialized_methods.rb +144 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/optional.rb +89 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/plugin.rb +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/pretty_printable.rb +69 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/apply_default.rb +170 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/deserializer_generator.rb +167 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/parser.rb +32 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/serde_transform.rb +186 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/serializer_generator.rb +80 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/setter_factory.rb +257 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/serializable.rb +398 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/type_validation.rb +114 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/utils.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/weak_constructor.rb +67 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/sig.rb +30 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/struct.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/anything.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/attached_class.rb +41 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/base.rb +192 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/class_of.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/enum.rb +50 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/fixed_array.rb +106 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/fixed_hash.rb +103 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/intersection.rb +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/noreturn.rb +32 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/proc.rb +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/self_type.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/simple.rb +126 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/t_enum.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_member.rb +7 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_parameter.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_template.rb +7 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_variable.rb +38 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_array.rb +73 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_class.rb +102 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerable.rb +183 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator_chain.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator_lazy.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_hash.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_module.rb +102 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_range.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_set.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/union.rb +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/untyped.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/utils.rb +219 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/CHANGELOG.md +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/Gemfile +2 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/LICENSE +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/README.md +345 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/Rakefile +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof +129 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof-flamegraph.pl +2 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof-gprof2dot.py +2 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/Makefile +273 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/extconf.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/stackprof.c +1028 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/autorun.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/flamegraph/flamegraph.js +983 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/flamegraph/viewer.html +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/middleware.rb +72 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/report.rb +703 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/stackprof.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/truffleruby.rb +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/sample.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/stackprof.gemspec +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/fixtures/profile.dump +1 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/fixtures/profile.json +1 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_middleware.rb +86 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_report.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_stackprof.rb +328 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_truffleruby.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/FlameGraph/README +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/FlameGraph/flamegraph.pl +1160 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/gprof2dot/gprof2dot.py +3266 -0
- data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/gprof2dot/hotshotmain.py +70 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/README.md +202 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/bin/unparser +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/abstract_type.rb +121 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/adamantium/method_builder.rb +111 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/adamantium.rb +152 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima/attribute.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima/error.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima.rb +195 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/ast/local_variable_scope.rb +177 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/ast.rb +197 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/buffer.rb +171 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/cli.rb +203 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/color.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/comments.rb +130 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/concord.rb +114 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/constants.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/diff.rb +98 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/dsl.rb +41 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/either.rb +153 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/alias.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/args.rb +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/argument.rb +138 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/array.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/array_pattern.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/assignment.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/begin.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/binary.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/block.rb +98 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case.rb +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case_guard.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case_match.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/cbase.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/class.rb +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/const_pattern.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/def.rb +78 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/defined.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/dstr.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/dsym.rb +41 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/ensure.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/find_pattern.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/flipflop.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/float.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/flow_modifier.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/for.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hash.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hash_pattern.rb +67 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hookexe.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/if.rb +80 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/in_match.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/in_pattern.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/index.rb +65 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/kwargs.rb +13 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/kwbegin.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/lambda.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/masgn.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_alt.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_as.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_pattern.rb +26 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_pattern_p.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_rest.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_var.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/mlhs.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/module.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/op_assign.rb +47 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/pair.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/pin.rb +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/primitive.rb +106 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/range.rb +56 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/regexp.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/repetition.rb +75 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/rescue.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/root.rb +20 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/send.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/simple.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/splat.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/string.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/super.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/undef.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/variable.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/xstr.rb +79 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/yield.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/equalizer.rb +98 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/finalize.rb +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/generation.rb +256 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_details/send.rb +66 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_details.rb +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_helpers.rb +89 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/util.rb +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/validation.rb +214 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/array.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/binary.rb +103 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/dynamic_string.rb +203 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/regexp.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/resbody.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/rescue.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/attribute_assignment.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/binary.rb +27 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/conditional.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/regular.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/unary.rb +34 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send.rb +109 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer.rb +45 -0
- data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser.rb +357 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/CHANGELOG.md +2148 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/README.md +1229 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/curb_adapter.rb +354 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/response.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/streamer.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/webmock.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/Gemfile +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/README.md +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/Rakefile +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/accesslog.rb +157 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/cgi.rb +313 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/compat.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/config.rb +158 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/cookie.rb +172 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/htmlutils.rb +30 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/authenticator.rb +117 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/basicauth.rb +116 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/digestauth.rb +395 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htdigest.rb +132 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htgroup.rb +97 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htpasswd.rb +158 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/userdb.rb +53 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpproxy.rb +354 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httprequest.rb +668 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpresponse.rb +588 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/https.rb +152 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpserver.rb +294 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/abstract.rb +152 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgi_runner.rb +47 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgihandler.rb +126 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/erbhandler.rb +88 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/filehandler.rb +552 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/prochandler.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet.rb +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpstatus.rb +194 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httputils.rb +543 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpversion.rb +76 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/log.rb +156 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/server.rb +380 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/ssl.rb +219 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/utils.rb +265 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/version.rb +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick.rb +232 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/accesslog.rbs +24 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/cgi.rbs +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/compat.rbs +18 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/config.rbs +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/cookie.rbs +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/htmlutils.rbs +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/authenticator.rbs +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/basicauth.rbs +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/digestauth.rbs +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htdigest.rbs +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htgroup.rbs +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htpasswd.rbs +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/userdb.rbs +13 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth.rbs +13 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpproxy.rbs +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httprequest.rbs +167 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpresponse.rbs +117 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/https.rbs +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpserver.rbs +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/abstract.rbs +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/cgi_runner.rbs +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/cgihandler.rbs +23 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/erbhandler.rbs +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/filehandler.rbs +76 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/prochandler.rbs +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet.rbs +4 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpstatus.rbs +255 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httputils.rbs +116 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpversion.rbs +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/log.rbs +93 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/manifest.yaml +8 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/server.rbs +57 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/ssl.rbs +19 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/utils.rbs +122 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/version.rbs +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/webrick.gemspec +105 -0
- data/vendor/bundle/ruby/4.0.0/specifications/bigdecimal-4.1.0.gemspec +25 -0
- data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.3.gemspec +0 -0
- data/vendor/bundle/ruby/4.0.0/specifications/mutant-0.15.1.gemspec +38 -0
- data/vendor/bundle/ruby/4.0.0/specifications/mutant-rspec-0.15.1.gemspec +29 -0
- data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.2-x86_64-linux-gnu.gemspec +31 -0
- data/vendor/bundle/ruby/4.0.0/specifications/parser-3.3.11.1.gemspec +37 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rspec-github-2.4.0.gemspec +29 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.86.0.gemspec +39 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-ast-1.49.1.gemspec +29 -0
- data/vendor/bundle/ruby/4.0.0/specifications/sorbet-runtime-0.6.13067.gemspec +34 -0
- data/vendor/bundle/ruby/4.0.0/specifications/stackprof-0.2.28.gemspec +31 -0
- data/vendor/bundle/ruby/4.0.0/specifications/unparser-0.8.2.gemspec +39 -0
- data/vendor/bundle/ruby/4.0.0/specifications/webmock-3.26.2.gemspec +44 -0
- data/vendor/bundle/ruby/4.0.0/specifications/webrick-1.9.2.gemspec +22 -0
- data/wsdl.gemspec +2 -2
- metadata +2142 -1666
- data/docs/reference/strict-schema-fixture-matrix.md +0 -67
- data/lib/wsdl/cache.rb +0 -172
- data/lib/wsdl/http_adapter/config.rb +0 -71
- data/lib/wsdl/http_adapter/redirect_guard.rb +0 -132
- data/lib/wsdl/http_adapter.rb +0 -318
- data/lib/wsdl/http_response.rb +0 -31
- data/lib/wsdl/parser/cached_result.rb +0 -154
- data/lib/wsdl/parser/importer.rb +0 -301
- data/lib/wsdl/parser/resolver.rb +0 -450
- data/lib/wsdl/parser/result.rb +0 -257
- data/lib/wsdl/source.rb +0 -169
- data/spec/integration/amazon_spec.rb +0 -214
- data/spec/integration/awse_spec.rb +0 -202
- data/spec/integration/bookt_spec.rb +0 -73
- data/spec/integration/bronto_spec.rb +0 -304
- data/spec/integration/bydexchange_spec.rb +0 -40
- data/spec/integration/daisycon_spec.rb +0 -34
- data/spec/integration/data_exchange_spec.rb +0 -27
- data/spec/integration/document_literal_spec.rb +0 -104
- data/spec/integration/economic_spec.rb +0 -65
- data/spec/integration/email_verification_spec.rb +0 -91
- data/spec/integration/geotrust_spec.rb +0 -54
- data/spec/integration/iws_spec.rb +0 -28
- data/spec/integration/jetairways_spec.rb +0 -146
- data/spec/integration/jira_spec.rb +0 -28
- data/spec/integration/juniper_spec.rb +0 -34
- data/spec/integration/namespaced_actions_spec.rb +0 -49
- data/spec/integration/oracle_spec.rb +0 -215
- data/spec/integration/rio2_spec.rb +0 -57
- data/spec/integration/security_round_trip_spec.rb +0 -168
- data/spec/integration/spyne_spec.rb +0 -62
- data/spec/integration/stockquote_spec.rb +0 -46
- data/spec/integration/strict_schema_fixture_matrix_spec.rb +0 -108
- data/spec/integration/taxcloud_spec.rb +0 -74
- data/spec/integration/team_software_spec.rb +0 -58
- data/spec/integration/travelport_spec.rb +0 -90
- data/spec/integration/wasmuth_spec.rb +0 -61
- data/spec/integration/xsw_attack_vectors_spec.rb +0 -418
- data/spec/support/request_dsl_helper.rb +0 -144
- data/spec/wsdl/cache_spec.rb +0 -490
- data/spec/wsdl/http_adapter_integration_spec.rb +0 -198
- data/spec/wsdl/http_adapter_spec.rb +0 -524
- data/spec/wsdl/http_response_spec.rb +0 -49
- data/spec/wsdl/parser/cached_result_spec.rb +0 -287
- data/spec/wsdl/parser/resolver_spec.rb +0 -553
- data/spec/wsdl/parser/result_spec.rb +0 -355
- data/spec/wsdl/security/verifier/shared_context.rb +0 -194
- data/spec/wsdl/source_spec.rb +0 -152
- data/spec/wsdl/xml/parser_property_spec.rb +0 -305
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/gem_make.out +0 -38
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/mkmf.log +0 -458
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/gem_make.out +0 -25
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/bigdecimal.gemspec +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/Makefile +0 -274
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.c +0 -6206
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.h +0 -292
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/extconf.rb +0 -60
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.h +0 -104
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal/math.rb +0 -948
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal/util.rb +0 -186
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal.rb +0 -360
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/linear.rb +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/nlsolve.rb +0 -40
- data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/pi.rb +0 -21
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/CHANGES.md +0 -738
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/ext/json/ext/fbuffer/fbuffer.h +0 -249
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/ext/json/ext/parser/parser.c +0 -1680
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/LICENSE.md +0 -19
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/README.md +0 -526
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attribute.rb +0 -52
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/additionalitems.rb +0 -29
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/additionalproperties.rb +0 -55
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/allof.rb +0 -66
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/anyof.rb +0 -47
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/const.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/dependencies.rb +0 -39
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/dependencies_v4.rb +0 -11
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/disallow.rb +0 -13
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/divisibleby.rb +0 -22
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/enum.rb +0 -24
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/extends.rb +0 -50
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/format.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/custom.rb +0 -19
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date.rb +0 -26
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date_time.rb +0 -35
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date_time_v4.rb +0 -16
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/ip.rb +0 -41
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/time.rb +0 -22
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/uri.rb +0 -19
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/items.rb +0 -28
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limit.rb +0 -52
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/items.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/length.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_items.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_length.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_properties.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/maximum.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/maximum_inclusive.rb +0 -11
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_items.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_length.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_properties.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/minimum.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/minimum_inclusive.rb +0 -11
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/numeric.rb +0 -16
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/properties.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/maxdecimal.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/multipleof.rb +0 -11
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/not.rb +0 -30
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/oneof.rb +0 -54
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/pattern.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/patternproperties.rb +0 -23
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties.rb +0 -66
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties_optional.rb +0 -26
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties_v4.rb +0 -13
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/propertynames.rb +0 -23
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/ref.rb +0 -62
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/required.rb +0 -29
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/type.rb +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/type_v4.rb +0 -29
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/uniqueitems.rb +0 -16
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/custom_format_error.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/json_load_error.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/json_parse_error.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/schema_error.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/schema_parse_error.rb +0 -8
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/uri_error.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/validation_error.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema/reader.rb +0 -142
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema/validator.rb +0 -37
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema.rb +0 -61
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/array_set.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/uri.rb +0 -133
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/uuid.rb +0 -262
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validator.rb +0 -666
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft1.rb +0 -43
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft2.rb +0 -44
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft3.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft4.rb +0 -54
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft6.rb +0 -56
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft1.rb +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft2.rb +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft3.rb +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft4.rb +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft6.rb +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-01.json +0 -155
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-02.json +0 -166
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-03.json +0 -174
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-04.json +0 -150
- data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-06.json +0 -150
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/AGENTS.md +0 -107
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/CHANGELOG.md +0 -168
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/CODE_OF_CONDUCT.md +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/Gemfile +0 -29
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/LICENSE +0 -216
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/README.md +0 -1040
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/RELEASE.md +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/Rakefile +0 -56
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/SECURITY.md +0 -21
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/console +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/generate-gh-pages.sh +0 -119
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/rake +0 -31
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/setup +0 -8
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/README.md +0 -103
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/expected_failures.yml +0 -9
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/runner.rb +0 -101
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/server.rb +0 -547
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/dev.yml +0 -30
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/_config.yml +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/index.md +0 -7
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/latest/index.html +0 -19
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/README.md +0 -197
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/http_client.rb +0 -184
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/http_server.rb +0 -169
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/stdio_server.rb +0 -94
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/streamable_http_client.rb +0 -207
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/streamable_http_server.rb +0 -172
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/json_rpc_handler.rb +0 -171
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/annotations.rb +0 -21
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client/http.rb +0 -104
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client/tool.rb +0 -16
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client.rb +0 -159
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/configuration.rb +0 -118
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/content.rb +0 -59
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/icon.rb +0 -22
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/instrumentation.rb +0 -26
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/logging_message_notification.rb +0 -30
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/methods.rb +0 -98
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/argument.rb +0 -25
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/message.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/result.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt.rb +0 -122
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource/contents.rb +0 -44
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource/embedded.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource.rb +0 -27
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource_template.rb +0 -27
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/capabilities.rb +0 -96
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/transports/stdio_transport.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/transports/streamable_http_transport.rb +0 -380
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server.rb +0 -509
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/string_utils.rb +0 -25
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/annotations.rb +0 -27
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/input_schema.rb +0 -28
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/output_schema.rb +0 -18
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/response.rb +0 -30
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/schema.rb +0 -61
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool.rb +0 -155
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/transport.rb +0 -45
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/transports/stdio.rb +0 -15
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp.rb +0 -43
- data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/mcp.gemspec +0 -35
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +0 -2224
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +0 -43
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.10.2/lib/parser/current.rb +0 -146
- data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.10.2/lib/parser/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/config/default.yml +0 -6225
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cache_config.rb +0 -58
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/auto_generate_config.rb +0 -167
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/show_cops.rb +0 -96
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/show_docs_url.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config.rb +0 -400
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_finder.rb +0 -78
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_store.rb +0 -77
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_validator.rb +0 -291
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/argument_alignment.rb +0 -151
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/dot_position.rb +0 -139
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -217
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -311
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -139
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/end_alignment.rb +0 -214
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -403
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/space_around_keyword.rb +0 -274
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/constant_reassignment.rb +0 -148
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -398
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -148
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -64
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_when.rb +0 -61
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/number_conversion.rb +0 -200
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -260
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -116
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -55
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -71
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -90
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -47
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/registry.rb +0 -318
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/and_or.rb +0 -158
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/arguments_forwarding.rb +0 -564
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/ascii_comments.rb +0 -60
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/block_delimiters.rb +0 -504
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/collection_compact.rb +0 -143
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/concat_array_literals.rb +0 -95
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/conditional_assignment.rb +0 -670
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/empty_class_definition.rb +0 -97
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/file_open.rb +0 -84
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/global_vars.rb +0 -81
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/hash_lookup_method.rb +0 -94
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -351
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/if_with_semicolon.rb +0 -132
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/ip_addresses.rb +0 -75
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/magic_comment_format.rb +0 -307
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -59
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/mutable_constant.rb +0 -246
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/non_nil_check.rb +0 -158
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/numeric_literals.rb +0 -130
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/raise_args.rb +0 -160
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_each.rb +0 -119
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_parentheses.rb +0 -361
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_percent_q.rb +0 -107
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -90
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/safe_navigation.rb +0 -427
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/single_line_block_params.rb +0 -119
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/symbol_proc.rb +0 -282
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -62
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/yoda_expression.rb +0 -92
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/disabled_config_formatter.rb +0 -297
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/junit_formatter.rb +0 -143
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -64
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/lsp/routes.rb +0 -256
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/mcp/server.rb +0 -174
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/path_util.rb +0 -122
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/plugin/loader.rb +0 -100
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/result_cache.rb +0 -250
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/rspec/shared_contexts.rb +0 -275
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/runner.rb +0 -529
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/server/core.rb +0 -116
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/target_finder.rb +0 -221
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/version.rb +0 -160
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler/binding.rb +0 -78
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler/node_pattern_subcompiler.rb +0 -146
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +0 -419
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex.rb +0 -184
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/parser.racc.rb +0 -470
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern.rb +0 -127
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/traversal.rb +0 -193
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/version.rb +0 -9
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/CHANGELOG.md +0 -2134
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/README.md +0 -1226
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/curb_adapter.rb +0 -353
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/response.rb +0 -87
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/streamer.rb +0 -37
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/webmock.rb +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/specifications/bigdecimal-4.0.1.gemspec +0 -25
- data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.0.gemspec +0 -0
- data/vendor/bundle/ruby/4.0.0/specifications/json-schema-6.2.0.gemspec +0 -28
- data/vendor/bundle/ruby/4.0.0/specifications/mcp-0.8.0.gemspec +0 -27
- data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.1-x86_64-linux-gnu.gemspec +0 -31
- data/vendor/bundle/ruby/4.0.0/specifications/parser-3.3.10.2.gemspec +0 -37
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.85.1.gemspec +0 -40
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-ast-1.49.0.gemspec +0 -29
- data/vendor/bundle/ruby/4.0.0/specifications/webmock-3.26.1.gemspec +0 -44
- /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/a.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/b.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/root.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/malicious/path_traversal.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/qname_collisions/a.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/qname_collisions/b.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/qname_collisions/root.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/unresolved_references/binding.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/unresolved_references/message.wsdl +0 -0
- /data/spec/fixtures/{wsdl → parser}/unresolved_references/port_type.wsdl +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.0 → json-2.19.3}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.0 → json-2.19.3}/mkmf.log +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/bits.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/feature.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/missing/dtoa.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/missing.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/static_assert.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/jacobian.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/ludcmp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/newton.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/BSDL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/COPYING +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/LEGAL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/generator.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/json.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/parser/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/parser/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/simd/conf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/simd/simd.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/vendor/fpconv.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/vendor/ryu.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/json.gemspec +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/bigdecimal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/complex.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/core.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/date.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/date_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/ostruct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/rational.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/symbol.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/common.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/ext/generator/state.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/ext.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/generic_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/truffle_ruby/generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/Gemfile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/bin/nokogiri +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/dependencies.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/depend +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/gumbo.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_document.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_element_description.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_entity_lookup.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser_context.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/html4_sax_push_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exslt.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltconfig.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX2.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/c14n.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/catalog.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/chvalid.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/debugXML.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/dict.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/encoding.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/entities.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/globals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/hash.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/list.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanoftp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanohttp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parser.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parserInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/pattern.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/relaxng.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schematron.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/threads.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/tree.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/uri.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/valid.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xinclude.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xlink.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlIO.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlerror.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlreader.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlsave.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlstring.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlversion.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpath.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpointer.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/attributes.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/documents.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extensions.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extra.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/functions.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/imports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/keys.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/namespaces.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/numbersInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/pattern.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/preproc.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/security.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/templates.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/transform.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/variables.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xslt.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltconfig.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltlocale.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltutils.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/libxml2_polyfill.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/nokogiri.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/nokogiri.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/test_global_handlers.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_attr.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_attribute_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_cdata.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_comment.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_document.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_document_fragment.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_dtd.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_element_content.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_element_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_encoding_handler.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_entity_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_entity_reference.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_namespace.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_node.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_node_set.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_processing_instruction.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_reader.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_relax_ng.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser_context.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_sax_push_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_schema.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_syntax_error.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_text.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xml_xpath_context.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/ext/nokogiri/xslt_stylesheet.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/gumbo-parser/CHANGES.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/gumbo-parser/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/gumbo-parser/THANKS +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/3.2/nokogiri.so +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/3.3/nokogiri.so +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/3.4/nokogiri.so +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/4.0/nokogiri.so +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/class_resolver.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/parser.y +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/parser_extras.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/selector_cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/tokenizer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/tokenizer.rex +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css/xpath_visitor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/css.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/decorators/slop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/encoding_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/extension.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/gumbo.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/element_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/element_description_defaults.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/encoding_reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/entity_lookup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4/sax/push_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html4.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html5/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html5/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html5/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html5/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/html5.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/jruby/dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/version/info.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/attr.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/attribute_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/cdata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/character_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/dtd.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/element_content.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/element_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/entity_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/entity_reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/namespace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/node/save_options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/node_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/notation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/parse_options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/pp/character_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/pp/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/pp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/processing_instruction.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/relax_ng.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/sax/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/sax/push_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/sax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/schema.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/searchable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/text.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/xpath/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/xpath.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml/xpath_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xml.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xslt/stylesheet.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri/xslt.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/nokogiri.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.1-x86_64-linux-gnu → nokogiri-1.19.2-x86_64-linux-gnu}/lib/xsd/xmlparser/nokogiri.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/bin/ruby-parse +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/bin/ruby-rewrite +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/gauntlet_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/all.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ast/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ast/processor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/builders/default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/clobbering_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/color.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/current_arg_stack.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/deprecation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/diagnostic/engine.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer/dedenter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer/explanation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer/literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer/stack_state.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer-F0.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer-F1.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/lexer-strings.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/macruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/max_numparam_stack.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/messages.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/meta.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby18.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby19.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby20.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby21.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby22.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby23.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby24.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby25.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby26.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby27.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby30.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby31.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby32.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby33.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby34.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/rubymotion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/runner/ruby_parse.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/runner/ruby_rewrite.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/buffer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/comment/associator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/collection.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/for.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/objc_kwarg.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/rescue_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/send.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/ternary.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map/variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/map.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/rewriter/action.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/tree_rewriter/action.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/source/tree_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/static_environment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/tree_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/unknown_encoding_in_magic_comment_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/variables_stack.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/parser.gemspec +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/logo.png +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/output.css.erb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/output.html.erb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/config/internal_affairs.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/config/obsoletion.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/exe/rubocop +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/arguments_env.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/arguments_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ast_aliases.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cached_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/execute_runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/lsp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/mcp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/environment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/comment_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_loader_resolver.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_regeneration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/badge.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/gem_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/gem_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/commissioner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/documentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/exclude_limit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/force.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/ignored_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/itblock_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/case_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/class_structure.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/condition_position.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/indentation_width.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/line_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/redundant_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_brackets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/legacy/corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/data_define_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/debugger.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/else_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/float_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/literal_as_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/missing_super.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/rand_one.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_with_index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/redundant_with_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/script_permission.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/struct_new_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/symbol_conversion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/to_json.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unreachable_pattern_branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_or.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/useless_times.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/void.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/message_annotator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/block_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/class_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/method_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/module_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/migration/department_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/code_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/def_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/duplication.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/hash_transform_method/autocorrection.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/match_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/range_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/require_library.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/string_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/constant_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/file_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/predicate_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/predicate_prefix.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/naming/variable_number.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/offense.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/compound_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/eval.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/io_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/json_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/marshal_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/open.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/yaml_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/severity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/alias.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/array_coercion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/array_first_last.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/array_intersect.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/array_join.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/attr.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/begin_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/block_comments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/case_equality.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/case_like_if.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/character_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/class_vars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/collection_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/collection_querying.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/combinable_loops.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/command_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/comparable_between.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/copyright.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/date_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/dig_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/dir.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/dir_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/documentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/documentation_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/double_negation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/each_with_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/encoding.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/endless_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/env_home.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/even_odd.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/file_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/file_null.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/file_read.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/file_touch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/file_write.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/float_division.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/for.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/format_string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/format_string_token.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/guard_clause.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_except.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_slice.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/inline_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/it_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/lambda.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/lambda_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/map_into_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/map_join.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/map_to_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/method_def_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/min_max.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/min_max_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/missing_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/module_function.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/module_member_existence_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_if_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/negated_if.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/negated_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/negated_while.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/negative_array_index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/next.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/object_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/one_class_per_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/option_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/or_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/parallel_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/partition_instead_of_double_select.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/predicate_with_kind.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/proc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/reduce_to_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_format.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_min_max_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_return.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_self.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/redundant_struct_keyword_init.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/regexp_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/require_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/return_nil.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/reverse_find.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/sample.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/select_by_kind.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/select_by_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/send.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/signal_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/static_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_chars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/string_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/strip.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/super_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/swap_values.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/tally_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/unless_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/unpack_first.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/when_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/while_until_do.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/word_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/team.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/utils/format_string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/scope.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cops_documentation_generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/core_ext/string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/directive_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/processed_source.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/regexp_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/feature_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/file_finder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/file_patterns.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/clang_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/colorizable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/html_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/json_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/text_util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lockfile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/disable_comment_edits.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/logger.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/runtime.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/severity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/stdin_runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/name_similarity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/pending_cops_reporter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/platform.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin/load_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin/not_supported_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rake_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/remote_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/support.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/cli.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/restart.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/start.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/status.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/server_command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/server_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/server_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/server_command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/socket_reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/string_interpreter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/target_ruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/warning.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/yaml_duplication_checker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/ruby_lsp/rubocop/addon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/builder_prism.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/ext/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/alias_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/and_asgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/and_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/arg_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/args_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/array_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/asgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/block_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/break_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/case_match_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/case_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/casgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/class_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/complex_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/const_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/csend_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/def_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/defined_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/dstr_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/ensure_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/float_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/for_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/forward_args_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/hash_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/if_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/in_pattern_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/index_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/indexasgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/int_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/keyword_begin_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/keyword_splat_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/lambda_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/masgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/collection_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/constant_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/descendence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/numeric_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/mlhs_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/module_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/next_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/op_asgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/or_asgn_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/or_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/pair_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/procarg0_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/range_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/rational_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/regexp_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/resbody_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/rescue_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/return_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/self_class_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/send_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/str_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/super_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/symbol_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/until_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/var_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/when_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/while_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node/yield_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/compiler/atom_subcompiler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/compiler/debug.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/compiler/subcompiler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/compiler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/lexer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/lexer.rex +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/method_definer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/parser.y +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/sets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/node_pattern/with_meta.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/processed_source.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/rubocop_compatibility.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/sexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/token.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast/utilities/simple_forwardable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop-ast.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/api.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/assertion_failure.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/callback_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/cucumber.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/deprecation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/async_http_client_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/excon_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/http_lib_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/http_rb/client.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/http_rb/request.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/http_rb_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/httpclient_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/manticore_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/net_http.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/net_http_response.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/patron_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/matchers/any_arg_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/matchers/hash_argument_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/matchers/hash_excluding_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/matchers/hash_including_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/minitest.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rack_response.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_body_diff.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_execution_verifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_signature.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_signature_snippet.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_stub.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/response.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/responses_sequence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec/matchers/request_pattern_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec/matchers/webmock_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec/matchers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/stub_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/stub_request_snippet.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/test_unit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/hash_counter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/hash_keys_stringifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/hash_validator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/headers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/parsers/json.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/parsers/parse_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/parsers/xml.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/query_mapper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/uri.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/values_stringifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/version_checker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/webmock.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 044e32ff942cf640331b3f1d46c0eb97671808f46b84bc7448c7da006f258e4b
|
|
4
|
+
data.tar.gz: d3d7195b2fa0a137563588ce73a7a2d3e1ce0c0d969737b063dbf50cccdc590d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63e158807c68530a300551f7731dea515a20abd40060d97e8fd2620c8b7d4fa6b5b611fb68aab440350631c86665dfb8c241f9f8f59c13568f61c728d9203b7c
|
|
7
|
+
data.tar.gz: 24da4db1155a9d0238559a3ba55c2aa64e2bfa3f395a00087f9a0742782a1827104a026ac1d9628eab921701db54bf33e90eabb9071186e0494afece704fb064
|
data/.gitignore
CHANGED
data/AGENTS.md
CHANGED
|
@@ -1,107 +1,35 @@
|
|
|
1
1
|
# AGENTS.md
|
|
2
2
|
|
|
3
|
-
WSDL toolkit for Ruby. Turn WSDL 1.1 documents into inspectable
|
|
3
|
+
WSDL toolkit for Ruby. Turn WSDL 1.1 documents into inspectable definitions and callable operations.
|
|
4
|
+
|
|
5
|
+
## Priorities
|
|
6
|
+
|
|
7
|
+
- **Developer happiness** — clear errors, good defaults, minimal configuration
|
|
8
|
+
- **Code quality** — 100% YARD docs, 95%+ coverage, clean RuboCop, no shortcuts
|
|
9
|
+
- **Security** — maintain and extend defenses (XXE, SSRF, XML Signature); never regress
|
|
10
|
+
- **Specification compliance** — code must conform to W3C/OASIS specs; local copies in `docs/reference/specs/`, overview in `docs/reference/specifications.md`
|
|
11
|
+
- **Automation** — build tools that verify correctness, enforce quality, and reduce manual work
|
|
12
|
+
- **Performance** — the parser is designed for speed; measure before and after changes
|
|
4
13
|
|
|
5
14
|
## Getting Started
|
|
6
15
|
|
|
7
|
-
|
|
8
|
-
bundle install # Install dependencies
|
|
9
|
-
bundle exec rspec # Run tests
|
|
10
|
-
bundle exec rubocop # Run linter
|
|
11
|
-
bundle exec rake ci # Run all checks (CI task)
|
|
12
|
-
bundle exec rake benchmark # Run performance benchmarks
|
|
13
|
-
bundle exec yard # Generate YARD documentation
|
|
14
|
-
```
|
|
16
|
+
@docs/contributing/development.md
|
|
15
17
|
|
|
16
18
|
## Key Concepts
|
|
17
19
|
|
|
18
|
-
- **
|
|
20
|
+
- **Definition** — Frozen IR of a parsed WSDL service (`lib/wsdl/definition.rb`). Created by `WSDL.parse`, serialized by `WSDL.dump`, restored by `WSDL.load`. Provides discovery, introspection, provenance, and serialization. Everything downstream operates on the Definition.
|
|
21
|
+
- **Client** — Wraps a Definition with an HTTP client for calling operations (`lib/wsdl/client.rb`)
|
|
19
22
|
- **Operation** — Callable SOAP operation with body, headers, and security
|
|
20
|
-
- **Parser** — Parses WSDL and XSD documents
|
|
23
|
+
- **Parser** — Parses WSDL and XSD documents into intermediate structures consumed by the Definition Builder
|
|
21
24
|
- **Request DSL + Serializer** — `operation.prepare { ... }` builds a `Request::Envelope` and `WSDL::Request::Serializer` / `Operation#to_xml` produce SOAP XML
|
|
22
25
|
- **Response** — Wraps SOAP responses with parsing and verification
|
|
23
26
|
- **Security** — WS-Security implementation (see `docs/security/ws-security.md`)
|
|
24
27
|
|
|
25
|
-
## Workflow
|
|
26
|
-
|
|
27
|
-
1. **Always make a plan first.** Propose a plan and wait for explicit confirmation before making changes.
|
|
28
|
-
|
|
29
|
-
2. **Run quality checks after every code change.** Run `bundle exec rake ci` to ensure both RuboCop and RSpec pass. Never consider a task complete until CI is green. Let RuboCop autofix problems.
|
|
30
|
-
|
|
31
|
-
3. **Follow the official specifications.** Code must conform to the W3C and OASIS specifications in `docs/reference/specifications.md`.
|
|
32
|
-
|
|
33
|
-
4. **Update documentation after every change.** Check if YARD docs, `docs/` folder, `AGENTS.md`, or `README.md` need updates. Run `bundle exec yard` to verify.
|
|
28
|
+
## Workflow
|
|
34
29
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
- Ruby 3.3+ with modern idioms (shorthand hash syntax, Data classes)
|
|
38
|
-
- `# frozen_string_literal: true` at the top of every file
|
|
39
|
-
- Single quotes for strings, 120 character max line length
|
|
40
|
-
- Semantic blocks: `do...end` for side effects, `{...}` for return values
|
|
41
|
-
- Readability comes first. When a linting rule conflicts with clear code:
|
|
42
|
-
1. Try refactoring — extract a method, simplify logic, etc.
|
|
43
|
-
2. If the code is already clean, add an inline `rubocop:disable` comment.
|
|
44
|
-
3. If inline disables accumulate for the same rule, relax it in `.rubocop.yml`.
|
|
45
|
-
- Never degrade code quality (shorten docs, remove blank lines, merge logic) just to satisfy a metric.
|
|
30
|
+
- **CI must pass before a task is complete.** Run `bundle exec rake ci` (lint + YARD audit + tests). RuboCop runs automatically on every file edit via a hook — let it autofix.
|
|
31
|
+
- **When implementing protocol behavior**, consult the local spec docs in `docs/reference/specs/` and reference the relevant section.
|
|
46
32
|
|
|
47
33
|
## Testing
|
|
48
34
|
|
|
49
|
-
|
|
50
|
-
- Use existing fixtures in `spec/fixtures/` (45+ real-world WSDLs)
|
|
51
|
-
- Unit tests in `spec/wsdl/` mirror `lib/wsdl/` structure
|
|
52
|
-
- Integration tests in `spec/integration/`
|
|
53
|
-
|
|
54
|
-
## Documentation
|
|
55
|
-
|
|
56
|
-
- Complete YARD docs for all public methods (enforced by `rubocop-yard`)
|
|
57
|
-
- Use proper YARD type syntax: `Hash{String => String}` not `Hash<String, String>`
|
|
58
|
-
- Use the latest YARD version and features where possible; review updates in `https://rubydoc.info/gems/yard/file/docs/WhatsNew.md`
|
|
59
|
-
- Detailed docs live in `docs/` folder; keep README brief
|
|
60
|
-
|
|
61
|
-
## Error Handling
|
|
62
|
-
|
|
63
|
-
Exception definitions and the current hierarchy are in `lib/wsdl/errors.rb` (source of truth).
|
|
64
|
-
|
|
65
|
-
General guidance:
|
|
66
|
-
|
|
67
|
-
- Use `WSDL::Error` for recoverable domain errors that callers may reasonably handle and continue from.
|
|
68
|
-
- Use `WSDL::FatalError` for non-recoverable conditions, especially security violations or hard safety constraints that must not be ignored.
|
|
69
|
-
- New custom exceptions should inherit from one of these two base classes and be defined in `lib/wsdl/errors.rb`.
|
|
70
|
-
|
|
71
|
-
## Naming Conventions
|
|
72
|
-
|
|
73
|
-
- Class/module names should match their role (`*Parser`, `*Validator`, `*Resolver`, `*Contract`, `*Policy`, `*Context`, `*Builder` when actually building structures).
|
|
74
|
-
- Keep namespaces and file paths aligned (e.g., `WSDL::Parser::Result` in `lib/wsdl/parser/result.rb`).
|
|
75
|
-
- Predicate methods: `?` suffix and boolean return values (e.g., `configured?`).
|
|
76
|
-
- Bang methods: `!` suffix for strict/raising or state-changing variants (e.g., `validate!`, `verify!`, `seal!`).
|
|
77
|
-
- Exception classes: `*Error` suffix and inheritance from `WSDL::Error` or `WSDL::FatalError`.
|
|
78
|
-
- Avoid generic names like `Helper`, `Manager`, or `Utils` unless the scope is very narrow and explicit.
|
|
79
|
-
|
|
80
|
-
## Security
|
|
81
|
-
|
|
82
|
-
WS-Security docs: `docs/security/ws-security*.md`
|
|
83
|
-
|
|
84
|
-
Key points:
|
|
85
|
-
- Never log or expose private keys, passwords, or tokens
|
|
86
|
-
- Use constants from `WSDL::Security::Constants` — never hardcode namespace URIs
|
|
87
|
-
- SHA-256 is the default for X.509 signatures
|
|
88
|
-
- UsernameToken digest uses SHA-1 (spec-mandated, not a bug)
|
|
89
|
-
|
|
90
|
-
## Common Pitfalls
|
|
91
|
-
|
|
92
|
-
- **XML Namespaces** — Use constants (`WSDL::NS::SOAP_1_1`, `WSDL::Security::Constants::NS::Security::WSSE`), never hardcode URIs
|
|
93
|
-
- **WSDL Variability** — Test against multiple fixtures; don't assume consistent structure
|
|
94
|
-
- **SOAP Versions** — 1.1 and 1.2 use different namespaces; the WSDL determines which to use
|
|
95
|
-
- **Import Resolution** — Relative imports require a base location; see `UnresolvableImportError`
|
|
96
|
-
|
|
97
|
-
## Quick Links
|
|
98
|
-
|
|
99
|
-
| Resource | Path |
|
|
100
|
-
|----------|------|
|
|
101
|
-
| Main entry point | `lib/wsdl/client.rb` |
|
|
102
|
-
| Error definitions | `lib/wsdl/errors.rb` |
|
|
103
|
-
| Namespace constants | `lib/wsdl/ns.rb` |
|
|
104
|
-
| Security constants | `lib/wsdl/security/constants.rb` |
|
|
105
|
-
| WS-Security docs | `docs/security/ws-security.md` |
|
|
106
|
-
| Specifications | `docs/reference/specifications.md` |
|
|
107
|
-
| Benchmarks | `docs/reference/benchmarks.md` |
|
|
35
|
+
Every public method must be tested, 100% coverage is a must. See [Testing docs](docs/contributing/testing.md) for test structure, fixtures, helpers, and coverage requirements.
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,136 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [1.1.0] — 2026-03-29
|
|
6
|
+
|
|
7
|
+
**Upgrading?** See the [migration guide](#migrating-from-10) below.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `WSDL.parse`, `WSDL.dump`, and `WSDL.load` entry points for explicit control over when fetching/parsing happens. `WSDL.parse` returns a frozen, serializable `Definition`. `WSDL.dump` serializes one to a hash. `WSDL.load` restores one from a cached hash.
|
|
12
|
+
- `WSDL::Definition` — frozen intermediate representation of everything the library knows about a WSDL service. Provides discovery (`services`, `ports`, `operations`), introspection (`input`, `input_header`, `output`, `output_header`), DSL generation (`to_dsl`), provenance (`sources`, `fingerprint`), and serialization (`WSDL.dump`, `to_h`, `to_json`).
|
|
13
|
+
- `Client.new` accepts a `Definition` as its first argument, skipping parsing entirely. All `Client` methods route through the `Definition`.
|
|
14
|
+
- `Definition#verify!` raises `DefinitionError` if any operations could not be fully resolved. This is the opt-in strict check — parsing itself is always best-effort.
|
|
15
|
+
- `Definition#build_issues` provides transparency into operations that could not be fully resolved, with error details for each.
|
|
16
|
+
- `WSDL::DefinitionError` — raised by `Definition#verify!`, carries all build issues with `error.issues` for programmatic access.
|
|
17
|
+
- Source provenance with SHA-256 content digests for every fetched document. Enables fingerprint-based change detection.
|
|
18
|
+
- `Client#definition` accessor returns the `Definition` for the client's WSDL.
|
|
19
|
+
- Operation overloading support per WSDL 1.1 §2.4.5. Same-named operations with different input/output messages are stored correctly and disambiguated via `client.operation(:Svc, :Port, :Op, input_name: :InputName)`. WS-I Basic Profile R2304 validation in strict mode raises `OperationOverloadError`.
|
|
20
|
+
- `client.services` now includes an `operations` array for each port, listing all available operations. Overloaded operations include `input_name` for disambiguation.
|
|
21
|
+
- Extract XML attributes from response elements into the parsed hash with `_`-prefixed keys (e.g., `transactionKey="TXN-123"` → `_transactionKey: "TXN-123"`). Attributes are type-coerced when schema metadata is available.
|
|
22
|
+
- One-way operations (no `<output>` message) are now supported. Response contract returns empty elements and `output_style` returns `nil`.
|
|
23
|
+
- `strictness:` provides granular control over 4 validation concerns: `schema_imports`, `schema_references`, `operation_overloading`, `request_validation`. Accepts a hash (`strictness: { schema_imports: false }`), boolean (`strictness: false`), or object.
|
|
24
|
+
- All `ResourceLimitError` and strictness error messages now include copy-pasteable fix examples (e.g., `limits: { max_schemas: 51 }`, `strictness: { schema_imports: false }`).
|
|
25
|
+
- `limits:` now accepts a hash shorthand (`limits: { max_schemas: 200 }`) in addition to a `Limits` object.
|
|
26
|
+
- All 46 XSD built-in types are now explicitly handled by `TypeCoercer`. List types (`IDREFS`, `ENTITIES`, `NMTOKENS`) are now get coerced into arrays.
|
|
27
|
+
- `xs:group` (model group) references are now resolved and their elements expanded, mirroring the existing `xs:attributeGroup` support.
|
|
28
|
+
- `xs:list` simpleType derivation is now supported for both elements and attributes. List values are parsed by splitting on whitespace, with per-item type coercion based on the `itemType`. Built by joining array values with spaces.
|
|
29
|
+
- `xs:union` simpleType derivation is now supported for both elements and attributes. The first `memberType` is used as the base type for coercion.
|
|
30
|
+
- `Element#kind` returns `:simple`, `:complex`, or `:recursive` for programmatic dispatch. Included in both `paths` and `tree` contract output.
|
|
31
|
+
- `Attribute#to_h` provides a consistent hash representation. Contract `paths` and `tree` now return identical attribute metadata including `name`, `type`, `required`, and `list`.
|
|
32
|
+
- `operation.invoke { ... }` accepts an optional block, combining `prepare` and `invoke` into a single call.
|
|
33
|
+
- `operation.to_xml(pretty: true)` for formatted XML output. Request XML is compact by default.
|
|
34
|
+
- `Client` is thread-safe. Multiple threads can share a `Client` and create `Operation` instances concurrently.
|
|
35
|
+
- Type coercion failures are now logged at debug level, making silent string fallbacks visible.
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- `Client.new` only accepts a `Definition` instance. Use `WSDL.parse(source)` to create one. Parse-time options (`strictness:`, `limits:`, `sandbox_paths:`) belong on `WSDL.parse`, runtime options (`strictness:`, `limits:`) on `Client.new`.
|
|
40
|
+
- Removed built-in parse cache (`WSDL.cache`, `Cache` class, `cache:` parameter on `Client.new` and `WSDL.parse`). `Definition` is serializable via `WSDL.dump`/`to_h`/`to_json`/`from_h` — cache at the Definition level instead (file, Redis, etc.).
|
|
41
|
+
- Nokogiri dependency relaxed from `~> 1.19, >= 1.19.1` to `>= 1.19.1` to allow Nokogiri 1.20+.
|
|
42
|
+
- Removed `cache_key` contract from HTTP clients. Custom clients no longer need to implement `#cache_key`.
|
|
43
|
+
- Removed `InvalidHTTPAdapterError` (was only used for `cache_key` validation).
|
|
44
|
+
- `WSDL::HTTPAdapter` renamed to `WSDL::HTTP::Client`. Config, RedirectGuard, and Response moved into the `WSDL::HTTP` namespace. `WSDL.http_adapter` accessor renamed to `WSDL.http_client`.
|
|
45
|
+
- `WSDL::HTTPResponse` renamed to `WSDL::HTTP::Response`.
|
|
46
|
+
- Removed `WSDL.strictness` and `WSDL.limits` global setters. Pass `strictness:` and `limits:` as kwargs on `WSDL.parse` or `Client.new` instead. Defaults are sensible — no configuration needed for most use cases.
|
|
47
|
+
- I/O concerns extracted from `Parser` into `WSDL::Resolver` namespace (`Resolver::Source`, `Resolver::Loader`, `Resolver::Importer`). Old `Source`, `Parser::Resolver`, and `Parser::Importer` classes removed.
|
|
48
|
+
- Element tree building is always best-effort. Unresolvable types, missing elements, and resource limits are recorded as build issues rather than raising exceptions. Operations are included in the `Definition` with whatever data was successfully collected.
|
|
49
|
+
- `BindingOperation#find_input_child_nodes` returns `[]` for missing `<input>` instead of raising.
|
|
50
|
+
- `PortTypeOperation#input` returns `nil` for missing `<input>` (matching how `output` already handled missing `<output>`).
|
|
51
|
+
- `MessageParts` records issues via an issues pipeline instead of raising for missing messages and header references.
|
|
52
|
+
- `ElementBuilder` always uses lenient schema resolution (`find_*` instead of `fetch_*`) and records issues via the pipeline. Nesting depth and element/attribute count limits are recorded as resource limit issues.
|
|
53
|
+
- Removed `format_xml` option from `Config`, `Client`, and `Operation`. Request XML is now always compact. Use `operation.to_xml(pretty: true)` when formatted output is needed.
|
|
54
|
+
- `response.xml` replaces `response.raw`.
|
|
55
|
+
- Removed `response.envelope_hash` (and `to_envelope_hash` alias) from the public API. Use `response.body` and `response.header` for schema-aware access, or `response.doc` for direct XML access.
|
|
56
|
+
- Removed `response.xpath`. Use `response.doc.xpath` instead.
|
|
57
|
+
|
|
58
|
+
### Removed
|
|
59
|
+
|
|
60
|
+
- `strict_schema:` keyword on `Client.new` and `Config.new`. Use `strictness:` instead.
|
|
61
|
+
|
|
62
|
+
### Fixed
|
|
63
|
+
|
|
64
|
+
- RPC/literal responses now receive schema-aware type coercion. Previously, the RPC wrapper element prevented the parser from matching schema parts, so all values were returned as strings instead of typed Ruby objects (Integer, Date, BigDecimal, etc.).
|
|
65
|
+
- Documents without a root XML element (empty files, binary content, truncated XML, non-XML responses from imports) now raise `WSDL::Error` instead of `NoMethodError`.
|
|
66
|
+
- Binding operations missing a required `<input>` element now raise `WSDL::UnresolvedReferenceError` instead of `NoMethodError`.
|
|
67
|
+
- Binding operations not found in the referenced portType now raise `WSDL::UnresolvedReferenceError` instead of `KeyError`.
|
|
68
|
+
- Unknown XSD built-in types (e.g., `xsd:nonExistentType`) now raise `WSDL::UnresolvedReferenceError` in strict schema mode instead of being silently treated as simple types.
|
|
69
|
+
- Overloaded operations no longer silently overwrite each other. Previously, the second definition just replaced the first.
|
|
70
|
+
- Schema resolution now degrades gracefully when `schema_references` strictness is relaxed.
|
|
71
|
+
- Integer type coercion no longer interprets leading zeros as octal (`"010"` → `10`, not `8`). XSD integers are strictly base-10 per §3.3.13.1.
|
|
72
|
+
- Float/double coercion now handles XSD special values `INF`, `-INF`, and `NaN` per §3.2.4.1/§3.2.5.1.
|
|
73
|
+
- `Verifier#find_element_by_id` now validates the ID format itself (defense-in-depth) instead of relying on callers to pre-validate, hardening against XPath injection.
|
|
74
|
+
|
|
75
|
+
### Migrating from 1.0
|
|
76
|
+
|
|
77
|
+
**Client initialization** now takes a `Definition` instead of a URL:
|
|
78
|
+
|
|
79
|
+
```ruby
|
|
80
|
+
# Before
|
|
81
|
+
client = WSDL::Client.new("service.wsdl")
|
|
82
|
+
|
|
83
|
+
# After
|
|
84
|
+
definition = WSDL.parse("service.wsdl")
|
|
85
|
+
client = WSDL::Client.new(definition)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Parse-time options (`strictness:`, `limits:`, `sandbox_paths:`) go on `WSDL.parse`.
|
|
89
|
+
|
|
90
|
+
**Caching** — the built-in cache is gone. Serialize Definitions instead:
|
|
91
|
+
|
|
92
|
+
```ruby
|
|
93
|
+
File.write("def.json", definition.to_json)
|
|
94
|
+
definition = WSDL.load(JSON.parse(File.read("def.json")))
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**Global setters removed** — pass `strictness:` and `limits:` as kwargs:
|
|
98
|
+
|
|
99
|
+
```ruby
|
|
100
|
+
# Before
|
|
101
|
+
WSDL.strictness = false
|
|
102
|
+
|
|
103
|
+
# After
|
|
104
|
+
definition = WSDL.parse("service.wsdl", strictness: false)
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**`strict_schema:` removed** — use `strictness:` with granular keys:
|
|
108
|
+
|
|
109
|
+
```ruby
|
|
110
|
+
WSDL.parse(url, strictness: { schema_imports: false, request_validation: false })
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**HTTP namespace** changed:
|
|
114
|
+
|
|
115
|
+
| Before | After |
|
|
116
|
+
|---|---|
|
|
117
|
+
| `WSDL::HTTPAdapter` | `WSDL::HTTP::Client` |
|
|
118
|
+
| `WSDL::HTTPResponse` | `WSDL::HTTP::Response` |
|
|
119
|
+
| `WSDL.http_adapter` | `WSDL.http_client` |
|
|
120
|
+
|
|
121
|
+
**Response API** changed:
|
|
122
|
+
|
|
123
|
+
| Before | After |
|
|
124
|
+
|---|---|
|
|
125
|
+
| `response.raw` | `response.xml` |
|
|
126
|
+
| `response.envelope_hash` | `response.body` / `response.header` |
|
|
127
|
+
| `response.xpath(expr)` | `response.doc.xpath(expr)` |
|
|
128
|
+
|
|
129
|
+
**`format_xml` removed** — use `operation.to_xml(pretty: true)` instead.
|
|
130
|
+
|
|
131
|
+
**Error handling** — parsing is now best-effort. Use `definition.build_issues` to inspect problems and `definition.verify!` to opt into strict validation.
|
|
132
|
+
|
|
133
|
+
## [1.0.0] — 2026-03-06
|
|
4
134
|
|
|
5
135
|
Initial public release.
|
|
6
136
|
|
|
@@ -17,7 +147,6 @@ Initial public release.
|
|
|
17
147
|
|
|
18
148
|
- Full WSDL 1.1 parsing with recursive XSD import/include resolution
|
|
19
149
|
- Strict and relaxed schema import modes for incomplete or malformed schemas
|
|
20
|
-
- In-memory LRU cache with configurable TTL and max entries for parsed definitions
|
|
21
150
|
- Sandbox path restrictions to prevent path traversal attacks
|
|
22
151
|
- Configurable iteration limits for schema import cycles
|
|
23
152
|
|
|
@@ -61,7 +190,7 @@ Initial public release.
|
|
|
61
190
|
|
|
62
191
|
### HTTP
|
|
63
192
|
|
|
64
|
-
- Stdlib `net/http`
|
|
193
|
+
- Stdlib `net/http` client with no external HTTP dependencies
|
|
65
194
|
- HTTPS-only by default with configurable TLS settings
|
|
66
195
|
- Redirect following with SSRF-safe target validation
|
|
67
196
|
- Transparent gzip decompression disabled to prevent gzip bomb attacks
|
|
@@ -72,10 +201,14 @@ Initial public release.
|
|
|
72
201
|
- Global and per-client configuration with thread-safe defaults
|
|
73
202
|
- 11 configurable resource limits (document size, schema count, nesting depth, and more)
|
|
74
203
|
- Pluggable logger (defaults to silent `NullLogger`)
|
|
75
|
-
- Pluggable HTTP
|
|
204
|
+
- Pluggable HTTP client
|
|
76
205
|
|
|
77
206
|
### Dependencies
|
|
78
207
|
|
|
79
208
|
- **nokogiri** (>= 1.19.1) for XML parsing and C14N
|
|
80
209
|
- **base64** for encoding/decoding
|
|
81
210
|
- All cryptography delegated to Ruby's built-in **OpenSSL**
|
|
211
|
+
|
|
212
|
+
[Unreleased]: https://github.com/rubiii/wsdl/compare/v1.1.0...HEAD
|
|
213
|
+
[1.1.0]: https://github.com/rubiii/wsdl/compare/v1.0.0...v1.1.0
|
|
214
|
+
[1.0.0]: https://github.com/rubiii/wsdl/releases/tag/v1.0.0
|
data/CONTRIBUTING.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Contributing to WSDL
|
|
2
2
|
|
|
3
|
-
Thanks for your interest in contributing!
|
|
3
|
+
Thanks for your interest in contributing!
|
|
4
4
|
|
|
5
5
|
Please note that this project is released with a [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
6
6
|
By participating, you agree to abide by its terms.
|
|
@@ -13,85 +13,35 @@ and any relevant WSDL fixtures. You will receive a response within 48 hours.
|
|
|
13
13
|
|
|
14
14
|
## Getting Started
|
|
15
15
|
|
|
16
|
-
Requirements:
|
|
17
|
-
|
|
18
|
-
- Ruby 3.3+
|
|
19
|
-
- Bundler
|
|
16
|
+
Requirements: Ruby 3.3+ and Bundler.
|
|
20
17
|
|
|
21
18
|
```sh
|
|
22
19
|
git clone https://github.com/rubiii/wsdl.git
|
|
23
20
|
cd wsdl
|
|
24
21
|
bundle install
|
|
25
|
-
bundle exec rake ci # Run all checks (
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Useful commands:
|
|
29
|
-
|
|
30
|
-
```sh
|
|
31
|
-
bundle exec rspec # Run tests only
|
|
32
|
-
bundle exec rake benchmark # Run performance benchmarks
|
|
33
|
-
bundle exec rubocop # Run linter only
|
|
34
|
-
bundle exec rubocop -a # Autofix lint offenses
|
|
35
|
-
bundle exec yard # Generate YARD documentation
|
|
36
|
-
bundle exec rake yard:audit # Run yard audit only
|
|
22
|
+
bundle exec rake ci # Run all checks (Linting + Docs + Specs)
|
|
37
23
|
```
|
|
38
24
|
|
|
39
25
|
## How to Contribute
|
|
40
26
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Open an [issue](https://github.com/rubiii/wsdl/issues) with:
|
|
44
|
-
|
|
45
|
-
- A minimal WSDL fixture that reproduces the problem
|
|
46
|
-
- The SOAP version (1.1 or 1.2) if relevant
|
|
47
|
-
- Ruby version and `wsdl` gem version
|
|
48
|
-
- Steps to reproduce and actual vs. expected behavior
|
|
49
|
-
|
|
50
|
-
### Feature Requests
|
|
27
|
+
**Bug reports** — Open an [issue](https://github.com/rubiii/wsdl/issues) with a minimal WSDL fixture that reproduces the problem, the SOAP version, Ruby version, and steps to reproduce.
|
|
51
28
|
|
|
52
|
-
Open an issue to discuss the idea before writing code.
|
|
53
|
-
if the feature doesn't fit the project's scope.
|
|
29
|
+
**Feature requests** — Open an issue to discuss the idea before writing code.
|
|
54
30
|
|
|
55
|
-
|
|
31
|
+
**Bug fixes** — Write a failing test, fix the bug, run `bundle exec rake ci`.
|
|
56
32
|
|
|
57
|
-
|
|
58
|
-
2. Fix the bug
|
|
59
|
-
3. Run `bundle exec rake ci` to verify everything passes
|
|
33
|
+
**Documentation** — Improvements to YARD docs, the `docs/` folder, or the README are welcome.
|
|
60
34
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Improvements to YARD docs, the `docs/` folder, or the README are always welcome.
|
|
64
|
-
Run `bundle exec yard` to verify documentation compiles without warnings.
|
|
65
|
-
|
|
66
|
-
## Pull Request Guidelines
|
|
35
|
+
## Pull Requests
|
|
67
36
|
|
|
68
37
|
1. Fork the repository and create a branch from `main`
|
|
69
38
|
2. Keep each PR focused on a single concern
|
|
70
39
|
3. Include tests for any behavior changes
|
|
71
|
-
4. Ensure `bundle exec rake ci` passes
|
|
72
|
-
5.
|
|
73
|
-
6. Write clear commit messages that explain *why*, not just *what*
|
|
74
|
-
|
|
75
|
-
## Code Style
|
|
76
|
-
|
|
77
|
-
The project uses RuboCop for style enforcement.
|
|
78
|
-
See `.rubocop.yml` for the full configuration.
|
|
79
|
-
|
|
80
|
-
## Testing
|
|
81
|
-
|
|
82
|
-
- Test directory structure mirrors `lib/`: `spec/wsdl/` corresponds to `lib/wsdl/`
|
|
83
|
-
- Integration tests live in `spec/integration/`
|
|
84
|
-
- Use existing WSDL fixtures in `spec/fixtures/` (45+ real-world documents)
|
|
85
|
-
- Add new fixtures when testing WSDL features not covered by existing ones
|
|
86
|
-
- Every public method must be tested; the project targets 100% code coverage
|
|
87
|
-
|
|
88
|
-
## Documentation
|
|
40
|
+
4. Ensure `bundle exec rake ci` passes
|
|
41
|
+
5. Write clear commit messages that explain *why*, not just *what*
|
|
89
42
|
|
|
90
|
-
|
|
91
|
-
- Use proper YARD type syntax: `Hash{String => String}` not `Hash<String, String>`
|
|
92
|
-
- Detailed guides live in the `docs/` folder; keep the README brief
|
|
43
|
+
For code style, naming conventions, and other guidelines, see the [development guide](docs/contributing/development.md). For testing details, see the [testing docs](docs/contributing/testing.md).
|
|
93
44
|
|
|
94
45
|
## Getting Help
|
|
95
46
|
|
|
96
47
|
Not sure where to start? Open an [issue](https://github.com/rubiii/wsdl/issues) and ask.
|
|
97
|
-
We're happy to point you in the right direction.
|
data/Gemfile
CHANGED
|
@@ -12,18 +12,24 @@ gem 'benchmark' if RUBY_VERSION >= '3.4'
|
|
|
12
12
|
# irb was removed from default gems in Ruby 4.0 (required by yard's legacy parser)
|
|
13
13
|
gem 'irb' if RUBY_VERSION >= '4.0'
|
|
14
14
|
|
|
15
|
+
# webrick was removed from default gems in Ruby 3.0
|
|
16
|
+
gem 'webrick' if RUBY_VERSION >= '3.0'
|
|
17
|
+
|
|
15
18
|
group :development do
|
|
16
19
|
gem 'benchmark-ips', '~> 2.14', require: false
|
|
17
20
|
gem 'equivalent-xml', '~> 0.6'
|
|
21
|
+
gem 'mutant-rspec', '~> 0.12', require: false
|
|
18
22
|
gem 'rake', '~> 13.3'
|
|
19
23
|
gem 'rantly', '~> 2.0', require: false
|
|
20
24
|
gem 'redcarpet', require: false
|
|
21
25
|
gem 'rspec', '~> 3'
|
|
26
|
+
gem 'rspec-github', '~> 2.4', require: false
|
|
22
27
|
gem 'rubocop', require: false
|
|
23
28
|
gem 'rubocop-rake', require: false
|
|
24
29
|
gem 'rubocop-rspec', require: false
|
|
25
30
|
gem 'rubocop-yard', require: false
|
|
26
31
|
gem 'simplecov', '~> 0.22', require: false
|
|
32
|
+
gem 'stackprof', require: false
|
|
27
33
|
gem 'webmock', '~> 3.24', require: false
|
|
28
34
|
gem 'yard', require: false
|
|
29
35
|
gem 'yard-markdown-relative-links', require: false
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/rubiii/wsdl/actions/workflows/ci.yml) [](https://rubygems.org/gems/wsdl)
|
|
4
4
|
|
|
5
|
-
WSDL toolkit for Ruby.
|
|
5
|
+
WSDL toolkit for Ruby. Turn WSDL 1.1 documents into inspectable definitions and callable operations.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -16,13 +16,23 @@ Or in `Gemfile`:
|
|
|
16
16
|
gem 'wsdl'
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
## Requirements
|
|
20
|
+
|
|
21
|
+
- Ruby 3.3+
|
|
22
|
+
- [Nokogiri](https://nokogiri.org/) >= 1.19.1 (installed automatically)
|
|
23
|
+
|
|
19
24
|
## Quickstart
|
|
20
25
|
|
|
21
26
|
```ruby
|
|
22
27
|
require 'wsdl'
|
|
23
28
|
|
|
24
|
-
# Parse a WSDL
|
|
25
|
-
|
|
29
|
+
# Parse a WSDL and create a client
|
|
30
|
+
definition = WSDL.parse('http://example.com/service?wsdl')
|
|
31
|
+
client = WSDL::Client.new(definition)
|
|
32
|
+
|
|
33
|
+
# The definition is serializable — cache it to skip re-parsing
|
|
34
|
+
File.write('cache.json', definition.to_json)
|
|
35
|
+
definition = WSDL.load(JSON.parse(File.read('cache.json')))
|
|
26
36
|
|
|
27
37
|
# Discover available services, ports, and operations
|
|
28
38
|
client.services # => { "OrderService" => { ports: { "OrderPort" => { ... } } } }
|
|
@@ -49,30 +59,41 @@ puts operation.contract.request.body.template(mode: :minimal).to_dsl
|
|
|
49
59
|
# end
|
|
50
60
|
|
|
51
61
|
# Fill in the values and invoke the operation
|
|
52
|
-
operation.
|
|
62
|
+
response = operation.invoke do
|
|
53
63
|
tag('GetOrder') do
|
|
54
64
|
tag('orderId', 123)
|
|
55
65
|
end
|
|
56
66
|
end
|
|
57
|
-
response = operation.invoke
|
|
58
67
|
|
|
59
68
|
# Response body is automatically parsed with schema-aware type conversion
|
|
60
69
|
response.body
|
|
61
70
|
# => { "GetOrderResponse" => { "order" => { "id" => 123, "total" => 0.9999e2,
|
|
62
71
|
# "shipped" => true, "items" => [{ "name" => "Widget" }] } } }
|
|
63
72
|
|
|
73
|
+
# Check for SOAP faults
|
|
74
|
+
if response.fault?
|
|
75
|
+
fault = response.fault
|
|
76
|
+
puts "#{fault.code}: #{fault.reason}" # => "soap:Server: Order not found"
|
|
77
|
+
end
|
|
78
|
+
|
|
64
79
|
# Access HTTP metadata and raw XML when needed
|
|
65
80
|
response.http_status # => 200
|
|
66
|
-
response.
|
|
81
|
+
response.xml # => "<?xml version=\"1.0\" ...>"
|
|
67
82
|
```
|
|
68
83
|
|
|
69
84
|
## Documentation
|
|
70
85
|
|
|
71
|
-
See [Getting Started](docs/getting_started.md) for the
|
|
86
|
+
See [Getting Started](docs/getting_started.md) for the full guide map.
|
|
87
|
+
|
|
88
|
+
- [Inspecting Services](docs/core/inspecting-services.md) — discover operations and inspect contracts
|
|
89
|
+
- [Building Requests](docs/core/building-requests.md) — request DSL, headers, namespaces, templates
|
|
90
|
+
- [Handling Responses](docs/core/handling-responses.md) — parsing, faults, security verification
|
|
91
|
+
- [Configuration](docs/core/configuration.md) — strictness, limits, caching, HTTP client
|
|
92
|
+
- [WS-Security](docs/security/ws-security.md) — UsernameToken, signatures, timestamps
|
|
93
|
+
- [Error Reference](docs/reference/errors.md) — full error hierarchy and rescue patterns
|
|
72
94
|
|
|
73
95
|
## Features
|
|
74
96
|
|
|
75
|
-
- **WSDL 1.1 Only** — WSDL 2.0 documents are detected and rejected with a clear error
|
|
76
97
|
- **WSDL/XSD Parsing** — Full support for imports, includes, and multiple schema documents
|
|
77
98
|
- **Service Discovery** — Inspect services, ports, and operations programmatically
|
|
78
99
|
- **Contract Introspection** — Explore request/response structure with flat paths or tree views
|
|
@@ -82,6 +103,10 @@ See [Getting Started](docs/getting_started.md) for the documentation entrypoint
|
|
|
82
103
|
- **Schema-Aware Parsing** — Type conversion and array handling based on XSD metadata
|
|
83
104
|
- **Security Hardening** — DOCTYPE rejection, resource limits, and sandboxed file access
|
|
84
105
|
|
|
106
|
+
## Contributing
|
|
107
|
+
|
|
108
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. Security issues: [SECURITY.md](SECURITY.md).
|
|
109
|
+
|
|
85
110
|
## License
|
|
86
111
|
|
|
87
112
|
Released under the [MIT License](MIT-LICENSE).
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ require 'rubocop/rake_task'
|
|
|
6
6
|
require 'yard'
|
|
7
7
|
|
|
8
8
|
RSpec::Core::RakeTask.new
|
|
9
|
-
RuboCop::RakeTask.new
|
|
9
|
+
RuboCop::RakeTask.new('lint:ruby')
|
|
10
10
|
YARD::Rake::YardocTask.new
|
|
11
11
|
|
|
12
12
|
namespace :yard do
|
|
@@ -24,12 +24,77 @@ namespace :yard do
|
|
|
24
24
|
end
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
+
namespace :lint do
|
|
28
|
+
desc 'Check markdown links point to existing files'
|
|
29
|
+
task :links do
|
|
30
|
+
require_relative 'scripts/lint_links'
|
|
31
|
+
LintLinks.check
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
desc 'Autofix RuboCop offenses (safe and unsafe)'
|
|
35
|
+
task fix: 'lint:ruby:autocorrect_all'
|
|
36
|
+
end
|
|
37
|
+
|
|
27
38
|
desc 'Run linting'
|
|
28
|
-
task lint: :
|
|
39
|
+
task lint: %i[lint:ruby lint:links]
|
|
40
|
+
|
|
41
|
+
namespace :specifications do
|
|
42
|
+
desc 'Check if local specification documents are up to date'
|
|
43
|
+
task :check do
|
|
44
|
+
require_relative 'scripts/specifications'
|
|
45
|
+
abort unless Specifications.check
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
desc 'Download and convert all specification documents'
|
|
49
|
+
task :update do
|
|
50
|
+
require_relative 'scripts/specifications'
|
|
51
|
+
Specifications.update
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
desc 'Re-download and reconvert all specification documents'
|
|
55
|
+
task :reconvert do
|
|
56
|
+
require_relative 'scripts/specifications'
|
|
57
|
+
Specifications.update(force: true)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
29
60
|
|
|
30
61
|
desc 'Run performance benchmarks'
|
|
31
62
|
task :benchmark do
|
|
32
63
|
ruby 'benchmarks/run.rb'
|
|
33
64
|
end
|
|
34
65
|
|
|
66
|
+
namespace :benchmark do
|
|
67
|
+
desc 'Run performance specs (allocation budgets + timing)'
|
|
68
|
+
task :specs do
|
|
69
|
+
sh 'bundle exec rspec spec/performance/ --format documentation'
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
namespace :profile do
|
|
74
|
+
modes = {
|
|
75
|
+
wall: 'Wall-time', cpu: 'CPU',
|
|
76
|
+
objects: 'Object allocation', all: 'All (wall + cpu + objects)'
|
|
77
|
+
}
|
|
78
|
+
modes.each do |mode, label|
|
|
79
|
+
desc "#{label} profile of large WSDL parse"
|
|
80
|
+
task(mode) { ruby "benchmarks/profile.rb #{mode}" }
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
desc 'Print a StackProf dump report'
|
|
84
|
+
task :report, [:dump] do |_t, args|
|
|
85
|
+
abort 'Usage: rake profile:report[path/to/dump]' unless args[:dump]
|
|
86
|
+
sh 'bundle', 'exec', 'stackprof', args[:dump], '--text', '--limit', '30'
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
desc 'Drill into a specific method in a StackProf dump'
|
|
90
|
+
task :method, [:dump, :method_name] do |_t, args|
|
|
91
|
+
abort 'Usage: rake profile:method[path/to/dump,ClassName#method]' unless args[:dump] && args[:method_name]
|
|
92
|
+
sh 'bundle', 'exec', 'stackprof', args[:dump], '--method', args[:method_name]
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
35
96
|
task ci: %i[lint yard:audit spec]
|
|
97
|
+
|
|
98
|
+
task :default do
|
|
99
|
+
system 'rake -T'
|
|
100
|
+
end
|