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.
Files changed (2621) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -2
  3. data/AGENTS.md +18 -90
  4. data/CHANGELOG.md +137 -4
  5. data/CONTRIBUTING.md +11 -61
  6. data/Gemfile +6 -0
  7. data/README.md +33 -8
  8. data/Rakefile +67 -2
  9. data/benchmarks/profile.rb +84 -0
  10. data/benchmarks/run.rb +8 -9
  11. data/docs/contributing/development.md +59 -0
  12. data/docs/contributing/testing.md +254 -0
  13. data/docs/core/building-requests.md +9 -10
  14. data/docs/core/configuration.md +80 -152
  15. data/docs/core/handling-responses.md +19 -2
  16. data/docs/core/http-client.md +208 -0
  17. data/docs/core/inspecting-services.md +86 -10
  18. data/docs/core/resolving-imports.md +11 -10
  19. data/docs/core/thread-safety.md +87 -0
  20. data/docs/getting_started.md +34 -5
  21. data/docs/reference/errors.md +2 -2
  22. data/docs/reference/specifications.md +1 -1
  23. data/docs/reference/strictness-fixture-matrix.md +64 -0
  24. data/docs/reference/unsupported-features.md +1 -1
  25. data/docs/security/ws-security-troubleshooting.md +1 -1
  26. data/docs/security/ws-security-username-token.md +7 -7
  27. data/lib/wsdl/client.rb +147 -132
  28. data/lib/wsdl/config.rb +21 -45
  29. data/lib/wsdl/contract/operation_contract.rb +12 -9
  30. data/lib/wsdl/contract/part_contract.rb +13 -16
  31. data/lib/wsdl/contract.rb +5 -4
  32. data/lib/wsdl/definition/builder.rb +300 -0
  33. data/lib/wsdl/definition/element_hash.rb +197 -0
  34. data/lib/wsdl/definition.rb +581 -0
  35. data/lib/wsdl/errors.rb +92 -25
  36. data/lib/wsdl/http/client.rb +362 -0
  37. data/lib/wsdl/http/config.rb +71 -0
  38. data/lib/wsdl/http/redirect_guard.rb +237 -0
  39. data/lib/wsdl/http/response.rb +33 -0
  40. data/lib/wsdl/http.rb +19 -0
  41. data/lib/wsdl/limits.rb +24 -8
  42. data/lib/wsdl/operation.rb +156 -98
  43. data/lib/wsdl/parse_options.rb +10 -11
  44. data/lib/wsdl/parser/binding.rb +5 -8
  45. data/lib/wsdl/parser/binding_operation.rb +105 -74
  46. data/lib/wsdl/parser/document.rb +10 -2
  47. data/lib/wsdl/parser/document_collection.rb +1 -1
  48. data/lib/wsdl/parser/import_result.rb +19 -0
  49. data/lib/wsdl/parser/input_output.rb +69 -57
  50. data/lib/wsdl/parser/message_info.rb +6 -1
  51. data/lib/wsdl/parser/message_reference.rb +5 -2
  52. data/lib/wsdl/parser/operation_info.rb +61 -21
  53. data/lib/wsdl/parser/operation_map.rb +120 -0
  54. data/lib/wsdl/parser/port.rb +1 -1
  55. data/lib/wsdl/parser/port_type.rb +10 -8
  56. data/lib/wsdl/parser/port_type_operation.rb +28 -4
  57. data/lib/wsdl/parser.rb +81 -23
  58. data/lib/wsdl/qname.rb +99 -15
  59. data/lib/wsdl/request/dsl_context.rb +13 -10
  60. data/lib/wsdl/request/security_conflict_detector.rb +2 -2
  61. data/lib/wsdl/request/serializer.rb +3 -3
  62. data/lib/wsdl/request/validator.rb +30 -25
  63. data/lib/wsdl/request.rb +8 -7
  64. data/lib/wsdl/resolver/importer.rb +347 -0
  65. data/lib/wsdl/resolver/loader.rb +452 -0
  66. data/lib/wsdl/resolver/source.rb +171 -0
  67. data/lib/wsdl/resolver.rb +18 -0
  68. data/lib/wsdl/response/builder.rb +393 -0
  69. data/lib/wsdl/response/parser.rb +55 -4
  70. data/lib/wsdl/response/type_coercer.rb +56 -10
  71. data/lib/wsdl/response.rb +32 -52
  72. data/lib/wsdl/schema/collection.rb +83 -229
  73. data/lib/wsdl/schema/definition.rb +54 -3
  74. data/lib/wsdl/schema/node.rb +187 -66
  75. data/lib/wsdl/security/canonicalizer.rb +1 -1
  76. data/lib/wsdl/security/config.rb +0 -3
  77. data/lib/wsdl/security/credential_normalizer.rb +4 -8
  78. data/lib/wsdl/security/digester.rb +2 -2
  79. data/lib/wsdl/security/request_materializer.rb +3 -3
  80. data/lib/wsdl/security/secure_compare.rb +1 -3
  81. data/lib/wsdl/security/security_header.rb +4 -4
  82. data/lib/wsdl/security/signature.rb +6 -6
  83. data/lib/wsdl/security/signature_options.rb +1 -1
  84. data/lib/wsdl/security/verifier/base.rb +11 -0
  85. data/lib/wsdl/security/verifier/certificate_resolver.rb +0 -8
  86. data/lib/wsdl/security/verifier/reference_validator.rb +0 -6
  87. data/lib/wsdl/security/verifier/timestamp_validator.rb +11 -0
  88. data/lib/wsdl/security/verifier.rb +44 -35
  89. data/lib/wsdl/security.rb +29 -28
  90. data/lib/wsdl/strictness.rb +126 -0
  91. data/lib/wsdl/version.rb +1 -1
  92. data/lib/wsdl/xml/attribute.rb +61 -0
  93. data/lib/wsdl/xml/element.rb +164 -33
  94. data/lib/wsdl/xml/element_builder.rb +185 -67
  95. data/lib/wsdl/xml/parser.rb +11 -59
  96. data/lib/wsdl/xml/threat_scanner.rb +217 -0
  97. data/lib/wsdl.rb +86 -38
  98. data/scripts/lint_links.rb +44 -0
  99. data/scripts/specifications.rb +417 -0
  100. data/spec/acceptance/amazon_spec.rb +333 -0
  101. data/spec/acceptance/authentication_spec.rb +63 -0
  102. data/spec/acceptance/awse_spec.rb +456 -0
  103. data/spec/acceptance/betfair_spec.rb +311 -0
  104. data/spec/acceptance/blz_service_spec.rb +46 -0
  105. data/spec/acceptance/bookt_spec.rb +103 -0
  106. data/spec/acceptance/bronto_spec.rb +539 -0
  107. data/spec/acceptance/bydexchange_spec.rb +35 -0
  108. data/spec/acceptance/crowd_spec.rb +169 -0
  109. data/spec/acceptance/daisycon_spec.rb +33 -0
  110. data/spec/acceptance/data_exchange_spec.rb +31 -0
  111. data/spec/acceptance/document_literal_spec.rb +106 -0
  112. data/spec/acceptance/economic_spec.rb +3099 -0
  113. data/spec/acceptance/email_verification_spec.rb +121 -0
  114. data/spec/acceptance/equifax_spec.rb +536 -0
  115. data/spec/acceptance/exhaustive_roundtrip_spec.rb +97 -0
  116. data/spec/acceptance/geotrust_spec.rb +56 -0
  117. data/spec/acceptance/interhome_spec.rb +544 -0
  118. data/spec/acceptance/iws_spec.rb +44 -0
  119. data/spec/acceptance/jetairways_spec.rb +149 -0
  120. data/spec/acceptance/jira_spec.rb +141 -0
  121. data/spec/acceptance/juniper_spec.rb +49 -0
  122. data/spec/acceptance/marketo_spec.rb +81 -0
  123. data/spec/acceptance/namespaced_actions_spec.rb +71 -0
  124. data/spec/acceptance/oracle_spec.rb +314 -0
  125. data/spec/acceptance/ratp_spec.rb +1025 -0
  126. data/spec/acceptance/rio2_spec.rb +45 -0
  127. data/spec/acceptance/rpc_literal_spec.rb +103 -0
  128. data/spec/acceptance/schema_patterns_spec.rb +436 -0
  129. data/spec/acceptance/security_round_trip_spec.rb +165 -0
  130. data/spec/acceptance/split_namespace_spec.rb +21 -0
  131. data/spec/acceptance/spyne_spec.rb +71 -0
  132. data/spec/acceptance/stockquote_spec.rb +46 -0
  133. data/spec/acceptance/strictness_fixture_matrix_spec.rb +122 -0
  134. data/spec/acceptance/taxcloud_spec.rb +145 -0
  135. data/spec/acceptance/team_software_spec.rb +79 -0
  136. data/spec/acceptance/telefonkatalogen_spec.rb +113 -0
  137. data/spec/acceptance/temperature_spec.rb +71 -0
  138. data/spec/acceptance/travelport_spec.rb +83 -0
  139. data/spec/acceptance/wasmuth_spec.rb +78 -0
  140. data/spec/acceptance/xignite_spec.rb +190 -0
  141. data/spec/acceptance/xsw_attack_vectors_spec.rb +415 -0
  142. data/spec/acceptance/yahoo_spec.rb +177 -0
  143. data/spec/conformance/soap_1_1_spec.rb +289 -0
  144. data/spec/conformance/soap_1_2_spec.rb +454 -0
  145. data/spec/conformance/wsdl_1_1_spec.rb +263 -0
  146. data/spec/conformance/xml_schema_spec.rb +640 -0
  147. data/spec/fixtures/parser/abstract_types.wsdl +86 -0
  148. data/spec/fixtures/parser/attribute_groups.wsdl +65 -0
  149. data/spec/fixtures/parser/attribute_types.wsdl +73 -0
  150. data/spec/fixtures/parser/operation_overloading.wsdl +64 -0
  151. data/spec/fixtures/parser/recursive_types.wsdl +65 -0
  152. data/spec/fixtures/parser/xs_all.wsdl +60 -0
  153. data/spec/fixtures/parser/xs_choice.wsdl +67 -0
  154. data/spec/fixtures/parser/xs_group.wsdl +67 -0
  155. data/spec/fixtures/parser/xs_list.wsdl +66 -0
  156. data/spec/fixtures/parser/xs_union.wsdl +62 -0
  157. data/spec/fixtures/wsdl/bookt/manifest.yml +22 -0
  158. data/spec/fixtures/wsdl/bydexchange/manifest.yml +14 -0
  159. data/spec/fixtures/wsdl/rio2/manifest.yml +9 -0
  160. data/spec/fixtures/wsdl/split_namespace/service.wsdl +46 -0
  161. data/spec/fixtures/wsdl/split_namespace/types_a.xsd +14 -0
  162. data/spec/fixtures/wsdl/split_namespace/types_b.xsd +15 -0
  163. data/spec/fixtures/wsdl/team_software/manifest.yml +8 -0
  164. data/spec/fixtures/wsdl/travelport/manifest.yml +3 -0
  165. data/spec/fixtures/wsdl/wasmuth/manifest.yml +6 -0
  166. data/spec/integration/authentication_spec.rb +67 -40
  167. data/spec/integration/betfair_spec.rb +135 -176
  168. data/spec/integration/blz_service_spec.rb +71 -30
  169. data/spec/integration/crowd_spec.rb +100 -55
  170. data/spec/integration/equifax_spec.rb +138 -273
  171. data/spec/integration/interhome_spec.rb +152 -271
  172. data/spec/integration/marketo_spec.rb +86 -66
  173. data/spec/integration/ratp_spec.rb +69 -349
  174. data/spec/integration/rpc_literal_spec.rb +49 -87
  175. data/spec/integration/telefonkatalogen_spec.rb +61 -54
  176. data/spec/integration/temperature_spec.rb +46 -59
  177. data/spec/integration/xignite_spec.rb +75 -112
  178. data/spec/integration/yahoo_spec.rb +73 -114
  179. data/spec/performance/element_builder_spec.rb +39 -0
  180. data/spec/performance/parse_pipeline_spec.rb +36 -0
  181. data/spec/performance/qname_spec.rb +60 -0
  182. data/spec/performance/request_serializer_spec.rb +46 -0
  183. data/spec/performance/response_parser_spec.rb +61 -0
  184. data/spec/performance/schema_node_spec.rb +54 -0
  185. data/spec/performance/threat_scanner_spec.rb +23 -0
  186. data/spec/property/response_roundtrip_spec.rb +163 -0
  187. data/spec/property/wsdl_parser_spec.rb +116 -0
  188. data/spec/property/xml_parser_spec.rb +304 -0
  189. data/spec/spec_helper.rb +28 -11
  190. data/spec/support/allocation_helpers.rb +25 -0
  191. data/spec/support/http_mock.rb +2 -2
  192. data/spec/support/parsed_fixture.rb +37 -0
  193. data/spec/support/performance.rb +28 -0
  194. data/spec/support/roundtrip_candidates.rb +139 -0
  195. data/spec/support/schema_element_helper.rb +31 -7
  196. data/spec/support/test_service/input_extractor.rb +37 -0
  197. data/spec/support/test_service/mock_server.rb +276 -0
  198. data/spec/support/test_service/operation_definition.rb +121 -0
  199. data/spec/support/test_service/response_matcher.rb +35 -0
  200. data/spec/support/test_service/service_definition.rb +136 -0
  201. data/spec/support/test_service/spec_helpers.rb +43 -0
  202. data/spec/support/test_service.rb +76 -0
  203. data/spec/support/timeout.rb +41 -0
  204. data/spec/support/verifier_helpers.rb +200 -0
  205. data/spec/wsdl/client_spec.rb +543 -294
  206. data/spec/wsdl/config_spec.rb +16 -32
  207. data/spec/wsdl/contract/message_contract_spec.rb +68 -0
  208. data/spec/wsdl/contract/part_contract_spec.rb +131 -4
  209. data/spec/wsdl/contract/template_spec.rb +0 -2
  210. data/spec/wsdl/definition/builder_spec.rb +364 -0
  211. data/spec/wsdl/definition/element_hash_spec.rb +314 -0
  212. data/spec/wsdl/definition_spec.rb +395 -0
  213. data/spec/wsdl/errors_spec.rb +386 -0
  214. data/spec/wsdl/formatting_spec.rb +1 -3
  215. data/spec/wsdl/http/client_integration_spec.rb +196 -0
  216. data/spec/wsdl/http/client_spec.rb +740 -0
  217. data/spec/wsdl/http/config_spec.rb +30 -0
  218. data/spec/wsdl/http/redirect_guard_spec.rb +604 -0
  219. data/spec/wsdl/http/response_spec.rb +47 -0
  220. data/spec/wsdl/limits_spec.rb +27 -35
  221. data/spec/wsdl/log_spec.rb +1 -3
  222. data/spec/wsdl/nillable_spec.rb +68 -52
  223. data/spec/wsdl/operation/document_literal_spec.rb +137 -62
  224. data/spec/wsdl/operation/example_body_spec.rb +5 -7
  225. data/spec/wsdl/operation/rpc_literal_spec.rb +107 -51
  226. data/spec/wsdl/operation_contract_spec.rb +5 -4
  227. data/spec/wsdl/operation_spec.rb +327 -213
  228. data/spec/wsdl/parse_load_spec.rb +152 -0
  229. data/spec/wsdl/parse_options_spec.rb +68 -0
  230. data/spec/wsdl/parser/binding_operation_spec.rb +226 -29
  231. data/spec/wsdl/parser/document_collection_spec.rb +1 -3
  232. data/spec/wsdl/parser/document_spec.rb +14 -17
  233. data/spec/wsdl/parser/input_output_spec.rb +95 -238
  234. data/spec/wsdl/parser/message_info_spec.rb +146 -0
  235. data/spec/wsdl/parser/message_reference_spec.rb +120 -0
  236. data/spec/wsdl/parser/operation_info_spec.rb +128 -0
  237. data/spec/wsdl/parser/operation_map_spec.rb +169 -0
  238. data/spec/wsdl/parser/port_type_operation_spec.rb +188 -0
  239. data/spec/wsdl/parser/port_type_spec.rb +137 -0
  240. data/spec/wsdl/parser_spec.rb +243 -0
  241. data/spec/wsdl/qname_spec.rb +229 -15
  242. data/spec/wsdl/request/dsl_spec.rb +11 -13
  243. data/spec/wsdl/request/envelope_spec.rb +0 -2
  244. data/spec/wsdl/request/rpc_wrapper_spec.rb +2 -4
  245. data/spec/wsdl/request/security_conflict_detector_spec.rb +1 -3
  246. data/spec/wsdl/request/validator_spec.rb +19 -21
  247. data/spec/wsdl/resolver/loader_spec.rb +552 -0
  248. data/spec/wsdl/resolver/source_spec.rb +150 -0
  249. data/spec/wsdl/response/builder_spec.rb +308 -0
  250. data/spec/wsdl/response/parser_spec.rb +174 -5
  251. data/spec/wsdl/response/security_context_spec.rb +0 -3
  252. data/spec/wsdl/response/type_coercer_spec.rb +167 -2
  253. data/spec/wsdl/response_spec.rb +193 -82
  254. data/spec/wsdl/schema/collection_spec.rb +295 -139
  255. data/spec/wsdl/schema/node_spec.rb +293 -38
  256. data/spec/wsdl/security/algorithm_mapper_spec.rb +1 -3
  257. data/spec/wsdl/security/canonicalizer_spec.rb +1 -3
  258. data/spec/wsdl/security/config_spec.rb +16 -15
  259. data/spec/wsdl/security/constants_spec.rb +1 -3
  260. data/spec/wsdl/security/credential_normalizer_spec.rb +48 -3
  261. data/spec/wsdl/security/digester_spec.rb +1 -3
  262. data/spec/wsdl/security/id_generator_spec.rb +1 -3
  263. data/spec/wsdl/security/policy_spec.rb +0 -2
  264. data/spec/wsdl/security/reference_spec.rb +1 -3
  265. data/spec/wsdl/security/request_context_spec.rb +5 -7
  266. data/spec/wsdl/security/request_materializer_spec.rb +189 -0
  267. data/spec/wsdl/security/request_policy_spec.rb +0 -2
  268. data/spec/wsdl/security/response_policy_spec.rb +0 -2
  269. data/spec/wsdl/security/response_verification_spec.rb +1 -3
  270. data/spec/wsdl/security/secure_compare_spec.rb +0 -1
  271. data/spec/wsdl/security/security_header_spec.rb +21 -21
  272. data/spec/wsdl/security/signature_options_spec.rb +1 -3
  273. data/spec/wsdl/security/signature_spec.rb +126 -46
  274. data/spec/wsdl/security/timestamp_spec.rb +1 -3
  275. data/spec/wsdl/security/username_token_spec.rb +2 -4
  276. data/spec/wsdl/security/verifier/base_spec.rb +0 -2
  277. data/spec/wsdl/security/verifier/certificate_resolver_spec.rb +3 -6
  278. data/spec/wsdl/security/verifier/certificate_validator_spec.rb +7 -9
  279. data/spec/wsdl/security/verifier/element_position_validator_spec.rb +1 -4
  280. data/spec/wsdl/security/verifier/reference_validator_spec.rb +1 -4
  281. data/spec/wsdl/security/verifier/signature_validator_spec.rb +1 -4
  282. data/spec/wsdl/security/verifier/structure_validator_spec.rb +1 -4
  283. data/spec/wsdl/security/verifier/timestamp_validator_spec.rb +75 -2
  284. data/spec/wsdl/security/verifier_spec.rb +131 -16
  285. data/spec/wsdl/security/xml_builder_helper_spec.rb +7 -9
  286. data/spec/wsdl/strictness_spec.rb +148 -0
  287. data/spec/wsdl/wsdl_spec.rb +73 -35
  288. data/spec/wsdl/xml/attribute_spec.rb +101 -0
  289. data/spec/wsdl/xml/element_builder_spec.rb +79 -56
  290. data/spec/wsdl/xml/element_spec.rb +315 -2
  291. data/spec/wsdl/xml/parser_spec.rb +1 -2
  292. data/spec/wsdl/xml/threat_scanner_spec.rb +151 -0
  293. data/vendor/bundle/ruby/4.0.0/bin/mutant +28 -0
  294. data/vendor/bundle/ruby/4.0.0/bin/mutant-ruby +28 -0
  295. data/vendor/bundle/ruby/4.0.0/bin/stackprof +28 -0
  296. data/vendor/bundle/ruby/4.0.0/bin/stackprof-flamegraph.pl +28 -0
  297. data/vendor/bundle/ruby/4.0.0/bin/stackprof-gprof2dot.py +28 -0
  298. data/vendor/bundle/ruby/4.0.0/bin/unparser +28 -0
  299. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/bigdecimal.so +0 -0
  300. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/gem_make.out +38 -0
  301. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.1.0/mkmf.log +458 -0
  302. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/date-3.5.1/gem_make.out +6 -6
  303. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/erb-6.0.2/gem_make.out +5 -5
  304. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/io-console-0.8.2/gem_make.out +5 -5
  305. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/gem_make.out +25 -0
  306. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/json/ext/generator.so +0 -0
  307. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.3/json/ext/parser.so +0 -0
  308. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.9.0/gem_make.out +6 -6
  309. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/gem_make.out +6 -6
  310. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/racc-1.8.1/gem_make.out +5 -5
  311. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/redcarpet-3.6.1/gem_make.out +10 -10
  312. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/gem.build_complete +0 -0
  313. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/gem_make.out +22 -0
  314. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/mkmf.log +181 -0
  315. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stackprof-0.2.28/stackprof/stackprof.so +0 -0
  316. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/stringio-3.2.0/gem_make.out +5 -5
  317. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/syslog-0.4.0/gem_make.out +5 -5
  318. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/bigdecimal.gemspec +62 -0
  319. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/Makefile +274 -0
  320. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/bigdecimal.c +6264 -0
  321. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/bigdecimal.h +293 -0
  322. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/div.h +192 -0
  323. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/extconf.rb +59 -0
  324. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/missing.h +106 -0
  325. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/ext/bigdecimal/ntt.h +191 -0
  326. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal/math.rb +927 -0
  327. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal/util.rb +186 -0
  328. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal.rb +387 -0
  329. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/lib/bigdecimal.so +0 -0
  330. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/linear.rb +110 -0
  331. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/nlsolve.rb +57 -0
  332. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sample/pi.rb +16 -0
  333. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_decimal.rbs +1502 -0
  334. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_decimal_util.rbs +158 -0
  335. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.1.0/sig/big_math.rbs +423 -0
  336. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/CHANGES.md +750 -0
  337. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/ext/json/ext/fbuffer/fbuffer.h +251 -0
  338. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/ext/json/ext/parser/parser.c +1697 -0
  339. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/ext/generator.so +0 -0
  340. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/ext/parser.so +0 -0
  341. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.3/lib/json/version.rb +5 -0
  342. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/LICENSE +271 -0
  343. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/VERSION +1 -0
  344. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/bin/mutant +4 -0
  345. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/bin/mutant-ruby +64 -0
  346. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/find_metaclass_containing.rb +48 -0
  347. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/const.rb +26 -0
  348. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/optarg.rb +28 -0
  349. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/resbody.rb +19 -0
  350. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/send.rb +71 -0
  351. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta/symbol.rb +19 -0
  352. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/meta.rb +9 -0
  353. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/named_children.rb +90 -0
  354. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/node_predicates.rb +21 -0
  355. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/nodes.rb +28 -0
  356. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/lexer.rb +170 -0
  357. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/parser.rb +194 -0
  358. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/source.rb +39 -0
  359. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern/token.rb +15 -0
  360. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/pattern.rb +125 -0
  361. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/sexp.rb +30 -0
  362. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/structure.rb +915 -0
  363. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast/types.rb +65 -0
  364. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/ast.rb +42 -0
  365. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/bootstrap.rb +197 -0
  366. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/irb.rb +21 -0
  367. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/run.rb +60 -0
  368. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/show.rb +25 -0
  369. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/subject.rb +35 -0
  370. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment/test.rb +79 -0
  371. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/environment.rb +158 -0
  372. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/root.rb +17 -0
  373. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command/util.rb +128 -0
  374. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli/command.rb +229 -0
  375. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/cli.rb +13 -0
  376. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/config/coverage_criteria.rb +70 -0
  377. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/config.rb +285 -0
  378. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/context.rb +51 -0
  379. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/env.rb +169 -0
  380. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/descendants.rb +20 -0
  381. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/method.rb +91 -0
  382. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/methods.rb +70 -0
  383. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/namespace.rb +96 -0
  384. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/parser.rb +38 -0
  385. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression/source.rb +46 -0
  386. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/expression.rb +60 -0
  387. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/hooks.rb +77 -0
  388. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/integration/null.rb +28 -0
  389. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/integration.rb +141 -0
  390. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/exception.rb +22 -0
  391. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/fork.rb +250 -0
  392. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation/none.rb +37 -0
  393. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/isolation.rb +32 -0
  394. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/loader.rb +47 -0
  395. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/chain.rb +22 -0
  396. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/config.rb +115 -0
  397. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/descendants.rb +26 -0
  398. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/filter.rb +20 -0
  399. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/instance.rb +84 -0
  400. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/metaclass.rb +74 -0
  401. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method/singleton.rb +58 -0
  402. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/method.rb +179 -0
  403. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/methods.rb +115 -0
  404. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/namespace.rb +34 -0
  405. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/null.rb +20 -0
  406. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/scope.rb +39 -0
  407. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher/static.rb +17 -0
  408. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/matcher.rb +55 -0
  409. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example/dsl.rb +108 -0
  410. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example/verification.rb +142 -0
  411. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta/example.rb +80 -0
  412. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/meta.rb +41 -0
  413. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/config.rb +59 -0
  414. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/operators.rb +195 -0
  415. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/runner/sink.rb +84 -0
  416. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation/runner.rb +63 -0
  417. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutation.rb +151 -0
  418. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/and_asgn.rb +25 -0
  419. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/argument.rb +44 -0
  420. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/arguments.rb +72 -0
  421. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/begin.rb +58 -0
  422. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/binary.rb +48 -0
  423. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/block.rb +88 -0
  424. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/block_pass.rb +33 -0
  425. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/break.rb +23 -0
  426. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/case.rb +43 -0
  427. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/case_match.rb +46 -0
  428. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/class.rb +20 -0
  429. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/conditional_loop.rb +56 -0
  430. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/const.rb +25 -0
  431. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/const_pattern.rb +18 -0
  432. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/define.rb +87 -0
  433. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/defined.rb +35 -0
  434. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/dynamic_literal.rb +24 -0
  435. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/ensure.rb +24 -0
  436. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/generic.rb +20 -0
  437. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/guard.rb +23 -0
  438. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/if.rb +55 -0
  439. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/in_pattern.rb +25 -0
  440. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/index.rb +102 -0
  441. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/kwargs.rb +44 -0
  442. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/kwbegin.rb +22 -0
  443. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/array.rb +37 -0
  444. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/boolean.rb +27 -0
  445. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/complex.rb +31 -0
  446. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/float.rb +38 -0
  447. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/hash.rb +50 -0
  448. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/integer.rb +29 -0
  449. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/nil.rb +20 -0
  450. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/range.rb +40 -0
  451. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/rational.rb +31 -0
  452. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/regex.rb +46 -0
  453. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/string.rb +23 -0
  454. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal/symbol.rb +25 -0
  455. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/literal.rb +18 -0
  456. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/masgn.rb +22 -0
  457. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_alt.rb +26 -0
  458. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_current_line.rb +23 -0
  459. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/match_pattern_p.rb +25 -0
  460. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/mlhs.rb +18 -0
  461. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/module.rb +19 -0
  462. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/access.rb +23 -0
  463. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/constant_assignment.rb +38 -0
  464. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/named_value/variable_assignment.rb +35 -0
  465. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/next.rb +24 -0
  466. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/noop.rb +21 -0
  467. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/nthref.rb +25 -0
  468. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/numblock.rb +21 -0
  469. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/op_asgn.rb +58 -0
  470. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/or_asgn.rb +25 -0
  471. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/procarg_zero.rb +18 -0
  472. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/regopt.rb +25 -0
  473. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/resbody.rb +21 -0
  474. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/rescue.rb +85 -0
  475. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/return.rb +25 -0
  476. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/sclass.rb +20 -0
  477. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/attribute_assignment.rb +35 -0
  478. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/binary.rb +85 -0
  479. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send/conditional.rb +22 -0
  480. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/send.rb +274 -0
  481. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/splat.rb +24 -0
  482. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/super.rb +27 -0
  483. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/when.rb +46 -0
  484. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/yield.rb +23 -0
  485. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node/zsuper.rb +38 -0
  486. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/node.rb +141 -0
  487. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/regexp.rb +211 -0
  488. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util/array.rb +27 -0
  489. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util/symbol.rb +21 -0
  490. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator/util.rb +9 -0
  491. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/mutator.rb +46 -0
  492. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/connection.rb +167 -0
  493. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/driver.rb +68 -0
  494. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/pipe.rb +39 -0
  495. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/source.rb +65 -0
  496. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel/worker.rb +159 -0
  497. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parallel.rb +127 -0
  498. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/parser.rb +36 -0
  499. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/procto.rb +23 -0
  500. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/range.rb +15 -0
  501. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/registry.rb +42 -0
  502. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/format.rb +190 -0
  503. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/config.rb +33 -0
  504. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/coverage_result.rb +19 -0
  505. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env.rb +42 -0
  506. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env_progress.rb +61 -0
  507. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/env_result.rb +31 -0
  508. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/isolation_result.rb +95 -0
  509. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/mutation.rb +58 -0
  510. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/mutation_result.rb +84 -0
  511. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/status_progressive.rb +75 -0
  512. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/subject_result.rb +27 -0
  513. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer/test.rb +186 -0
  514. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/printer.rb +88 -0
  515. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli/progress_bar.rb +71 -0
  516. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/cli.rb +116 -0
  517. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/null.rb +18 -0
  518. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter/sequence.rb +25 -0
  519. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/reporter.rb +63 -0
  520. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository/diff/ranges.rb +41 -0
  521. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository/diff.rb +113 -0
  522. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/repository.rb +6 -0
  523. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/require_highjack.rb +28 -0
  524. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/result.rb +306 -0
  525. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/scope.rb +44 -0
  526. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/segment/recorder.rb +124 -0
  527. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/segment.rb +23 -0
  528. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector/expression.rb +29 -0
  529. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector/null.rb +19 -0
  530. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/selector.rb +16 -0
  531. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/config.rb +26 -0
  532. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/instance.rb +44 -0
  533. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/metaclass.rb +27 -0
  534. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method/singleton.rb +22 -0
  535. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject/method.rb +38 -0
  536. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/subject.rb +101 -0
  537. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test/runner/sink.rb +55 -0
  538. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test/runner.rb +62 -0
  539. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/test.rb +17 -0
  540. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/timer.rb +73 -0
  541. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/transform.rb +438 -0
  542. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/usage.rb +97 -0
  543. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/util.rb +33 -0
  544. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/variable.rb +319 -0
  545. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/version.rb +16 -0
  546. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/world.rb +96 -0
  547. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant/zombifier.rb +91 -0
  548. data/vendor/bundle/ruby/4.0.0/gems/mutant-0.15.1/lib/mutant.rb +388 -0
  549. data/vendor/bundle/ruby/4.0.0/gems/mutant-rspec-0.15.1/LICENSE +271 -0
  550. data/vendor/bundle/ruby/4.0.0/gems/mutant-rspec-0.15.1/lib/mutant/integration/rspec.rb +170 -0
  551. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +2411 -0
  552. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +48 -0
  553. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +6 -0
  554. data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.11.1/lib/parser/current.rb +146 -0
  555. data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.11.1/lib/parser/version.rb +5 -0
  556. data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/formatter.rb +31 -0
  557. data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/notification_decorator.rb +54 -0
  558. data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github/version.rb +7 -0
  559. data/vendor/bundle/ruby/4.0.0/gems/rspec-github-2.4.0/lib/rspec/github.rb +9 -0
  560. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/config/default.yml +6218 -0
  561. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cache_config.rb +58 -0
  562. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/auto_generate_config.rb +167 -0
  563. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/show_cops.rb +96 -0
  564. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cli/command/show_docs_url.rb +48 -0
  565. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config.rb +400 -0
  566. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_finder.rb +78 -0
  567. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_store.rb +77 -0
  568. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/config_validator.rb +291 -0
  569. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/argument_alignment.rb +151 -0
  570. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/dot_position.rb +139 -0
  571. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +224 -0
  572. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_line_between_defs.rb +311 -0
  573. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +140 -0
  574. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/end_alignment.rb +215 -0
  575. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +428 -0
  576. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/space_around_keyword.rb +276 -0
  577. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/layout/space_in_lambda_literal.rb +79 -0
  578. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/constant_reassignment.rb +198 -0
  579. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/duplicate_methods.rb +440 -0
  580. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_conditional_body.rb +153 -0
  581. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_in_pattern.rb +71 -0
  582. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/empty_when.rb +68 -0
  583. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/number_conversion.rb +200 -0
  584. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +276 -0
  585. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +133 -0
  586. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +56 -0
  587. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/useless_constant_scoping.rb +71 -0
  588. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/useless_default_value_argument.rb +92 -0
  589. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +122 -0
  590. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/mixin/check_single_line_suitability.rb +47 -0
  591. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/registry.rb +325 -0
  592. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/and_or.rb +159 -0
  593. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/arguments_forwarding.rb +582 -0
  594. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/ascii_comments.rb +60 -0
  595. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/block_delimiters.rb +496 -0
  596. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/collection_compact.rb +163 -0
  597. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/concat_array_literals.rb +97 -0
  598. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/conditional_assignment.rb +666 -0
  599. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/empty_class_definition.rb +119 -0
  600. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/file_open.rb +84 -0
  601. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/global_vars.rb +81 -0
  602. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/hash_lookup_method.rb +101 -0
  603. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/if_unless_modifier.rb +362 -0
  604. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/if_with_semicolon.rb +134 -0
  605. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/ip_addresses.rb +74 -0
  606. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
  607. 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
  608. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/mutable_constant.rb +246 -0
  609. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/non_nil_check.rb +152 -0
  610. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/numeric_literals.rb +130 -0
  611. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/raise_args.rb +160 -0
  612. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_each.rb +119 -0
  613. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_parentheses.rb +360 -0
  614. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_percent_q.rb +110 -0
  615. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +85 -0
  616. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/safe_navigation.rb +427 -0
  617. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/single_line_block_params.rb +119 -0
  618. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/symbol_proc.rb +283 -0
  619. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/trailing_method_end_statement.rb +63 -0
  620. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/cop/style/yoda_expression.rb +92 -0
  621. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/disabled_config_formatter.rb +297 -0
  622. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/junit_formatter.rb +143 -0
  623. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/formatter/worst_offenders_formatter.rb +64 -0
  624. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/lsp/routes.rb +263 -0
  625. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/mcp/server.rb +198 -0
  626. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/path_util.rb +134 -0
  627. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/plugin/loader.rb +100 -0
  628. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/result_cache.rb +259 -0
  629. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/rspec/shared_contexts.rb +284 -0
  630. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/runner.rb +534 -0
  631. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/server/core.rb +118 -0
  632. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/target_finder.rb +221 -0
  633. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.0/lib/rubocop/version.rb +160 -0
  634. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/binding.rb +84 -0
  635. 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
  636. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +431 -0
  637. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/lexer.rex.rb +184 -0
  638. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/parser.racc.rb +472 -0
  639. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern.rb +127 -0
  640. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/traversal.rb +193 -0
  641. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/version.rb +9 -0
  642. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/sorbet-runtime.rb +119 -0
  643. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/_types.rb +382 -0
  644. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/abstract_utils.rb +50 -0
  645. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/boolean.rb +8 -0
  646. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/compatibility_patches.rb +95 -0
  647. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/configuration.rb +575 -0
  648. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/enum.rb +406 -0
  649. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/generic.rb +24 -0
  650. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/helpers.rb +65 -0
  651. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/data.rb +36 -0
  652. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/declare.rb +53 -0
  653. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/hooks.rb +42 -0
  654. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/abstract/validate.rb +128 -0
  655. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/caller_utils.rb +27 -0
  656. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/casts.rb +44 -0
  657. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/class_utils.rb +134 -0
  658. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/decl_state.rb +30 -0
  659. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/final.rb +50 -0
  660. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/_methods.rb +612 -0
  661. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/call_validation.rb +335 -0
  662. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/call_validation_2_7.rb +1729 -0
  663. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/decl_builder.rb +255 -0
  664. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/modes.rb +28 -0
  665. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/signature.rb +258 -0
  666. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/methods/signature_validation.rb +332 -0
  667. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/mixins/mixins.rb +27 -0
  668. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/retry.rb +10 -0
  669. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/runtime_levels.rb +78 -0
  670. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/sealed.rb +91 -0
  671. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/not_typed.rb +29 -0
  672. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/simple_pair_union.rb +55 -0
  673. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/string_holder.rb +30 -0
  674. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/type_alias.rb +35 -0
  675. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/private/types/void.rb +44 -0
  676. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/_props.rb +166 -0
  677. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/constructor.rb +40 -0
  678. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/custom_type.rb +108 -0
  679. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/decorator.rb +742 -0
  680. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/errors.rb +8 -0
  681. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/generated_code_validation.rb +277 -0
  682. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/has_lazily_specialized_methods.rb +144 -0
  683. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/optional.rb +89 -0
  684. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/plugin.rb +37 -0
  685. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/pretty_printable.rb +69 -0
  686. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/apply_default.rb +170 -0
  687. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/deserializer_generator.rb +167 -0
  688. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/parser.rb +32 -0
  689. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/serde_transform.rb +186 -0
  690. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/serializer_generator.rb +80 -0
  691. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/private/setter_factory.rb +257 -0
  692. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/serializable.rb +398 -0
  693. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/type_validation.rb +114 -0
  694. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/utils.rb +59 -0
  695. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/props/weak_constructor.rb +67 -0
  696. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/sig.rb +30 -0
  697. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/struct.rb +51 -0
  698. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/anything.rb +35 -0
  699. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/attached_class.rb +41 -0
  700. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/base.rb +192 -0
  701. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/class_of.rb +55 -0
  702. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/enum.rb +50 -0
  703. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/fixed_array.rb +106 -0
  704. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/fixed_hash.rb +103 -0
  705. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/intersection.rb +49 -0
  706. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/noreturn.rb +32 -0
  707. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/proc.rb +61 -0
  708. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/self_type.rb +39 -0
  709. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/simple.rb +126 -0
  710. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/t_enum.rb +44 -0
  711. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_member.rb +7 -0
  712. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_parameter.rb +46 -0
  713. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_template.rb +7 -0
  714. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/type_variable.rb +38 -0
  715. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_array.rb +73 -0
  716. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_class.rb +102 -0
  717. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerable.rb +183 -0
  718. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator.rb +39 -0
  719. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator_chain.rb +39 -0
  720. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_enumerator_lazy.rb +39 -0
  721. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_hash.rb +58 -0
  722. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_module.rb +102 -0
  723. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_range.rb +29 -0
  724. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/typed_set.rb +48 -0
  725. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/union.rb +134 -0
  726. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/types/untyped.rb +33 -0
  727. data/vendor/bundle/ruby/4.0.0/gems/sorbet-runtime-0.6.13067/lib/types/utils.rb +219 -0
  728. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/CHANGELOG.md +18 -0
  729. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/Gemfile +2 -0
  730. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/LICENSE +21 -0
  731. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/README.md +345 -0
  732. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/Rakefile +27 -0
  733. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof +129 -0
  734. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof-flamegraph.pl +2 -0
  735. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/bin/stackprof-gprof2dot.py +2 -0
  736. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/Makefile +273 -0
  737. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/extconf.rb +16 -0
  738. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/ext/stackprof/stackprof.c +1028 -0
  739. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/autorun.rb +19 -0
  740. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/flamegraph/flamegraph.js +983 -0
  741. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/flamegraph/viewer.html +91 -0
  742. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/middleware.rb +72 -0
  743. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/report.rb +703 -0
  744. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/stackprof.so +0 -0
  745. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof/truffleruby.rb +37 -0
  746. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/lib/stackprof.rb +25 -0
  747. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/sample.rb +43 -0
  748. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/stackprof.gemspec +33 -0
  749. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/fixtures/profile.dump +1 -0
  750. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/fixtures/profile.json +1 -0
  751. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_middleware.rb +86 -0
  752. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_report.rb +58 -0
  753. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_stackprof.rb +328 -0
  754. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/test/test_truffleruby.rb +18 -0
  755. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/FlameGraph/README +134 -0
  756. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/FlameGraph/flamegraph.pl +1160 -0
  757. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/gprof2dot/gprof2dot.py +3266 -0
  758. data/vendor/bundle/ruby/4.0.0/gems/stackprof-0.2.28/vendor/gprof2dot/hotshotmain.py +70 -0
  759. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/README.md +202 -0
  760. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/bin/unparser +10 -0
  761. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/abstract_type.rb +121 -0
  762. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/adamantium/method_builder.rb +111 -0
  763. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/adamantium.rb +152 -0
  764. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima/attribute.rb +59 -0
  765. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima/error.rb +23 -0
  766. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/anima.rb +195 -0
  767. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/ast/local_variable_scope.rb +177 -0
  768. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/ast.rb +197 -0
  769. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/buffer.rb +171 -0
  770. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/cli.rb +203 -0
  771. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/color.rb +44 -0
  772. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/comments.rb +130 -0
  773. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/concord.rb +114 -0
  774. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/constants.rb +71 -0
  775. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/diff.rb +98 -0
  776. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/dsl.rb +41 -0
  777. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/either.rb +153 -0
  778. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/alias.rb +23 -0
  779. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/args.rb +49 -0
  780. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/argument.rb +138 -0
  781. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/array.rb +23 -0
  782. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/array_pattern.rb +21 -0
  783. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/assignment.rb +85 -0
  784. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/begin.rb +20 -0
  785. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/binary.rb +21 -0
  786. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/block.rb +98 -0
  787. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case.rb +63 -0
  788. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case_guard.rb +27 -0
  789. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/case_match.rb +40 -0
  790. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/cbase.rb +23 -0
  791. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/class.rb +49 -0
  792. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/const_pattern.rb +24 -0
  793. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/def.rb +78 -0
  794. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/defined.rb +20 -0
  795. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/dstr.rb +23 -0
  796. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/dsym.rb +41 -0
  797. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/ensure.rb +16 -0
  798. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/find_pattern.rb +18 -0
  799. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/flipflop.rb +39 -0
  800. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/float.rb +29 -0
  801. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/flow_modifier.rb +36 -0
  802. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/for.rb +29 -0
  803. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hash.rb +28 -0
  804. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hash_pattern.rb +67 -0
  805. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/hookexe.rb +28 -0
  806. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/if.rb +80 -0
  807. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/in_match.rb +21 -0
  808. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/in_pattern.rb +44 -0
  809. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/index.rb +65 -0
  810. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/kwargs.rb +13 -0
  811. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/kwbegin.rb +31 -0
  812. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/lambda.rb +17 -0
  813. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/masgn.rb +20 -0
  814. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match.rb +40 -0
  815. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_alt.rb +23 -0
  816. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_as.rb +21 -0
  817. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_pattern.rb +26 -0
  818. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_pattern_p.rb +25 -0
  819. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_rest.rb +33 -0
  820. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/match_var.rb +19 -0
  821. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/mlhs.rb +46 -0
  822. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/module.rb +24 -0
  823. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/op_assign.rb +47 -0
  824. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/pair.rb +59 -0
  825. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/pin.rb +19 -0
  826. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/primitive.rb +106 -0
  827. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/range.rb +56 -0
  828. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/regexp.rb +23 -0
  829. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/repetition.rb +75 -0
  830. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/rescue.rb +22 -0
  831. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/root.rb +20 -0
  832. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/send.rb +25 -0
  833. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/simple.rb +33 -0
  834. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/splat.rb +43 -0
  835. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/string.rb +31 -0
  836. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/super.rb +22 -0
  837. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/undef.rb +18 -0
  838. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/variable.rb +58 -0
  839. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/xstr.rb +79 -0
  840. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter/yield.rb +24 -0
  841. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/emitter.rb +95 -0
  842. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/equalizer.rb +98 -0
  843. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/finalize.rb +3 -0
  844. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/generation.rb +256 -0
  845. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_details/send.rb +66 -0
  846. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_details.rb +22 -0
  847. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/node_helpers.rb +89 -0
  848. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/util.rb +24 -0
  849. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/validation.rb +214 -0
  850. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/array.rb +51 -0
  851. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/binary.rb +103 -0
  852. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/dynamic_string.rb +203 -0
  853. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/regexp.rb +101 -0
  854. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/resbody.rb +74 -0
  855. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/rescue.rb +39 -0
  856. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/attribute_assignment.rb +40 -0
  857. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/binary.rb +27 -0
  858. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/conditional.rb +25 -0
  859. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/regular.rb +33 -0
  860. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send/unary.rb +34 -0
  861. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer/send.rb +109 -0
  862. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser/writer.rb +45 -0
  863. data/vendor/bundle/ruby/4.0.0/gems/unparser-0.8.2/lib/unparser.rb +357 -0
  864. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/CHANGELOG.md +2148 -0
  865. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/README.md +1229 -0
  866. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/curb_adapter.rb +354 -0
  867. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/response.rb +95 -0
  868. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/streamer.rb +44 -0
  869. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/http_lib_adapters/http_rb/webmock.rb +77 -0
  870. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.2/lib/webmock/version.rb +5 -0
  871. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/Gemfile +10 -0
  872. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/LICENSE.txt +22 -0
  873. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/README.md +63 -0
  874. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/Rakefile +10 -0
  875. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/accesslog.rb +157 -0
  876. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/cgi.rb +313 -0
  877. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/compat.rb +36 -0
  878. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/config.rb +158 -0
  879. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/cookie.rb +172 -0
  880. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/htmlutils.rb +30 -0
  881. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/authenticator.rb +117 -0
  882. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/basicauth.rb +116 -0
  883. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/digestauth.rb +395 -0
  884. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htdigest.rb +132 -0
  885. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htgroup.rb +97 -0
  886. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/htpasswd.rb +158 -0
  887. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth/userdb.rb +53 -0
  888. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpauth.rb +96 -0
  889. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpproxy.rb +354 -0
  890. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httprequest.rb +668 -0
  891. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpresponse.rb +588 -0
  892. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/https.rb +152 -0
  893. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpserver.rb +294 -0
  894. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/abstract.rb +152 -0
  895. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  896. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgihandler.rb +126 -0
  897. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/erbhandler.rb +88 -0
  898. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/filehandler.rb +552 -0
  899. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet/prochandler.rb +48 -0
  900. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpservlet.rb +23 -0
  901. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpstatus.rb +194 -0
  902. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httputils.rb +543 -0
  903. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/httpversion.rb +76 -0
  904. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/log.rb +156 -0
  905. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/server.rb +380 -0
  906. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/ssl.rb +219 -0
  907. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/utils.rb +265 -0
  908. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick/version.rb +18 -0
  909. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/lib/webrick.rb +232 -0
  910. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/accesslog.rbs +24 -0
  911. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/cgi.rbs +92 -0
  912. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/compat.rbs +18 -0
  913. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/config.rbs +17 -0
  914. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/cookie.rbs +37 -0
  915. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/htmlutils.rbs +5 -0
  916. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/authenticator.rbs +55 -0
  917. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/basicauth.rbs +29 -0
  918. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/digestauth.rbs +85 -0
  919. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htdigest.rbs +31 -0
  920. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htgroup.rbs +21 -0
  921. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/htpasswd.rbs +31 -0
  922. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth/userdb.rbs +13 -0
  923. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpauth.rbs +13 -0
  924. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpproxy.rbs +61 -0
  925. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httprequest.rbs +167 -0
  926. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpresponse.rbs +117 -0
  927. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/https.rbs +49 -0
  928. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpserver.rbs +71 -0
  929. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/abstract.rbs +36 -0
  930. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/cgi_runner.rbs +3 -0
  931. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/cgihandler.rbs +23 -0
  932. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/erbhandler.rbs +17 -0
  933. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/filehandler.rbs +76 -0
  934. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet/prochandler.rbs +21 -0
  935. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpservlet.rbs +4 -0
  936. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpstatus.rbs +255 -0
  937. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httputils.rbs +116 -0
  938. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/httpversion.rbs +17 -0
  939. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/log.rbs +93 -0
  940. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/manifest.yaml +8 -0
  941. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/server.rbs +57 -0
  942. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/ssl.rbs +19 -0
  943. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/utils.rbs +122 -0
  944. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/sig/version.rbs +3 -0
  945. data/vendor/bundle/ruby/4.0.0/gems/webrick-1.9.2/webrick.gemspec +105 -0
  946. data/vendor/bundle/ruby/4.0.0/specifications/bigdecimal-4.1.0.gemspec +25 -0
  947. data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.3.gemspec +0 -0
  948. data/vendor/bundle/ruby/4.0.0/specifications/mutant-0.15.1.gemspec +38 -0
  949. data/vendor/bundle/ruby/4.0.0/specifications/mutant-rspec-0.15.1.gemspec +29 -0
  950. data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.2-x86_64-linux-gnu.gemspec +31 -0
  951. data/vendor/bundle/ruby/4.0.0/specifications/parser-3.3.11.1.gemspec +37 -0
  952. data/vendor/bundle/ruby/4.0.0/specifications/rspec-github-2.4.0.gemspec +29 -0
  953. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.86.0.gemspec +39 -0
  954. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-ast-1.49.1.gemspec +29 -0
  955. data/vendor/bundle/ruby/4.0.0/specifications/sorbet-runtime-0.6.13067.gemspec +34 -0
  956. data/vendor/bundle/ruby/4.0.0/specifications/stackprof-0.2.28.gemspec +31 -0
  957. data/vendor/bundle/ruby/4.0.0/specifications/unparser-0.8.2.gemspec +39 -0
  958. data/vendor/bundle/ruby/4.0.0/specifications/webmock-3.26.2.gemspec +44 -0
  959. data/vendor/bundle/ruby/4.0.0/specifications/webrick-1.9.2.gemspec +22 -0
  960. data/wsdl.gemspec +2 -2
  961. metadata +2142 -1666
  962. data/docs/reference/strict-schema-fixture-matrix.md +0 -67
  963. data/lib/wsdl/cache.rb +0 -172
  964. data/lib/wsdl/http_adapter/config.rb +0 -71
  965. data/lib/wsdl/http_adapter/redirect_guard.rb +0 -132
  966. data/lib/wsdl/http_adapter.rb +0 -318
  967. data/lib/wsdl/http_response.rb +0 -31
  968. data/lib/wsdl/parser/cached_result.rb +0 -154
  969. data/lib/wsdl/parser/importer.rb +0 -301
  970. data/lib/wsdl/parser/resolver.rb +0 -450
  971. data/lib/wsdl/parser/result.rb +0 -257
  972. data/lib/wsdl/source.rb +0 -169
  973. data/spec/integration/amazon_spec.rb +0 -214
  974. data/spec/integration/awse_spec.rb +0 -202
  975. data/spec/integration/bookt_spec.rb +0 -73
  976. data/spec/integration/bronto_spec.rb +0 -304
  977. data/spec/integration/bydexchange_spec.rb +0 -40
  978. data/spec/integration/daisycon_spec.rb +0 -34
  979. data/spec/integration/data_exchange_spec.rb +0 -27
  980. data/spec/integration/document_literal_spec.rb +0 -104
  981. data/spec/integration/economic_spec.rb +0 -65
  982. data/spec/integration/email_verification_spec.rb +0 -91
  983. data/spec/integration/geotrust_spec.rb +0 -54
  984. data/spec/integration/iws_spec.rb +0 -28
  985. data/spec/integration/jetairways_spec.rb +0 -146
  986. data/spec/integration/jira_spec.rb +0 -28
  987. data/spec/integration/juniper_spec.rb +0 -34
  988. data/spec/integration/namespaced_actions_spec.rb +0 -49
  989. data/spec/integration/oracle_spec.rb +0 -215
  990. data/spec/integration/rio2_spec.rb +0 -57
  991. data/spec/integration/security_round_trip_spec.rb +0 -168
  992. data/spec/integration/spyne_spec.rb +0 -62
  993. data/spec/integration/stockquote_spec.rb +0 -46
  994. data/spec/integration/strict_schema_fixture_matrix_spec.rb +0 -108
  995. data/spec/integration/taxcloud_spec.rb +0 -74
  996. data/spec/integration/team_software_spec.rb +0 -58
  997. data/spec/integration/travelport_spec.rb +0 -90
  998. data/spec/integration/wasmuth_spec.rb +0 -61
  999. data/spec/integration/xsw_attack_vectors_spec.rb +0 -418
  1000. data/spec/support/request_dsl_helper.rb +0 -144
  1001. data/spec/wsdl/cache_spec.rb +0 -490
  1002. data/spec/wsdl/http_adapter_integration_spec.rb +0 -198
  1003. data/spec/wsdl/http_adapter_spec.rb +0 -524
  1004. data/spec/wsdl/http_response_spec.rb +0 -49
  1005. data/spec/wsdl/parser/cached_result_spec.rb +0 -287
  1006. data/spec/wsdl/parser/resolver_spec.rb +0 -553
  1007. data/spec/wsdl/parser/result_spec.rb +0 -355
  1008. data/spec/wsdl/security/verifier/shared_context.rb +0 -194
  1009. data/spec/wsdl/source_spec.rb +0 -152
  1010. data/spec/wsdl/xml/parser_property_spec.rb +0 -305
  1011. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/bigdecimal.so +0 -0
  1012. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/gem_make.out +0 -38
  1013. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/bigdecimal-4.0.1/mkmf.log +0 -458
  1014. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/gem_make.out +0 -25
  1015. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/json/ext/generator.so +0 -0
  1016. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.0/json/ext/parser.so +0 -0
  1017. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/bigdecimal.gemspec +0 -57
  1018. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/Makefile +0 -274
  1019. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.c +0 -6206
  1020. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.h +0 -292
  1021. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/extconf.rb +0 -60
  1022. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.h +0 -104
  1023. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal/math.rb +0 -948
  1024. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal/util.rb +0 -186
  1025. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal.rb +0 -360
  1026. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/lib/bigdecimal.so +0 -0
  1027. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/linear.rb +0 -74
  1028. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/nlsolve.rb +0 -40
  1029. data/vendor/bundle/ruby/4.0.0/gems/bigdecimal-4.0.1/sample/pi.rb +0 -21
  1030. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/CHANGES.md +0 -738
  1031. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/ext/json/ext/fbuffer/fbuffer.h +0 -249
  1032. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/ext/json/ext/parser/parser.c +0 -1680
  1033. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/ext/generator.so +0 -0
  1034. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/ext/parser.so +0 -0
  1035. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.0/lib/json/version.rb +0 -5
  1036. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/LICENSE.md +0 -19
  1037. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/README.md +0 -526
  1038. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attribute.rb +0 -52
  1039. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/additionalitems.rb +0 -29
  1040. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/additionalproperties.rb +0 -55
  1041. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/allof.rb +0 -66
  1042. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/anyof.rb +0 -47
  1043. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/const.rb +0 -15
  1044. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/dependencies.rb +0 -39
  1045. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/dependencies_v4.rb +0 -11
  1046. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/disallow.rb +0 -13
  1047. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/divisibleby.rb +0 -22
  1048. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/enum.rb +0 -24
  1049. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/extends.rb +0 -50
  1050. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/format.rb +0 -15
  1051. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/custom.rb +0 -19
  1052. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date.rb +0 -26
  1053. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date_time.rb +0 -35
  1054. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/date_time_v4.rb +0 -16
  1055. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/ip.rb +0 -41
  1056. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/time.rb +0 -22
  1057. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/formats/uri.rb +0 -19
  1058. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/items.rb +0 -28
  1059. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limit.rb +0 -52
  1060. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/items.rb +0 -15
  1061. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/length.rb +0 -15
  1062. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_items.rb +0 -15
  1063. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_length.rb +0 -15
  1064. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/max_properties.rb +0 -15
  1065. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/maximum.rb +0 -15
  1066. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/maximum_inclusive.rb +0 -11
  1067. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_items.rb +0 -15
  1068. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_length.rb +0 -15
  1069. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/min_properties.rb +0 -15
  1070. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/minimum.rb +0 -15
  1071. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/minimum_inclusive.rb +0 -11
  1072. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/numeric.rb +0 -16
  1073. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/limits/properties.rb +0 -15
  1074. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/maxdecimal.rb +0 -18
  1075. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/multipleof.rb +0 -11
  1076. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/not.rb +0 -30
  1077. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/oneof.rb +0 -54
  1078. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/pattern.rb +0 -18
  1079. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/patternproperties.rb +0 -23
  1080. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties.rb +0 -66
  1081. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties_optional.rb +0 -26
  1082. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/properties_v4.rb +0 -13
  1083. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/propertynames.rb +0 -23
  1084. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/ref.rb +0 -62
  1085. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/required.rb +0 -29
  1086. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/type.rb +0 -74
  1087. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/type_v4.rb +0 -29
  1088. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/attributes/uniqueitems.rb +0 -16
  1089. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/custom_format_error.rb +0 -6
  1090. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/json_load_error.rb +0 -6
  1091. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/json_parse_error.rb +0 -6
  1092. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/schema_error.rb +0 -6
  1093. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/schema_parse_error.rb +0 -8
  1094. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/uri_error.rb +0 -6
  1095. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/errors/validation_error.rb +0 -46
  1096. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema/reader.rb +0 -142
  1097. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema/validator.rb +0 -37
  1098. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/schema.rb +0 -61
  1099. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/array_set.rb +0 -18
  1100. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/uri.rb +0 -133
  1101. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/util/uuid.rb +0 -262
  1102. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validator.rb +0 -666
  1103. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft1.rb +0 -43
  1104. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft2.rb +0 -44
  1105. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft3.rb +0 -48
  1106. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft4.rb +0 -54
  1107. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/draft6.rb +0 -56
  1108. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft1.rb +0 -12
  1109. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft2.rb +0 -12
  1110. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft3.rb +0 -12
  1111. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft4.rb +0 -12
  1112. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema/validators/hyper-draft6.rb +0 -12
  1113. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/lib/json-schema.rb +0 -18
  1114. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-01.json +0 -155
  1115. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-02.json +0 -166
  1116. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-03.json +0 -174
  1117. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-04.json +0 -150
  1118. data/vendor/bundle/ruby/4.0.0/gems/json-schema-6.2.0/resources/draft-06.json +0 -150
  1119. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/AGENTS.md +0 -107
  1120. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/CHANGELOG.md +0 -168
  1121. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/CODE_OF_CONDUCT.md +0 -74
  1122. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/Gemfile +0 -29
  1123. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/LICENSE +0 -216
  1124. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/README.md +0 -1040
  1125. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/RELEASE.md +0 -12
  1126. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/Rakefile +0 -56
  1127. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/SECURITY.md +0 -21
  1128. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/console +0 -15
  1129. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/generate-gh-pages.sh +0 -119
  1130. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/rake +0 -31
  1131. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/bin/setup +0 -8
  1132. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/README.md +0 -103
  1133. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/expected_failures.yml +0 -9
  1134. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/runner.rb +0 -101
  1135. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/conformance/server.rb +0 -547
  1136. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/dev.yml +0 -30
  1137. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/_config.yml +0 -6
  1138. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/index.md +0 -7
  1139. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/docs/latest/index.html +0 -19
  1140. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/README.md +0 -197
  1141. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/http_client.rb +0 -184
  1142. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/http_server.rb +0 -169
  1143. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/stdio_server.rb +0 -94
  1144. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/streamable_http_client.rb +0 -207
  1145. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/examples/streamable_http_server.rb +0 -172
  1146. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/json_rpc_handler.rb +0 -171
  1147. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/annotations.rb +0 -21
  1148. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client/http.rb +0 -104
  1149. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client/tool.rb +0 -16
  1150. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/client.rb +0 -159
  1151. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/configuration.rb +0 -118
  1152. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/content.rb +0 -59
  1153. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/icon.rb +0 -22
  1154. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/instrumentation.rb +0 -26
  1155. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/logging_message_notification.rb +0 -30
  1156. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/methods.rb +0 -98
  1157. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/argument.rb +0 -25
  1158. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/message.rb +0 -18
  1159. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt/result.rb +0 -18
  1160. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/prompt.rb +0 -122
  1161. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource/contents.rb +0 -44
  1162. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource/embedded.rb +0 -18
  1163. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource.rb +0 -27
  1164. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/resource_template.rb +0 -27
  1165. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/capabilities.rb +0 -96
  1166. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/transports/stdio_transport.rb +0 -57
  1167. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server/transports/streamable_http_transport.rb +0 -380
  1168. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/server.rb +0 -509
  1169. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/string_utils.rb +0 -25
  1170. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/annotations.rb +0 -27
  1171. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/input_schema.rb +0 -28
  1172. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/output_schema.rb +0 -18
  1173. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/response.rb +0 -30
  1174. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool/schema.rb +0 -61
  1175. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/tool.rb +0 -155
  1176. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/transport.rb +0 -45
  1177. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/transports/stdio.rb +0 -15
  1178. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp/version.rb +0 -5
  1179. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/lib/mcp.rb +0 -43
  1180. data/vendor/bundle/ruby/4.0.0/gems/mcp-0.8.0/mcp.gemspec +0 -35
  1181. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +0 -2224
  1182. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +0 -43
  1183. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.1-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +0 -6
  1184. data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.10.2/lib/parser/current.rb +0 -146
  1185. data/vendor/bundle/ruby/4.0.0/gems/parser-3.3.10.2/lib/parser/version.rb +0 -5
  1186. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/config/default.yml +0 -6225
  1187. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cache_config.rb +0 -58
  1188. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/auto_generate_config.rb +0 -167
  1189. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/show_cops.rb +0 -96
  1190. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cli/command/show_docs_url.rb +0 -48
  1191. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config.rb +0 -400
  1192. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_finder.rb +0 -78
  1193. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_store.rb +0 -77
  1194. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/config_validator.rb +0 -291
  1195. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/argument_alignment.rb +0 -151
  1196. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/dot_position.rb +0 -139
  1197. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -217
  1198. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -311
  1199. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -139
  1200. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/end_alignment.rb +0 -214
  1201. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -403
  1202. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/space_around_keyword.rb +0 -274
  1203. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
  1204. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/constant_reassignment.rb +0 -148
  1205. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -398
  1206. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -148
  1207. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -64
  1208. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/empty_when.rb +0 -61
  1209. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/number_conversion.rb +0 -200
  1210. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -260
  1211. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -116
  1212. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -55
  1213. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -71
  1214. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -90
  1215. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
  1216. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -47
  1217. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/registry.rb +0 -318
  1218. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/and_or.rb +0 -158
  1219. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/arguments_forwarding.rb +0 -564
  1220. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/ascii_comments.rb +0 -60
  1221. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/block_delimiters.rb +0 -504
  1222. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/collection_compact.rb +0 -143
  1223. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/concat_array_literals.rb +0 -95
  1224. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/conditional_assignment.rb +0 -670
  1225. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/empty_class_definition.rb +0 -97
  1226. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/file_open.rb +0 -84
  1227. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/global_vars.rb +0 -81
  1228. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/hash_lookup_method.rb +0 -94
  1229. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -351
  1230. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/if_with_semicolon.rb +0 -132
  1231. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/ip_addresses.rb +0 -75
  1232. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/magic_comment_format.rb +0 -307
  1233. 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
  1234. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/mutable_constant.rb +0 -246
  1235. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/non_nil_check.rb +0 -158
  1236. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/numeric_literals.rb +0 -130
  1237. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/raise_args.rb +0 -160
  1238. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_each.rb +0 -119
  1239. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_parentheses.rb +0 -361
  1240. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_percent_q.rb +0 -107
  1241. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -90
  1242. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/safe_navigation.rb +0 -427
  1243. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/single_line_block_params.rb +0 -119
  1244. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/symbol_proc.rb +0 -282
  1245. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -62
  1246. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/cop/style/yoda_expression.rb +0 -92
  1247. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/disabled_config_formatter.rb +0 -297
  1248. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/junit_formatter.rb +0 -143
  1249. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -64
  1250. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/lsp/routes.rb +0 -256
  1251. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/mcp/server.rb +0 -174
  1252. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/path_util.rb +0 -122
  1253. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/plugin/loader.rb +0 -100
  1254. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/result_cache.rb +0 -250
  1255. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/rspec/shared_contexts.rb +0 -275
  1256. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/runner.rb +0 -529
  1257. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/server/core.rb +0 -116
  1258. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/target_finder.rb +0 -221
  1259. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.85.1/lib/rubocop/version.rb +0 -160
  1260. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler/binding.rb +0 -78
  1261. 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
  1262. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +0 -419
  1263. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex.rb +0 -184
  1264. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/parser.racc.rb +0 -470
  1265. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern.rb +0 -127
  1266. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/traversal.rb +0 -193
  1267. data/vendor/bundle/ruby/4.0.0/gems/rubocop-ast-1.49.0/lib/rubocop/ast/version.rb +0 -9
  1268. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/CHANGELOG.md +0 -2134
  1269. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/README.md +0 -1226
  1270. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/curb_adapter.rb +0 -353
  1271. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/response.rb +0 -87
  1272. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/streamer.rb +0 -37
  1273. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/http_lib_adapters/http_rb/webmock.rb +0 -74
  1274. data/vendor/bundle/ruby/4.0.0/gems/webmock-3.26.1/lib/webmock/version.rb +0 -5
  1275. data/vendor/bundle/ruby/4.0.0/specifications/bigdecimal-4.0.1.gemspec +0 -25
  1276. data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.0.gemspec +0 -0
  1277. data/vendor/bundle/ruby/4.0.0/specifications/json-schema-6.2.0.gemspec +0 -28
  1278. data/vendor/bundle/ruby/4.0.0/specifications/mcp-0.8.0.gemspec +0 -27
  1279. data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.1-x86_64-linux-gnu.gemspec +0 -31
  1280. data/vendor/bundle/ruby/4.0.0/specifications/parser-3.3.10.2.gemspec +0 -37
  1281. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.85.1.gemspec +0 -40
  1282. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-ast-1.49.0.gemspec +0 -29
  1283. data/vendor/bundle/ruby/4.0.0/specifications/webmock-3.26.1.gemspec +0 -44
  1284. /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/a.wsdl +0 -0
  1285. /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/b.wsdl +0 -0
  1286. /data/spec/fixtures/{wsdl → parser}/duplicate_definitions/root.wsdl +0 -0
  1287. /data/spec/fixtures/{wsdl → parser}/malicious/path_traversal.wsdl +0 -0
  1288. /data/spec/fixtures/{wsdl → parser}/qname_collisions/a.wsdl +0 -0
  1289. /data/spec/fixtures/{wsdl → parser}/qname_collisions/b.wsdl +0 -0
  1290. /data/spec/fixtures/{wsdl → parser}/qname_collisions/root.wsdl +0 -0
  1291. /data/spec/fixtures/{wsdl → parser}/unresolved_references/binding.wsdl +0 -0
  1292. /data/spec/fixtures/{wsdl → parser}/unresolved_references/message.wsdl +0 -0
  1293. /data/spec/fixtures/{wsdl → parser}/unresolved_references/port_type.wsdl +0 -0
  1294. /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
  1295. /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
  1296. /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
  1297. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/LICENSE +0 -0
  1298. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/bits.h +0 -0
  1299. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/feature.h +0 -0
  1300. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/missing/dtoa.c +0 -0
  1301. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/missing.c +0 -0
  1302. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/ext/bigdecimal/static_assert.h +0 -0
  1303. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/jacobian.rb +0 -0
  1304. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/ludcmp.rb +0 -0
  1305. /data/vendor/bundle/ruby/4.0.0/gems/{bigdecimal-4.0.1 → bigdecimal-4.1.0}/lib/bigdecimal/newton.rb +0 -0
  1306. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/BSDL +0 -0
  1307. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/COPYING +0 -0
  1308. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/LEGAL +0 -0
  1309. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/README.md +0 -0
  1310. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/Makefile +0 -0
  1311. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/extconf.rb +0 -0
  1312. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/generator/generator.c +0 -0
  1313. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/json.h +0 -0
  1314. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/parser/Makefile +0 -0
  1315. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/parser/extconf.rb +0 -0
  1316. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/simd/conf.rb +0 -0
  1317. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/simd/simd.h +0 -0
  1318. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/vendor/fpconv.c +0 -0
  1319. /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
  1320. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/ext/json/ext/vendor/ryu.h +0 -0
  1321. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/json.gemspec +0 -0
  1322. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/bigdecimal.rb +0 -0
  1323. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/complex.rb +0 -0
  1324. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/core.rb +0 -0
  1325. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/date.rb +0 -0
  1326. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/date_time.rb +0 -0
  1327. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/exception.rb +0 -0
  1328. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/ostruct.rb +0 -0
  1329. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/range.rb +0 -0
  1330. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/rational.rb +0 -0
  1331. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/regexp.rb +0 -0
  1332. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/set.rb +0 -0
  1333. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/string.rb +0 -0
  1334. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/struct.rb +0 -0
  1335. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/symbol.rb +0 -0
  1336. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/add/time.rb +0 -0
  1337. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/common.rb +0 -0
  1338. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/ext/generator/state.rb +0 -0
  1339. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/ext.rb +0 -0
  1340. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/generic_object.rb +0 -0
  1341. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json/truffle_ruby/generator.rb +0 -0
  1342. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.0 → json-2.19.3}/lib/json.rb +0 -0
  1343. /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
  1344. /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
  1345. /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
  1346. /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
  1347. /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
  1348. /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
  1349. /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
  1350. /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
  1351. /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
  1352. /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
  1353. /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
  1354. /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
  1355. /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
  1356. /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
  1357. /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
  1358. /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
  1359. /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
  1360. /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
  1361. /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
  1362. /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
  1363. /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
  1364. /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
  1365. /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
  1366. /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
  1367. /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
  1368. /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
  1369. /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
  1370. /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
  1371. /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
  1372. /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
  1373. /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
  1374. /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
  1375. /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
  1376. /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
  1377. /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
  1378. /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
  1379. /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
  1380. /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
  1381. /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
  1382. /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
  1383. /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
  1384. /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
  1385. /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
  1386. /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
  1387. /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
  1388. /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
  1389. /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
  1390. /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
  1391. /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
  1392. /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
  1393. /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
  1394. /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
  1395. /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
  1396. /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
  1397. /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
  1398. /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
  1399. /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
  1400. /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
  1401. /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
  1402. /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
  1403. /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
  1404. /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
  1405. /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
  1406. /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
  1407. /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
  1408. /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
  1409. /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
  1410. /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
  1411. /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
  1412. /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
  1413. /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
  1414. /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
  1415. /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
  1416. /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
  1417. /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
  1418. /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
  1419. /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
  1420. /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
  1421. /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
  1422. /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
  1423. /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
  1424. /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
  1425. /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
  1426. /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
  1427. /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
  1428. /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
  1429. /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
  1430. /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
  1431. /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
  1432. /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
  1433. /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
  1434. /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
  1435. /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
  1436. /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
  1437. /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
  1438. /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
  1439. /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
  1440. /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
  1441. /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
  1442. /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
  1443. /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
  1444. /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
  1445. /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
  1446. /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
  1447. /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
  1448. /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
  1449. /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
  1450. /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
  1451. /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
  1452. /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
  1453. /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
  1454. /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
  1455. /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
  1456. /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
  1457. /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
  1458. /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
  1459. /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
  1460. /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
  1461. /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
  1462. /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
  1463. /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
  1464. /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
  1465. /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
  1466. /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
  1467. /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
  1468. /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
  1469. /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
  1470. /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
  1471. /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
  1472. /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
  1473. /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
  1474. /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
  1475. /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
  1476. /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
  1477. /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
  1478. /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
  1479. /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
  1480. /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
  1481. /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
  1482. /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
  1483. /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
  1484. /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
  1485. /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
  1486. /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
  1487. /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
  1488. /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
  1489. /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
  1490. /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
  1491. /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
  1492. /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
  1493. /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
  1494. /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
  1495. /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
  1496. /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
  1497. /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
  1498. /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
  1499. /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
  1500. /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
  1501. /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
  1502. /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
  1503. /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
  1504. /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
  1505. /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
  1506. /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
  1507. /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
  1508. /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
  1509. /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
  1510. /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
  1511. /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
  1512. /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
  1513. /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
  1514. /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
  1515. /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
  1516. /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
  1517. /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
  1518. /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
  1519. /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
  1520. /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
  1521. /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
  1522. /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
  1523. /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
  1524. /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
  1525. /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
  1526. /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
  1527. /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
  1528. /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
  1529. /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
  1530. /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
  1531. /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
  1532. /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
  1533. /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
  1534. /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
  1535. /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
  1536. /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
  1537. /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
  1538. /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
  1539. /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
  1540. /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
  1541. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/LICENSE.txt +0 -0
  1542. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/bin/ruby-parse +0 -0
  1543. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/bin/ruby-rewrite +0 -0
  1544. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/gauntlet_parser.rb +0 -0
  1545. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/all.rb +0 -0
  1546. /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
  1547. /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
  1548. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/base.rb +0 -0
  1549. /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
  1550. /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
  1551. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/color.rb +0 -0
  1552. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/context.rb +0 -0
  1553. /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
  1554. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/deprecation.rb +0 -0
  1555. /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
  1556. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/diagnostic.rb +0 -0
  1557. /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
  1558. /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
  1559. /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
  1560. /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
  1561. /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
  1562. /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
  1563. /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
  1564. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/macruby.rb +0 -0
  1565. /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
  1566. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/messages.rb +0 -0
  1567. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/meta.rb +0 -0
  1568. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/rewriter.rb +0 -0
  1569. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby18.rb +0 -0
  1570. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby19.rb +0 -0
  1571. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby20.rb +0 -0
  1572. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby21.rb +0 -0
  1573. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby22.rb +0 -0
  1574. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby23.rb +0 -0
  1575. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby24.rb +0 -0
  1576. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby25.rb +0 -0
  1577. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby26.rb +0 -0
  1578. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby27.rb +0 -0
  1579. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby30.rb +0 -0
  1580. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby31.rb +0 -0
  1581. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby32.rb +0 -0
  1582. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby33.rb +0 -0
  1583. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/ruby34.rb +0 -0
  1584. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/rubymotion.rb +0 -0
  1585. /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
  1586. /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
  1587. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser/runner.rb +0 -0
  1588. /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
  1589. /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
  1590. /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
  1591. /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
  1592. /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
  1593. /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
  1594. /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
  1595. /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
  1596. /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
  1597. /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
  1598. /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
  1599. /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
  1600. /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
  1601. /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
  1602. /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
  1603. /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
  1604. /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
  1605. /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
  1606. /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
  1607. /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
  1608. /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
  1609. /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
  1610. /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
  1611. /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
  1612. /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
  1613. /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
  1614. /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
  1615. /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
  1616. /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
  1617. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/lib/parser.rb +0 -0
  1618. /data/vendor/bundle/ruby/4.0.0/gems/{parser-3.3.10.2 → parser-3.3.11.1}/parser.gemspec +0 -0
  1619. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/LICENSE.txt +0 -0
  1620. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/README.md +0 -0
  1621. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/logo.png +0 -0
  1622. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/output.css.erb +0 -0
  1623. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/assets/output.html.erb +0 -0
  1624. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/config/internal_affairs.yml +0 -0
  1625. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/config/obsoletion.yml +0 -0
  1626. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/exe/rubocop +0 -0
  1627. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/arguments_env.rb +0 -0
  1628. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/arguments_file.rb +0 -0
  1629. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ast_aliases.rb +0 -0
  1630. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cached_data.rb +0 -0
  1631. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/base.rb +0 -0
  1632. /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
  1633. /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
  1634. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/lsp.rb +0 -0
  1635. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/mcp.rb +0 -0
  1636. /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
  1637. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command/version.rb +0 -0
  1638. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/command.rb +0 -0
  1639. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli/environment.rb +0 -0
  1640. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cli.rb +0 -0
  1641. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/comment_config.rb +0 -0
  1642. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_loader.rb +0 -0
  1643. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_loader_resolver.rb +0 -0
  1644. /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
  1645. /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
  1646. /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
  1647. /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
  1648. /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
  1649. /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
  1650. /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
  1651. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  1652. /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
  1653. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_obsoletion.rb +0 -0
  1654. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/config_regeneration.rb +0 -0
  1655. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  1656. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/badge.rb +0 -0
  1657. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/base.rb +0 -0
  1658. /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
  1659. /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
  1660. /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
  1661. /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
  1662. /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
  1663. /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
  1664. /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
  1665. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/commissioner.rb +0 -0
  1666. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/cop.rb +0 -0
  1667. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/corrector.rb +0 -0
  1668. /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
  1669. /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
  1670. /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
  1671. /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
  1672. /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
  1673. /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
  1674. /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
  1675. /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
  1676. /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
  1677. /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
  1678. /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
  1679. /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
  1680. /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
  1681. /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
  1682. /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
  1683. /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
  1684. /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
  1685. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/documentation.rb +0 -0
  1686. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/exclude_limit.rb +0 -0
  1687. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/force.rb +0 -0
  1688. /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
  1689. /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
  1690. /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
  1691. /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
  1692. /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
  1693. /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
  1694. /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
  1695. /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
  1696. /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
  1697. /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
  1698. /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
  1699. /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
  1700. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/generator.rb +0 -0
  1701. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/ignored_node.rb +0 -0
  1702. /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
  1703. /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
  1704. /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
  1705. /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
  1706. /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
  1707. /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
  1708. /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
  1709. /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
  1710. /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
  1711. /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
  1712. /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
  1713. /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
  1714. /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
  1715. /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
  1716. /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
  1717. /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
  1718. /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
  1719. /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
  1720. /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
  1721. /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
  1722. /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
  1723. /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
  1724. /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
  1725. /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
  1726. /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
  1727. /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
  1728. /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
  1729. /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
  1730. /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
  1731. /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
  1732. /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
  1733. /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
  1734. /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
  1735. /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
  1736. /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
  1737. /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
  1738. /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
  1739. /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
  1740. /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
  1741. /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
  1742. /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
  1743. /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
  1744. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/internal_affairs.rb +0 -0
  1745. /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
  1746. /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
  1747. /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
  1748. /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
  1749. /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
  1750. /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
  1751. /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
  1752. /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
  1753. /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
  1754. /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
  1755. /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
  1756. /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
  1757. /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
  1758. /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
  1759. /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
  1760. /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
  1761. /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
  1762. /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
  1763. /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
  1764. /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
  1765. /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
  1766. /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
  1767. /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
  1768. /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
  1769. /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
  1770. /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
  1771. /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
  1772. /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
  1773. /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
  1774. /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
  1775. /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
  1776. /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
  1777. /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
  1778. /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
  1779. /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
  1780. /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
  1781. /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
  1782. /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
  1783. /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
  1784. /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
  1785. /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
  1786. /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
  1787. /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
  1788. /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
  1789. /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
  1790. /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
  1791. /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
  1792. /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
  1793. /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
  1794. /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
  1795. /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
  1796. /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
  1797. /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
  1798. /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
  1799. /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
  1800. /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
  1801. /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
  1802. /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
  1803. /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
  1804. /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
  1805. /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
  1806. /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
  1807. /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
  1808. /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
  1809. /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
  1810. /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
  1811. /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
  1812. /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
  1813. /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
  1814. /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
  1815. /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
  1816. /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
  1817. /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
  1818. /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
  1819. /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
  1820. /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
  1821. /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
  1822. /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
  1823. /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
  1824. /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
  1825. /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
  1826. /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
  1827. /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
  1828. /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
  1829. /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
  1830. /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
  1831. /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
  1832. /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
  1833. /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
  1834. /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
  1835. /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
  1836. /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
  1837. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  1838. /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
  1839. /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
  1840. /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
  1841. /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
  1842. /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
  1843. /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
  1844. /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
  1845. /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
  1846. /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
  1847. /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
  1848. /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
  1849. /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
  1850. /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
  1851. /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
  1852. /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
  1853. /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
  1854. /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
  1855. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/debugger.rb +0 -0
  1856. /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
  1857. /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
  1858. /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
  1859. /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
  1860. /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
  1861. /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
  1862. /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
  1863. /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
  1864. /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
  1865. /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
  1866. /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
  1867. /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
  1868. /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
  1869. /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
  1870. /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
  1871. /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
  1872. /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
  1873. /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
  1874. /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
  1875. /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
  1876. /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
  1877. /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
  1878. /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
  1879. /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
  1880. /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
  1881. /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
  1882. /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
  1883. /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
  1884. /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
  1885. /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
  1886. /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
  1887. /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
  1888. /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
  1889. /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
  1890. /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
  1891. /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
  1892. /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
  1893. /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
  1894. /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
  1895. /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
  1896. /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
  1897. /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
  1898. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/loop.rb +0 -0
  1899. /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
  1900. /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
  1901. /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
  1902. /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
  1903. /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
  1904. /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
  1905. /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
  1906. /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
  1907. /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
  1908. /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
  1909. /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
  1910. /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
  1911. /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
  1912. /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
  1913. /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
  1914. /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
  1915. /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
  1916. /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
  1917. /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
  1918. /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
  1919. /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
  1920. /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
  1921. /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
  1922. /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
  1923. /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
  1924. /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
  1925. /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
  1926. /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
  1927. /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
  1928. /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
  1929. /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
  1930. /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
  1931. /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
  1932. /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
  1933. /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
  1934. /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
  1935. /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
  1936. /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
  1937. /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
  1938. /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
  1939. /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
  1940. /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
  1941. /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
  1942. /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
  1943. /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
  1944. /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
  1945. /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
  1946. /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
  1947. /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
  1948. /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
  1949. /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
  1950. /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
  1951. /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
  1952. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/syntax.rb +0 -0
  1953. /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
  1954. /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
  1955. /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
  1956. /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
  1957. /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
  1958. /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
  1959. /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
  1960. /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
  1961. /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
  1962. /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
  1963. /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
  1964. /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
  1965. /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
  1966. /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
  1967. /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
  1968. /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
  1969. /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
  1970. /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
  1971. /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
  1972. /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
  1973. /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
  1974. /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
  1975. /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
  1976. /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
  1977. /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
  1978. /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
  1979. /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
  1980. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/lint/void.rb +0 -0
  1981. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/message_annotator.rb +0 -0
  1982. /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
  1983. /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
  1984. /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
  1985. /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
  1986. /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
  1987. /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
  1988. /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
  1989. /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
  1990. /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
  1991. /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
  1992. /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
  1993. /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
  1994. /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
  1995. /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
  1996. /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
  1997. /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
  1998. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  1999. /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
  2000. /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
  2001. /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
  2002. /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
  2003. /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
  2004. /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
  2005. /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
  2006. /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
  2007. /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
  2008. /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
  2009. /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
  2010. /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
  2011. /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
  2012. /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
  2013. /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
  2014. /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
  2015. /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
  2016. /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
  2017. /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
  2018. /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
  2019. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  2020. /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
  2021. /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
  2022. /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
  2023. /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
  2024. /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
  2025. /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
  2026. /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
  2027. /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
  2028. /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
  2029. /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
  2030. /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
  2031. /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
  2032. /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
  2033. /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
  2034. /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
  2035. /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
  2036. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  2037. /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
  2038. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  2039. /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
  2040. /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
  2041. /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
  2042. /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
  2043. /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
  2044. /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
  2045. /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
  2046. /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
  2047. /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
  2048. /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
  2049. /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
  2050. /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
  2051. /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
  2052. /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
  2053. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  2054. /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
  2055. /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
  2056. /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
  2057. /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
  2058. /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
  2059. /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
  2060. /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
  2061. /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
  2062. /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
  2063. /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
  2064. /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
  2065. /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
  2066. /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
  2067. /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
  2068. /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
  2069. /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
  2070. /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
  2071. /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
  2072. /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
  2073. /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
  2074. /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
  2075. /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
  2076. /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
  2077. /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
  2078. /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
  2079. /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
  2080. /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
  2081. /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
  2082. /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
  2083. /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
  2084. /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
  2085. /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
  2086. /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
  2087. /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
  2088. /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
  2089. /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
  2090. /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
  2091. /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
  2092. /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
  2093. /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
  2094. /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
  2095. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/offense.rb +0 -0
  2096. /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
  2097. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/eval.rb +0 -0
  2098. /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
  2099. /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
  2100. /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
  2101. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/security/open.rb +0 -0
  2102. /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
  2103. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/severity.rb +0 -0
  2104. /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
  2105. /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
  2106. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/alias.rb +0 -0
  2107. /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
  2108. /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
  2109. /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
  2110. /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
  2111. /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
  2112. /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
  2113. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/attr.rb +0 -0
  2114. /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
  2115. /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
  2116. /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
  2117. /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
  2118. /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
  2119. /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
  2120. /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
  2121. /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
  2122. /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
  2123. /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
  2124. /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
  2125. /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
  2126. /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
  2127. /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
  2128. /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
  2129. /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
  2130. /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
  2131. /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
  2132. /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
  2133. /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
  2134. /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
  2135. /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
  2136. /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
  2137. /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
  2138. /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
  2139. /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
  2140. /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
  2141. /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
  2142. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/copyright.rb +0 -0
  2143. /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
  2144. /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
  2145. /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
  2146. /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
  2147. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/dir.rb +0 -0
  2148. /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
  2149. /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
  2150. /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
  2151. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/documentation.rb +0 -0
  2152. /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
  2153. /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
  2154. /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
  2155. /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
  2156. /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
  2157. /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
  2158. /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
  2159. /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
  2160. /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
  2161. /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
  2162. /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
  2163. /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
  2164. /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
  2165. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/encoding.rb +0 -0
  2166. /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
  2167. /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
  2168. /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
  2169. /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
  2170. /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
  2171. /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
  2172. /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
  2173. /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
  2174. /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
  2175. /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
  2176. /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
  2177. /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
  2178. /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
  2179. /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
  2180. /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
  2181. /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
  2182. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/for.rb +0 -0
  2183. /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
  2184. /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
  2185. /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
  2186. /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
  2187. /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
  2188. /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
  2189. /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
  2190. /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
  2191. /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
  2192. /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
  2193. /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
  2194. /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
  2195. /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
  2196. /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
  2197. /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
  2198. /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
  2199. /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
  2200. /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
  2201. /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
  2202. /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
  2203. /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
  2204. /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
  2205. /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
  2206. /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
  2207. /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
  2208. /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
  2209. /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
  2210. /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
  2211. /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
  2212. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/lambda.rb +0 -0
  2213. /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
  2214. /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
  2215. /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
  2216. /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
  2217. /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
  2218. /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
  2219. /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
  2220. /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
  2221. /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
  2222. /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
  2223. /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
  2224. /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
  2225. /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
  2226. /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
  2227. /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
  2228. /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
  2229. /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
  2230. /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
  2231. /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
  2232. /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
  2233. /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
  2234. /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
  2235. /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
  2236. /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
  2237. /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
  2238. /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
  2239. /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
  2240. /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
  2241. /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
  2242. /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
  2243. /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
  2244. /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
  2245. /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
  2246. /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
  2247. /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
  2248. /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
  2249. /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
  2250. /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
  2251. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/next.rb +0 -0
  2252. /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
  2253. /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
  2254. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/not.rb +0 -0
  2255. /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
  2256. /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
  2257. /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
  2258. /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
  2259. /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
  2260. /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
  2261. /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
  2262. /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
  2263. /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
  2264. /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
  2265. /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
  2266. /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
  2267. /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
  2268. /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
  2269. /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
  2270. /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
  2271. /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
  2272. /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
  2273. /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
  2274. /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
  2275. /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
  2276. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/proc.rb +0 -0
  2277. /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
  2278. /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
  2279. /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
  2280. /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
  2281. /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
  2282. /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
  2283. /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
  2284. /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
  2285. /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
  2286. /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
  2287. /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
  2288. /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
  2289. /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
  2290. /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
  2291. /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
  2292. /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
  2293. /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
  2294. /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
  2295. /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
  2296. /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
  2297. /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
  2298. /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
  2299. /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
  2300. /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
  2301. /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
  2302. /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
  2303. /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
  2304. /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
  2305. /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
  2306. /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
  2307. /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
  2308. /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
  2309. /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
  2310. /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
  2311. /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
  2312. /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
  2313. /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
  2314. /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
  2315. /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
  2316. /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
  2317. /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
  2318. /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
  2319. /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
  2320. /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
  2321. /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
  2322. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/sample.rb +0 -0
  2323. /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
  2324. /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
  2325. /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
  2326. /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
  2327. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/semicolon.rb +0 -0
  2328. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/send.rb +0 -0
  2329. /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
  2330. /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
  2331. /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
  2332. /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
  2333. /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
  2334. /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
  2335. /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
  2336. /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
  2337. /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
  2338. /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
  2339. /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
  2340. /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
  2341. /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
  2342. /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
  2343. /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
  2344. /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
  2345. /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
  2346. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/style/strip.rb +0 -0
  2347. /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
  2348. /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
  2349. /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
  2350. /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
  2351. /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
  2352. /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
  2353. /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
  2354. /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
  2355. /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
  2356. /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
  2357. /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
  2358. /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
  2359. /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
  2360. /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
  2361. /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
  2362. /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
  2363. /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
  2364. /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
  2365. /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
  2366. /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
  2367. /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
  2368. /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
  2369. /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
  2370. /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
  2371. /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
  2372. /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
  2373. /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
  2374. /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
  2375. /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
  2376. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/team.rb +0 -0
  2377. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/util.rb +0 -0
  2378. /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
  2379. /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
  2380. /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
  2381. /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
  2382. /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
  2383. /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
  2384. /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
  2385. /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
  2386. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cop/variable_force.rb +0 -0
  2387. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/cops_documentation_generator.rb +0 -0
  2388. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/core_ext/string.rb +0 -0
  2389. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/directive_comment.rb +0 -0
  2390. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/error.rb +0 -0
  2391. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/comment.rb +0 -0
  2392. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/processed_source.rb +0 -0
  2393. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/range.rb +0 -0
  2394. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/regexp_node.rb +0 -0
  2395. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
  2396. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/feature_loader.rb +0 -0
  2397. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/file_finder.rb +0 -0
  2398. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/file_patterns.rb +0 -0
  2399. /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
  2400. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
  2401. /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
  2402. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/colorizable.rb +0 -0
  2403. /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
  2404. /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
  2405. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
  2406. /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
  2407. /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
  2408. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/html_formatter.rb +0 -0
  2409. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/json_formatter.rb +0 -0
  2410. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  2411. /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
  2412. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  2413. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  2414. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  2415. /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
  2416. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
  2417. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter/text_util.rb +0 -0
  2418. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/formatter.rb +0 -0
  2419. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lockfile.rb +0 -0
  2420. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/diagnostic.rb +0 -0
  2421. /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
  2422. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/logger.rb +0 -0
  2423. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/runtime.rb +0 -0
  2424. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/server.rb +0 -0
  2425. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/severity.rb +0 -0
  2426. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp/stdin_runner.rb +0 -0
  2427. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/lsp.rb +0 -0
  2428. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/magic_comment.rb +0 -0
  2429. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/name_similarity.rb +0 -0
  2430. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/options.rb +0 -0
  2431. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/pending_cops_reporter.rb +0 -0
  2432. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/platform.rb +0 -0
  2433. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  2434. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin/load_error.rb +0 -0
  2435. /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
  2436. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/plugin.rb +0 -0
  2437. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rake_task.rb +0 -0
  2438. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/remote_config.rb +0 -0
  2439. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
  2440. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
  2441. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  2442. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/rspec/support.rb +0 -0
  2443. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/cache.rb +0 -0
  2444. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/cli.rb +0 -0
  2445. /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
  2446. /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
  2447. /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
  2448. /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
  2449. /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
  2450. /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
  2451. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/client_command.rb +0 -0
  2452. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/errors.rb +0 -0
  2453. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/helper.rb +0 -0
  2454. /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
  2455. /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
  2456. /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
  2457. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/server_command.rb +0 -0
  2458. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server/socket_reader.rb +0 -0
  2459. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/server.rb +0 -0
  2460. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/string_interpreter.rb +0 -0
  2461. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/target_ruby.rb +0 -0
  2462. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/util.rb +0 -0
  2463. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/warning.rb +0 -0
  2464. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  2465. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/rubocop.rb +0 -0
  2466. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.85.1 → rubocop-1.86.0}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  2467. /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
  2468. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/LICENSE.txt +0 -0
  2469. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/README.md +0 -0
  2470. /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
  2471. /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
  2472. /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
  2473. /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
  2474. /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
  2475. /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
  2476. /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
  2477. /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
  2478. /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
  2479. /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
  2480. /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
  2481. /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
  2482. /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
  2483. /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
  2484. /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
  2485. /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
  2486. /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
  2487. /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
  2488. /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
  2489. /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
  2490. /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
  2491. /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
  2492. /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
  2493. /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
  2494. /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
  2495. /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
  2496. /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
  2497. /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
  2498. /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
  2499. /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
  2500. /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
  2501. /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
  2502. /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
  2503. /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
  2504. /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
  2505. /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
  2506. /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
  2507. /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
  2508. /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
  2509. /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
  2510. /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
  2511. /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
  2512. /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
  2513. /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
  2514. /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
  2515. /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
  2516. /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
  2517. /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
  2518. /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
  2519. /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
  2520. /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
  2521. /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
  2522. /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
  2523. /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
  2524. /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
  2525. /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
  2526. /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
  2527. /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
  2528. /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
  2529. /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
  2530. /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
  2531. /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
  2532. /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
  2533. /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
  2534. /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
  2535. /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
  2536. /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
  2537. /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
  2538. /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
  2539. /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
  2540. /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
  2541. /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
  2542. /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
  2543. /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
  2544. /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
  2545. /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
  2546. /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
  2547. /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
  2548. /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
  2549. /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
  2550. /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
  2551. /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
  2552. /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
  2553. /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
  2554. /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
  2555. /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
  2556. /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
  2557. /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
  2558. /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
  2559. /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
  2560. /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
  2561. /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
  2562. /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
  2563. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop/ast.rb +0 -0
  2564. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-ast-1.49.0 → rubocop-ast-1.49.1}/lib/rubocop-ast.rb +0 -0
  2565. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/LICENSE +0 -0
  2566. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/api.rb +0 -0
  2567. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/assertion_failure.rb +0 -0
  2568. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/callback_registry.rb +0 -0
  2569. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/config.rb +0 -0
  2570. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/cucumber.rb +0 -0
  2571. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/deprecation.rb +0 -0
  2572. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/errors.rb +0 -0
  2573. /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
  2574. /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
  2575. /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
  2576. /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
  2577. /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
  2578. /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
  2579. /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
  2580. /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
  2581. /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
  2582. /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
  2583. /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
  2584. /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
  2585. /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
  2586. /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
  2587. /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
  2588. /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
  2589. /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
  2590. /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
  2591. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/minitest.rb +0 -0
  2592. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rack_response.rb +0 -0
  2593. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_body_diff.rb +0 -0
  2594. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_execution_verifier.rb +0 -0
  2595. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_pattern.rb +0 -0
  2596. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_registry.rb +0 -0
  2597. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_signature.rb +0 -0
  2598. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_signature_snippet.rb +0 -0
  2599. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/request_stub.rb +0 -0
  2600. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/response.rb +0 -0
  2601. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/responses_sequence.rb +0 -0
  2602. /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
  2603. /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
  2604. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec/matchers.rb +0 -0
  2605. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/rspec.rb +0 -0
  2606. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/stub_registry.rb +0 -0
  2607. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/stub_request_snippet.rb +0 -0
  2608. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/test_unit.rb +0 -0
  2609. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/hash_counter.rb +0 -0
  2610. /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
  2611. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/hash_validator.rb +0 -0
  2612. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/headers.rb +0 -0
  2613. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/parsers/json.rb +0 -0
  2614. /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
  2615. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/parsers/xml.rb +0 -0
  2616. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/query_mapper.rb +0 -0
  2617. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/uri.rb +0 -0
  2618. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/values_stringifier.rb +0 -0
  2619. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/util/version_checker.rb +0 -0
  2620. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock/webmock.rb +0 -0
  2621. /data/vendor/bundle/ruby/4.0.0/gems/{webmock-3.26.1 → webmock-3.26.2}/lib/webmock.rb +0 -0
@@ -1,2134 +0,0 @@
1
- # Changelog
2
-
3
- # 3.26.1
4
-
5
- Fix compatibility with recent async-http versions
6
-
7
- Thanks to [Mikhail Doronin](https://github.com/misdoro)
8
-
9
- # 3.26.0
10
-
11
- * Support Addressable::URI in request patterns
12
-
13
- Thanks to [Alexey Zapparov](https://github.com/ixti)
14
-
15
- # 3.25.2
16
-
17
- * Return support for `em_http_request`
18
-
19
- Thanks to [Oleg](https://github.com/Koilanetroc)
20
-
21
- # 3.25.1
22
-
23
- * Fix FrozenError in Typhoeus streaming response body
24
-
25
- Thanks to [Patrick Jaberg](https://github.com/patrickjaberg)
26
-
27
- # 3.25.0
28
-
29
- * Resolve net-http adapter deprecation Ruby 3.4
30
-
31
- Thanks to [Earlopain](https://github.com/Earlopain)
32
-
33
- # 3.24.0
34
-
35
- * Ignore parsing errors when parsing invalid JSON or XML body to match against body pattern #1066
36
-
37
- Thanks to [Christian Schmidt](https://github.com/c960657)
38
-
39
- * Added support for mocked HTTP::Connection#finished_request? method #1065
40
-
41
- Thanks to [Christian Schmidt](https://github.com/c960657)
42
-
43
- * Detect if Patron is loaded by checking if Patron::Session constant is defined #1068
44
-
45
- Thanks to [Rodrigo Argumedo](https://github.com/rodrigoargumedo)
46
-
47
- * Raising an ArgumentError when uri is passed as a Pathname object to stub_request or request expectation declaration.
48
-
49
- * Dropped support for em-http-request on Ruby 3.4. The current version of em-http-request (1.1.7) is incompatible with Ruby 3.4 due to an unresolved issue (https://github.com/igrigorik/em-http-request/issues/365). Support for em-http-request will be re-enabled once the compatibility issue is resolved.
50
-
51
- Thanks to [Christian Schmidt](https://github.com/c960657)
52
-
53
- # 3.23.1
54
-
55
- * Added support for async-http version >= 0.65.0 [PR](https://github.com/bblimke/webmock/pull/1056)
56
-
57
- Thanks to [Jacob Frautschi](https://github.com/jakeonfire)
58
-
59
- # 3.23.0
60
-
61
- * Fixed HTTP.rb adapter to support streaming real responses when WebMock is enabled.
62
-
63
- Thanks to [Viacheslav Nepomniashchikh](https://github.com/aka-nez) for reporting and investigating this [issue](https://github.com/bblimke/webmock/issues/1017).
64
-
65
- # 3.22.0
66
-
67
- * Addressed an issue in the HTTPClient adapter where memoized stubbed responses and memoized request_signatures were incorrectly persisted between subsequent requests ([#1019](https://github.com/bblimke/webmock/issues/1019)). The implementation of a more robust thread-safety solution by [Tom Beauvais](https://github.com/tbeauvais) in [PR #300](https://github.com/bblimke/webmock/pull/300) not only resolved the memoization problem but also enhanced the overall thread safety of the adapter. This update ensures that stubbed responses and request signatures are correctly isolated to individual requests, improving both consistency and thread safety.
68
-
69
- # 3.21.2
70
-
71
- * Corrected type checking in `WebMock::Response#assert_valid_body!` to accurately recognize `Hash` objects. Additionally, improved the clarity of the error message for unsupported body types, guiding users towards proper usage.
72
-
73
- Thanks to [Jake Robb](https://github.com/jakerobb) for reporting.
74
-
75
- # 3.21.1
76
-
77
- * The stubbed Net::HTTPResponse#uri now returns request.uri, aligning it with the behavior of an actual Net::HTTPResponse.
78
-
79
- Thanks to [Abe Voelker](https://github.com/abevoelker) for reporting and to [Victor Maslov](https://github.com/Nakilon) and [Gio Lodi](https://github.com/mokagio) for the suggested solution.
80
-
81
- # 3.21.0
82
-
83
- * Don't use deprecated Rack::VERSION for Rack >= 3
84
-
85
- Thanks to [Étienne Barrié](https://github.com/etiennebarrie)
86
-
87
- * Updated HTTPClient adapter, to build request signature using the URI after filters have been applied.
88
-
89
- Thanks to [Matt Brown](https://github.com/mattbnz)
90
-
91
- # 3.20.0
92
-
93
- * Optimised EmHttpRequestAdapter performance.
94
-
95
- Thanks to [Ricardo Trindade](https://github.com/RicardoTrindade)
96
-
97
- * Removed runtime dependency on base64.
98
-
99
- Thanks to [Earlopain](https://github.com/Earlopain)
100
-
101
- * Typhoeus::Response objects constructed from stubbed responses now have all timing attributes set to 0.0.
102
-
103
- Thanks to [James Brown](https://github.com/Roguelazer)
104
-
105
- * Optimised WebMock::Util::Headers by removing redundant freeze invocations.
106
-
107
- Thanks to [Kazuhiro NISHIYAMA](https://github.com/znz)
108
-
109
- * The default stubbed response body, which is an empty String, is unfrozen.
110
-
111
- * When building signatures of requests made by http.rb, the request body encoding is now preserved.
112
-
113
- # 3.19.1
114
-
115
- * When passing a Proc or lambda as response body to `to_return_json`, the body is evaluated at the time of request and not at the time of `to_return_json` method invocation.
116
-
117
- Thanks to [Jason Karns](https://github.com/jasonkarns) for reporting.
118
-
119
- # 3.19.0
120
-
121
- * Do not alter real (non-stubbed) request headers when handling em-http-request requests.
122
-
123
- Thanks to [Yoann Lecuyer](https://github.com/ylecuyer)
124
-
125
- * Fix matching stubs with HashExcludingMatcher
126
-
127
- Thanks to [Lucas Arnaud](https://github.com/lucasarnaud)
128
-
129
- * Remove development and test files from the gem package
130
-
131
- Thanks to [Orien Madgwick](https://github.com/orien)
132
-
133
- * Fix supported http client gem version checks.
134
-
135
- Thanks to [Marc Rohloff](https://github.com/marcrohloff) and [Roman Stražanec](https://github.com/romanstrazanec)
136
-
137
- * Non-string body passed to #to_return_json is now converted to JSON string.
138
-
139
- Thanks to [inkstak](https://github.com/inkstak)
140
-
141
- * `[::1]` is recognised as localhost e.g when passing `allow_localhost` option to `disable_net_connect!`
142
-
143
- Thanks to [Yuki Inoue](https://github.com/Yuki-Inoue)
144
-
145
- * Optimized `normalize_headers` for performance
146
-
147
- Thanks to [Brandon Weaver](https://github.com/baweaver)
148
-
149
- * Added Frozen string literal to files to optimise memory usage
150
-
151
- Thanks to [Josh Nichols](https://github.com/technicalpickles)
152
-
153
- # 3.18.1
154
-
155
- * Reverted simplified connection handing in Net::HTTP adapter due to https://github.com/bblimke/webmock/issues/999
156
-
157
- # 3.18.0
158
-
159
- * Net::BufferedIO is not replaced anymore.
160
-
161
- Thanks to [Ray Zane](https://github.com/rzane)
162
-
163
- * Simplified connection handing in Net::HTTP adapter.
164
-
165
- Thanks to [Ray Zane](https://github.com/rzane)
166
-
167
- # 3.17.1
168
-
169
- * Fixed Syntax Error
170
-
171
- Thanks to [Mark Spangler](https://github.com/mspangler)
172
-
173
- # 3.17.0
174
-
175
- * Minimum required Ruby version is 2.3
176
-
177
- Thanks to [Go Sueyoshi](https://github.com/sue445)
178
-
179
- * When using Net::HTTP, stubbed socket StubSocket#close and StubSocket#closed? behave more like the real sockets.
180
-
181
- Thanks to [Ray Zane](https://github.com/rzane)
182
-
183
- * Added `peeraddr`, `ssl_version` and `cipher` methods to stubbed sockets used by Net::HTTP.
184
-
185
- Thanks to [Ray Zane](https://github.com/rzane)
186
-
187
- * Added support for matching top-level array in JSON request body.
188
-
189
- E.g.
190
-
191
- ````
192
- stub_request(:post, 'www.example.com').with(body: [{a: 1}])
193
- ````
194
-
195
- Thanks to [Cedric Sohrauer](https://github.com/cedrics)
196
-
197
- # 3.16.2
198
-
199
- * Minimum required Ruby version is 2.0.
200
-
201
- # 3.16.0 (yanked)
202
-
203
- * Fix leaky file descriptors and reuse socket for persistent connections.
204
-
205
- Thanks to [Ray Zane](https://github.com/rzane)
206
-
207
- * Allow specifying for what URIs or hosts, Net::HTTP should connect on start.
208
-
209
- Thanks to [Ray Zane](https://github.com/rzane)
210
-
211
- # 3.15.2
212
-
213
- * Minimum required Ruby version is 2.0.
214
-
215
- # 3.15.0 (yanked)
216
-
217
- * fixed async-http adapter on Windows
218
-
219
- Thanks to [Pavel Rosický](https://github.com/ahorek)
220
-
221
- * Support for http.rb >= 5.0.2
222
-
223
- Thanks to [ojab](https://github.com/ojab)
224
-
225
- * Curb adapter supports headers with `:` character in the header value
226
-
227
- Thanks to [Giorgio Gambino](https://github.com/mrbuzz)
228
-
229
- * Support for matching body of JSON or application/x-www-form-urlencoded requests with content type header including charset.
230
-
231
- Thanks to [Timmitry](https://github.com/Timmitry)
232
-
233
- * Prevent double-wrapping http.rb features on non-stubbed requests
234
-
235
- Thanks to [Michael Fairley](https://github.com/michaelfairley)
236
-
237
- # 3.14.0
238
-
239
- * Bump Addressable from 2.3.6 to 2.8.0
240
-
241
- Thanks to [Eduardo Hernandez](https://github.com/EduardoGHdez)
242
-
243
- # 3.13.0
244
-
245
- * Support http.rb 5.x
246
-
247
- Thanks to [Will Storey](https://github.com/horgh)
248
-
249
- # 3.12.2
250
-
251
- * Fixed em-http-request adapter to avoid calling middleware twice.
252
-
253
- Thanks to [Alex Vondrak](https://github.com/ajvondrak)
254
-
255
- # 3.12.1
256
-
257
- * Fixed handling of URIs with IPv6 addresses with square brackets when in Net::HTTP adapter.
258
-
259
- Thanks to [Johanna Hartmann](https://github.com/JohannaHartmann)
260
-
261
- # 3.12.0
262
-
263
- * Added support for handling custom JSON and XML content types e.g. 'application/vnd.api+json'
264
-
265
- # 3.11.3
266
-
267
- * Fixed async-http adapter to only considered requests as real if they are real.
268
-
269
- Thanks to [Tony Schneider](https://github.com/tonywok) and [Samuel Williams](https://github.com/ioquatix)
270
-
271
- # 3.11.2
272
-
273
- * Fix for Manticore streaming mode
274
-
275
- Thanks to [Oleksiy Kovyrin](https://github.com/kovyrin)
276
-
277
- # 3.11.1
278
-
279
- * Compatibility with async-http 0.54+
280
-
281
- Thanks to [Jun Jiang](https://github.com/jasl)
282
-
283
- # 3.11.0
284
-
285
- * Added support for `features` in http.rb adapter.
286
-
287
- Thanks to [Carl (ce07c3)](https://github.com/ce07c3)
288
-
289
- # 3.10.0
290
-
291
- * Added option to global stubs to have lower priority than local stubs.
292
-
293
- WebMock.globally_stub_request(:after_local_stubs) do
294
- { body: "global stub body" }
295
- end
296
-
297
- stub_request(:get, "www.example.com").to_return(body: 'non-global stub body')
298
-
299
- expect(http_request(:get, "http://www.example.com/").body).to eq("non-global stub body")
300
-
301
- Thanks to [Marek Kasztelnik](https://github.com/mkasztelnik)
302
-
303
- # 3.9.5
304
-
305
- * Prevent overwriting `teardown` method in Test::Unit
306
-
307
- Thanks to [Jesse Bowes](https://github.com/jessebs)
308
-
309
- # 3.9.4
310
-
311
- * More intuitive error message when stubbed response body was provided as Hash
312
-
313
- Thanks to [Ben Koshy](https://github.com/BKSpurgeon)
314
-
315
- # 3.9.3
316
-
317
- * Make httpclient_adapter thread-safe
318
-
319
- Thanks to [Adam Harwood](https://github.com/adam-harwood)
320
-
321
- # 3.9.2
322
-
323
- * Made global stubs thread-safe
324
-
325
- Thanks to [Adam Harwood](https://github.com/adam-harwood)
326
-
327
- # 3.9.1
328
-
329
- * Fixed support for passing `URI` objects as second argument of `stub_request`
330
-
331
- Thanks to [Ryan Kerr](https://github.com/leboshi)
332
-
333
- ## 3.9.0
334
-
335
- * Allow using a "callable" (like a proc) as URI pattern
336
-
337
- stub_request(:any, ->(uri) { true })
338
-
339
- Thanks to [John Hawthorn](https://github.com/jhawthorn)
340
-
341
- * Added stubbed IO on stubbed socket in Net::HTTP adapter.
342
-
343
- Thanks to [Thilo Rusche](https://github.com/trusche)
344
-
345
- * When 'webmock/rspec' is required, reset WebMock after all after(:each/example) hooks
346
-
347
- Thanks to [Andrew Stuntz](https://github.com/drews256)
348
-
349
- * Fixed `net_connect_allowed?` when invoked with no arguments, when there were any allowed URIs passed to `disable_net_connect?`.
350
-
351
- Thanks to [Lucas Uyezu](https://github.com/lucasuyezu)
352
-
353
- * Fixed async-http adapter which caused Async::HTTP::Client or Async::HTTP::Internet to hang and never return a response.
354
-
355
- Thanks to [Bruno Sutic](https://github.com/bruno-) and [Samuel Williams](https://github.com/ioquatix)
356
-
357
- * Fixed warning when using async-http adapter
358
-
359
- Thanks to [Bruno Sutic](https://github.com/bruno-)
360
-
361
- * Dropped support for Ruby 2.3 - EOL date: 2019-03-31
362
-
363
- * Dropped support for Ruby 2.4 - EOL date: 2020-03-31
364
-
365
- * Handling matching of Addressable::Template patterns that have an ip address without port and patterns that have ip address and don’t have schema and path.
366
-
367
- Thanks to [Rafael França](https://github.com/rafaelfranca) and [guppy0356](https://github.com/guppy0356)
368
-
369
- ## 3.8.3
370
-
371
- * Fixed problem introduced in version 3.4.2, which caused matching against Addressable::Template representing host part of the URI to raise an error.
372
-
373
- Thanks to [Vesa Laakso](https://github.com/valscion)
374
-
375
- ## 3.8.2
376
-
377
- * Support correct encoding parameter for HTTP.rb 2.x and earlier
378
-
379
- Thanks to [Alex Coomans](https://github.com/drcapulet)
380
-
381
- ## 3.8.1
382
-
383
- * Added support for mocking non-ASCII bodies when making requests with HTTP.rb
384
-
385
- Thanks to [Patrik Ragnarsson](https://github.com/dentarg)
386
-
387
- ## 3.8.0
388
-
389
- * Fixed options handling when initialising Async::HTTP::Client
390
-
391
- Thanks to [Samuel Williams](https://github.com/ioquatix)
392
-
393
- * Ruby 2.7 support.
394
-
395
- Thanks to [Ryan Davis](https://github.com/zenspider) and [Brandur](https://github.com/brandur)
396
-
397
- ## 3.7.6
398
-
399
- * Suppressed keyword argument warnings in Ruby 2.7 in async-http adapter.
400
-
401
- Thanks to [Koichi ITO](https://github.com/koic)
402
-
403
- ## 3.7.5
404
-
405
- * Suppress Excon warning generated by extra key
406
-
407
- Thanks to [Marco Costa](https://github.com/marcotc)
408
-
409
- ## 3.7.4
410
-
411
- * Resetting memoized response fields in Curb adapter.
412
-
413
- Thanks to [Andrei Sidorov](https://github.com/heretge)
414
-
415
- ## 3.7.3
416
-
417
- * Fix for http.rb. Allow passing an output buffer to HTTP::Response::Body#readpartial
418
-
419
- Thanks to [George Claghorn](https://github.com/georgeclaghorn)
420
-
421
- * Fixed Manticore adapter to invoke Manticore failure handler on stubbed timeout
422
-
423
- Thanks to [Alex Junger](https://github.com/alexJunger)
424
-
425
- * Added project metadata to the gemspec
426
-
427
- Thanks to [Orien Madgwick](https://github.com/orien)
428
-
429
- ## 3.7.2
430
-
431
- * Fixed handling of non UTF-8 encoded urls
432
-
433
- Thanks to [Rafael França](https://github.com/rafaelfranca)
434
-
435
- * Fixed "shadowing outer local variable" warning
436
-
437
- Thanks to [y-yagi](https://github.com/y-yagi)
438
-
439
- ## 3.7.1
440
-
441
- * Fixed Async::HTTP::Client adapter code to not cause Ruby warning
442
-
443
- Thanks to [y-yagi](https://github.com/y-yagi)
444
-
445
- ## 3.7.0
446
-
447
- * Support for Async::HTTP::Client
448
-
449
- Thanks to [Andriy Yanko](https://github.com/ayanko)
450
-
451
- ## 3.6.2
452
-
453
- * Fixed Patron adapter to handle HTTP/2 status line.
454
-
455
- Thanks to [Fábio D. Batista](https://github.com/fabiob)
456
-
457
- ## 3.6.1
458
-
459
- * Fixed issue with matching Addressable::Template without a period in the domain
460
-
461
- Thanks to [Eike Send](https://github.com/eikes)
462
-
463
- * Support for `write_timeout` in Net::HTTP
464
-
465
- Thanks to [Claudio Poli](https://github.com/masterkain)
466
-
467
- * Fixed issue with handling urls with ":80" or ":443" in the path.
468
-
469
- Thanks to [Csaba Apagyi](https://github.com/thisismydesign) for reporting and to [Frederick Cheung](https://github.com/fcheung) for fixing the issue.
470
-
471
- ## 3.6.0
472
-
473
- * Compatibility with the latest version of hashdiff gem, with constant changed from HashDiff to Hashdiff
474
-
475
- Thanks to [Jeff Felchner](https://github.com/jfelchner)
476
-
477
- * Added a hint to the error message raised when `with` method is called without args or a block.
478
-
479
- Thanks to [Adam Sokolnicki](https://github.com/asok)
480
-
481
- * Resetting configured HTTP method in Curb adapter after each request
482
-
483
- Thanks to [tiendo1011](https://github.com/tiendo1011)
484
-
485
- * Added `WebMock.enable_net_connect!` as an alias for `WebMock.allow_net_connect!`
486
- and `WebMock.disallow_net_connect!` as an alias for `WebMock.disable_net_connect!`
487
-
488
- Thanks to [SoonKhen OwYong](https://github.com/owyongsk)
489
-
490
- * Fixed handling of empty arrays as query params when using Faraday
491
-
492
- Thanks to [Ryan Moret](https://github.com/rcmoret)
493
-
494
- ## 3.5.1
495
-
496
- * Disabling TracePoint defined in Net::BufferedIO in case of exception being raised.
497
-
498
- Thanks to [Koichi Sasada](https://github.com/ko1)
499
-
500
-
501
- ## 3.5.0
502
-
503
- * Ruby 2.6.0 support
504
-
505
- Thanks to [Arkadiy Tetelman](https://github.com/arkadiyt)
506
-
507
- * Added `WebMock.reset_executed_requests!` method.
508
-
509
- stub_get = stub_request(:get, "www.example.com")
510
- Net::HTTP.get('www.example.com', '/')
511
- WebMock::RequestRegistry.instance.times_executed(stub_get.request_pattern) # => 1
512
- reset_executed_requests!
513
- WebMock::RequestRegistry.instance.times_executed(stub_get.request_pattern) # => 0
514
-
515
- Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
516
-
517
- * Performance improvements
518
-
519
- Thanks to [Pavel Rosický](https://github.com/ahorek)
520
-
521
- ## 3.4.2
522
-
523
- * Fixed `rbuf_fill` in Net::HTTP adapter to be thread-safe
524
-
525
- Thanks to [Arkadiy Tetelman](https://github.com/arkadiyt)
526
-
527
- * Fix invalid scheme error with Addressable::Template
528
-
529
- Thanks to [Kazato Sugimoto](https://github.com/uiureo)
530
-
531
- ## 3.4.1
532
-
533
- * When comparing url encoded body to a body from request stub, which was declared as hash, only String, Numeric and boolean hash values are stringified before the comparison.
534
-
535
- Thanks to [Lukas Pokorny](https://github.com/luk4s)
536
-
537
- ## 3.4.0
538
-
539
- * Ruby 2.6 support. Prevent `Net/ReadTimeout` error in Ruby 2.6
540
-
541
- Thanks to [Koichi ITO](https://github.com/koic)
542
-
543
- * Handling query params, which represent nested hashes with keys starting with non word characters.
544
-
545
- Thanks to [rapides](https://github.com/rapides) for reporting the issue.
546
-
547
- * Patron adapter handles PATCH requests with body.
548
-
549
- Thanks to [Mattia](https://github.com/iMacTia) for reporting the issue.
550
-
551
- * Allowing requests with url encoded body to be matched by request stubs declared with hash body with non-string values.
552
-
553
- stub_request(:post, "www.example.com").with(body: {"a" => 1, "b" => false})
554
-
555
- RestClient.post('www.example.com', 'a=1&b=false', :content_type => 'application/x-www-form-urlencoded') # ===> Success
556
-
557
- Thanks to [Kenny Ortmann](https://github.com/yairgo) for suggesting this feature.
558
-
559
- * When request headers contain 'Accept'=>'application/json' and no registered stub matches the request, WebMock prints a suggested stub code with to_return body set to '{}'.
560
-
561
- Thanks to [redbar0n](https://github.com/redbar0n)
562
-
563
- * Improved suggested stub output when the request stub only contains headers declaration.
564
-
565
- Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
566
-
567
- * Fixed Curb adapter to handle `reset` method.
568
-
569
- Thanks tp [dinhhuydh](https://github.com/dinhhuydh) for reporting the issue.
570
- Thanks to [Olia Kremmyda](https://github.com/oliakremmyda) for fixing it.
571
-
572
-
573
- ## 3.3.0
574
-
575
- * Better formatting of outputted request stub snippets, displayed on failures due to unstubbed requests.
576
-
577
- Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
578
-
579
-
580
- ## 3.2.1
581
-
582
- * Fixed Ruby warning under Ruby 2.5
583
-
584
- Thanks to [Matt Brictson](https://github.com/mattbrictson)
585
-
586
-
587
- ## 3.2.0
588
-
589
- * Automatically disable WebMock after Rspec suite
590
-
591
- Thanks to [Michał Matyas](https://github.com/d4rky-pl)
592
-
593
- * Fixed bug when handling redirection using Curb.
594
-
595
- Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
596
-
597
-
598
- ## 3.1.1
599
-
600
- * Warning message is displayed only once when adding query params to URIAddressablePattern.
601
-
602
- ## 3.1.0
603
-
604
- * http.rb 3.0.0 compatibility
605
-
606
- Thanks to [Piotr Boniecki](https://github.com/Bonias)
607
-
608
- * Typhoeus 1.3.0 support
609
-
610
- Thanks to [NARUSE, Yui](https://github.com/nurse)
611
-
612
- * Added support for matching partial query params using hash_excluding
613
-
614
- stub_request(:get, "www.example.com").
615
- with(query: hash_excluding({"a" => "b"}))
616
-
617
- RestClient.get("http://www.example.com/?a=b") # ===> Failure
618
- RestClient.get("http://www.example.com/?a=c") # ===> Success
619
-
620
- Thanks to [Olexandr Hoshylyk](https://github.com/Warrior109)
621
-
622
- * Added MRI 2.3+ frozen string literal compatibility
623
-
624
- Thanks to [Pat Allan](https://github.com/pat)
625
-
626
- * Ensured that HTTPClient adapter does not yield block on empty response body if a block is provided
627
-
628
- Thanks to [NARUSE, Yui](https://github.com/nurse)
629
-
630
- * Fixed issue with `to_timeout` incorrectly raising `HTTP::ConnectionError` instead of `HTTP::TimeoutError` when using http.rb
631
-
632
- Thanks to [Rick Song](https://github.com/RickCSong)
633
-
634
- * Fixed problem with `response.connection.close` method being undefined when using http.rb
635
-
636
- Thanks to [Janko Marohnić](https://github.com/janko-m)
637
-
638
- * Fixed problem with matching Net::HTTP request header values assigned as numbers.
639
-
640
- Thanks to [Felipe Constantino de Oliveira](https://github.com/felipecdo) for reporting the issue.
641
-
642
- * Fixed problem with Net::HTTP adapter converting empty response body to nil for non 204 responses.
643
-
644
- Thanks to [Jeffrey Charles](https://github.com/jeffcharles) for reporting the issue.
645
-
646
-
647
- ## 3.0.1
648
-
649
- * Suppressed \`warning: \`&' interpreted as argument prefix\`
650
-
651
- Thanks to [Koichi ITO](https://github.com/koic)
652
-
653
- ## 3.0.0
654
-
655
- * Dropped support for Ruby 1.9.3
656
-
657
- * Using Ruby >= 1.9 hash key syntax in stub suggestions
658
-
659
- Thanks to [Tarmo Tänav](https://github.com/tarmo)
660
-
661
- * Add at_least matchers for fakeweb-style expectations
662
-
663
- Thanks to [Joe Marty](https://github.com/mltsy)
664
-
665
- * Fix against "can't modify frozen String' error when Ruby option `frozen_string_literal` is enabled.
666
-
667
- Thanks to [Chris Thomson](https://github.com/christhomson)
668
-
669
- * Handling `read_timeout` option in Net::HTTP in Ruby >= 2.4
670
-
671
- Thanks to [Christof Koenig](https://github.com/ckoenig)
672
-
673
- * `RequestRegistry` fix for `RuntimeError - can't add a new key into hash during iteration`
674
-
675
- Thanks to [Chung-Yi Chi](https://github.com/starsirius)
676
-
677
- ## 2.3.2
678
-
679
- * Restored support for Ruby 1.9.3 to comply with semantic versioning.
680
-
681
- Thanks to [Jordan Harband](https://github.com/ljharb) for reporting the problem.
682
-
683
- ## 2.3.1
684
-
685
- * Added support for Ruby 2.4
686
-
687
- Thanks to [Koichi ITO](https://github.com/koic)
688
-
689
- * Dropped support for Ruby 1.9.3
690
-
691
- ## 2.2.0
692
-
693
- * Added `refute_requested` as an alias for `assert_not_requested`
694
-
695
- Thanks to [Michael Grosser](https://github.com/grosser)
696
-
697
- * Raising `Net::OpenTimeout` instead of `Timeout::Error` if available when a request stub is declared `to_timeout`
698
-
699
- Thanks to [Gabe Martin-Dempesy](https://github.com/gabetax)
700
-
701
- ## 2.1.1
702
-
703
- * Added support for handling status messages in Excon responses.
704
-
705
- Thanks to [Tero Marttila](https://github.com/SpComb) for reporting the issue.
706
-
707
- ## 2.1.0
708
-
709
- * Added support for `on_debug` callback in Curb.
710
-
711
- Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)
712
-
713
- * Added support for PATCH requests using Curb.
714
-
715
- Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)
716
-
717
- ## 2.0.3
718
-
719
- * Handling headers passed as an Array to Curl::Easy
720
-
721
- Thanks to [Chelsea](https://github.com/grosscr) for reporting the issue.
722
-
723
- * Removed Ruby warnings.
724
-
725
- Thanks to [Aaron Kromer](https://github.com/cupakromer)
726
-
727
- ## 2.0.2
728
-
729
- * Using `Base64.strict_encode64` instead of `Base64.encode64` to handle long user:pass basic auth credentials
730
-
731
- Thanks to [Jonathan Schatz](https://github.com/modosc)
732
-
733
- * Fixed handling of Authorisation header provided as string instead of array when using em-http-request.
734
-
735
- Thanks to [Michael Richardson](https://github.com/TTransmit) for reporing the issue.
736
-
737
- * Ensured `WebMock.net_connect_explicit_allowed?` always returns boolean.
738
-
739
- Thanks tp [Jose Luis Honorato](https://github.com/jlhonora)
740
-
741
- ## 2.0.1
742
-
743
- * Added code responsible for loading em-http-request if available, which has been removed by mistake.
744
-
745
- Thanks to [Vasiliy](https://github.com/304)
746
-
747
- * WebMock loads "base64" if it's not yet loaded.
748
-
749
- Thanks to [Taiki Ono](https://github.com/taiki45).
750
-
751
- ## 2.0.0
752
-
753
- * `require 'webmock'` does not enable WebMock anymore. `gem 'webmock'` can now be safely added to a Gemfile and no http client libs will be modified when it's loaded. Call `WebMock.enable!` to enable WebMock.
754
-
755
- Please note that `require 'webmock/rspec'`, `require 'webmock/test_unit'`, `require 'webmock/minitest'` and `require 'webmock/cucumber'` still do enable WebMock.
756
-
757
- * Dropped support for Ruby < 1.9.3
758
-
759
- * Dropped support for em-http-request < 1.0.0
760
-
761
- * WebMock 2.0 does not match basic authentication credentials in the userinfo part of the url, with credentials passed in `Authorization: Basic ...` header anymore.
762
- It now treats the Authorization header and credentials in the userinfo part of a url as two completely separate attributes of a request.
763
-
764
- The following stub declaration, which used to work in WebMock 1.x, is not going to work anymore
765
-
766
- stub_request(:get, "user:pass@www.example.com")
767
-
768
- Net::HTTP.start('www.example.com') do |http|
769
- req = Net::HTTP::Get.new('/')
770
- req.basic_auth 'user', 'pass'
771
- http.request(req)
772
- end # ===> Failure
773
-
774
- In order to stub a request with basic authentication credentials provided in the Authorization header, please use the following code:
775
-
776
- stub_request(:get, "www.example.com").with(basic_auth: ['user', 'pass'])
777
-
778
- or
779
-
780
- stub_request(:get, "www.example.com").
781
- with(headers: 'Authorization' => "Basic #{ Base64.strict_encode64('user:pass').chomp}")
782
-
783
- In order to stub a request with basic authentication credentials provided in the url, please use the following code:
784
-
785
- stub_request(:get, "user:pass@www.example.com")
786
-
787
- RestClient.get('user:pass@www.example.com') # ===> Success
788
-
789
- ## 1.24.6
790
-
791
- * Fixed issue with RUBY_VERSION comparison using old RubyGems.
792
-
793
- Thanks to [Chris Griego](https://github.com/cgriego).
794
-
795
- * Support for http.rb >= 2.0.0
796
-
797
- ## 1.24.4
798
-
799
- * Fixed the issue with parsing query to a hash with nested array i.e. `a[][b][]=one&a[][c][]=two`
800
-
801
- Thanks to [Tim Diggins](https://github.com/timdiggins) for reporting the issue.
802
- Thanks to [Cedric Pimenta](https://github.com/cedricpim) for finding the solution.
803
-
804
- ## 1.24.3
805
-
806
- * Allow Net:HTTP headers keys to be provided as symbols if `RUBY_VERSION` >= 2.3.0
807
-
808
- Thanks to [Alex Kestner](https://github.com/akestner)
809
-
810
- * Added a clear message on an attempt to match a multipart encoded request body.
811
- WebMock doesn't support requests with multipart body... yet.
812
-
813
- * `WebMock.disable_net_connect` `:allow` option, provided as regexp, matches https URIs correctly.
814
-
815
- * `WebMock.disable_net_connect` `:allow` option can be set as a url string with scheme, host and port.
816
-
817
- WebMock.disable_net_connect!(:allow => 'https://www.google.pl')
818
-
819
- Thanks to [Gabriel Chaney](https://github.com/gabrieljoelc) for reporting the issue.
820
-
821
- ## 1.24.2
822
-
823
- * Improve parsing of params on request
824
-
825
- Thanks to [Cedric Pimenta](https://github.com/cedricpim)
826
-
827
- ## 1.24.1
828
-
829
- * HTTPClient adapter supports reading basic authentication credentials directly from Authorization header.
830
-
831
- Thanks to [Michiel Karnebeek](https://github.com/mkarnebeek)
832
-
833
- ## 1.24.0
834
-
835
- * Enabled support for Curb > 0.8.6
836
-
837
- ## 1.23.0
838
-
839
- * `WebMock.disable_net_connect` accepts `:allow` option with an object that responds to `#call`, receiving a `URI` object and returning a boolean:
840
-
841
-
842
- denylist = ['google.com', 'facebook.com', 'apple.com']
843
- allowed_sites = lambda{|uri|
844
- denylist.none?{|site| uri.host.include?(site) }
845
- }
846
- WebMock.disable_net_connect!(:allow => allowed_sites)
847
-
848
- RestClient.get('www.example.org', '/') # ===> Allowed
849
- RestClient.get('www.facebook.com', '/') # ===> Failure
850
- RestClient.get('apple.com', '/') # ===> Failure
851
-
852
- Thanks to [Pablo Brasero](https://github.com/pablobm)
853
-
854
- * Support for HTTPClient stream responses with body chunks
855
-
856
- Thanks to [Cedric Pimenta](https://github.com/cedricpim)
857
-
858
-
859
- ## 1.22.6
860
-
861
- * Fixes [issue](https://github.com/bblimke/webmock/issues/568) around
862
- WebMock restricting [Addressable](https://github.com/sporkmonger/addressable)
863
- version, based on Ruby 1.8.7 for all versions of Ruby.
864
-
865
- This change inverts that, and forces Ruby 1.8.7 users to specify in thier
866
- Gemfile an Addressable version < 2.4.0.
867
-
868
- Thanks to [PikachuEXE](https://github.com/PikachuEXE) and
869
- [Matthew Rudy Jacobs](https://github.com/matthewrudy).
870
-
871
- ## 1.22.5
872
-
873
- * Fixes [bug](https://github.com/bblimke/webmock/issues/565) where WebMock tries
874
- to alias a method that is deprecated in Ruby Versions > 1.9.2 ('sysread' for class 'StringIO')
875
-
876
- Thanks to [Marcos Acosta](https://github.com/mmaa) for discovering this bug.
877
-
878
- ## 1.22.4
879
-
880
- * Adds support for JSONClient (a subclass of HTTPClient)
881
-
882
- Thanks to [Andrew Kozin](https://github.com/nepalez)
883
-
884
- * Adds support for Ruby 2.3.0
885
-
886
- Thanks to [Charles Pence](https://github.com/cpence)
887
-
888
- * Adds support for [http](https://github.com/httprb/http) versions >= 1.0.0
889
-
890
- Thanks to [Alexey Zapparov](https://github.com/ixti)
891
-
892
- * Fixes support for Ruby 1.8.7 by restrciting Addressable version < 2.4.0
893
-
894
- Thanks to [Matthew Rudy Jacobs](https://github.com/matthewrudy)
895
-
896
- ## 1.22.3
897
-
898
- * Return "effective_url" attribute in Typhoeus::Response
899
-
900
- Thanks to [Senya](https://github.com/cmrd-senya)
901
-
902
- ## 1.22.2
903
-
904
- * Fix: prevents adding an extra =true to urls with parameters without values
905
-
906
- Thanks to [David Begin](https://github.com/davidbegin)
907
-
908
- ## 1.22.1
909
-
910
- * Adds Rack as a development dependency and removes require rack/utils in main lib.
911
-
912
- Thanks to [Keenan Brock](https://github.com/kbrock)
913
-
914
- ## 1.22.0
915
-
916
- All the credit for preparing this release go to [David Begin](https://github.com/davidbegin)!
917
-
918
- * Adds [Manticore](https://github.com/cheald/manticore) support.
919
-
920
- Thanks to [Mike Knepper](https://github.com/mikeknep), [David Abdemoulaie](https://github.com/hobodave)
921
-
922
- * Update to Show a hash diff for requests that have stubs with a body.
923
-
924
- Thanks to [yurivm](https://github.com/yurivm)
925
-
926
- * Update to mirror Net::HTTP handling of headers as symbols
927
-
928
- * Update to ignore non-comparable-values error when sorting
929
- query values, because sorting is just a convience.
930
-
931
- Thanks to [Magne Land](https://github.com/magneland)
932
-
933
- * Covert Boolean values to Strings when using them to define
934
- the body of a request.
935
-
936
- Thanks to [Krzysztof Rygielski](https://github.com/riggy)
937
-
938
- * Fixes WebMock's parsing Multibyte characters
939
-
940
- Thanks to [Zhao Wen](https://github.com/VincentZhao)
941
-
942
- * Updates to be compatible with httpclient 2.6.0
943
-
944
- * Converts keys from symbols to strings when for QueryMapper.to_query
945
-
946
- Thanks to [Ramon Tayag](https://github.com/ramontayag)
947
-
948
- * Restricts http.rb version to 0.7.3 for Ruby 1.8.7
949
-
950
- * Fixes issue emulating em-http-request's handling of multiple requests.
951
-
952
- Thanks to [Matt Palmer](https://github.com/mpalmer)
953
-
954
- * WebMock requires only the necessary parts of crack to avoid pulling in safe_yaml
955
-
956
- Thanks to [Johannes Schlumberger](https://github.com/spjsschl)
957
-
958
- ## 1.21.0
959
-
960
- * Support for http.rb >= 0.8.0
961
-
962
- Thanks to [Zachary Anker](https://github.com/zanker), [Aleksey V. Zapparov](https://github.com/ixti)
963
-
964
- * Support for http.rb 0.7.0
965
-
966
- Thanks to [Mattias Putman](https://github.com/challengee)
967
-
968
- * Added support for RSpec3-like `and_return`, `and_raise`, `and_timeout` syntax.
969
-
970
- Thanks to [Franky Wahl](https://github.com/frankywahl)
971
-
972
- * Restricted Curb support up to version 0.8.6. WebMock specs fail with Curb 0.8.7.
973
-
974
- ## 1.20.4
975
-
976
- * Fixed support for `hash_including` matcher in RSpec 3
977
-
978
- ## 1.20.3
979
-
980
- * `with` method raises error if provided without options hash and without block
981
-
982
- * `with` and `to_return` raise an error if invoked with invalid keys in options hash.
983
-
984
- ## 1.20.2
985
-
986
- * WebMock provides a helpful error message if an incompatible object is given as response body.
987
-
988
- Thanks to [Mark Lorenz](https://github.com/dapplebeforedawn)
989
-
990
- ## 1.20.1
991
-
992
- * `assert_requested` and `assert_not_requested` accept `at_least_times` and `at_most_times` options
993
-
994
- Thanks to [Dan Buettner](https://github.com/Capncavedan)
995
-
996
- * Silenced `instance variable undefined` warnings in Curb adapted.
997
-
998
- Thanks to [Sven Riedel](https://github.com/sriedel)
999
-
1000
- ## 1.20.0
1001
-
1002
- * Add support for on_missing callback of Curb::Easy
1003
-
1004
- Thanks to [Tasos Stathopoulos](https://github.com/astathopoulos)
1005
-
1006
- * Add at_least_times and at_most_times matchers
1007
-
1008
- Thanks to [Dan Buettner](https://github.com/Capncavedan)
1009
-
1010
- ## 1.19.0
1011
-
1012
- * Fixed issue with Excon adapter giving warning message when redirects middleware was enabled.
1013
-
1014
- Thanks to [Theo Hultberg](https://github.com/iconara) for reporting that.
1015
-
1016
- * Fixed issue with `undefined method 'valid_request_keys' for Excon::Utils:Module`
1017
-
1018
- Thanks to [Pablo Jairala](https://github.com/davidjairala)
1019
-
1020
- * Fixed query mapper to encode `'one' => ['1','2']` as `'one[]=1&one[]=2'`.
1021
-
1022
- Thanks to [Insoo Buzz Jung](https://github.com/insoul)
1023
-
1024
- * Improved cookies support for em-http-request
1025
-
1026
- Thanks to [Carlos Alonso Pérez](https://github.com/calonso)
1027
-
1028
- * Fix HTTP Gem adapter to ensure uri attribute is set on response object.
1029
-
1030
- Thanks to [Aleksey V. Zapparov](https://github.com/ixti)
1031
-
1032
- * Fixed HTTPClient adapter. The response header now receives `request_method`, `request_uri`, and `request_query` transferred from request header
1033
-
1034
- Thanks to [trlorenz](https://github.com/trlorenz)
1035
-
1036
- * Query mapper supports nested data structures i.e. `{"first" => [{"two" => [{"three" => "four"}, "five"]}]}`
1037
-
1038
- Thanks to [Alexander Simonov](https://github.com/simonoff)
1039
-
1040
- * Fixed compatibility with latest versions of Excon which don't define `VALID_REQUEST_KEYS` anymore.
1041
-
1042
- Thanks to [Pablo Jairala](https://github.com/davidjairala)
1043
-
1044
- * Request method is always a symbol is request signatures. This fixes the issue of WebMock not matching Typhoeus requests with request method defined as string.
1045
-
1046
- Thanks to [Thorbjørn Hermanse](https://github.com/thhermansen)
1047
-
1048
- * Stubbing instructions which are displayed when no matching stub is found, can be disabled with `Config.instance.show_stubbing_instructions = false`
1049
-
1050
- Thanks to [Mark Lorenz](https://github.com/dapplebeforedawn)
1051
-
1052
- * Notation used for mapping query strings to data structure can be configured i.e. `WebMock::Config.instance.query_values_notation = :subscript`. This allows setting `:flat_array` notation which supports duplicated parameter names in query string.
1053
-
1054
- Thanks to [tjsousa](https://github.com/tjsousa)
1055
-
1056
- ## 1.18.0
1057
-
1058
- * Updated dependency on Addressable to versions >= 2.3.6
1059
-
1060
- * Added support for matching uris using RFC 6570 (URI Templates)
1061
-
1062
- uri_template = Addressable::Template.new "www.example.com/{id}/"
1063
- stub_request(:any, uri_template)
1064
-
1065
- Thanks to [Max Lincoln](https://github.com/maxlinc)
1066
-
1067
- * Fixed content length calculation for Rack responses with UTF8 body
1068
-
1069
- Thanks to [Oleg Gritsenko](https://github.com/Claster)
1070
-
1071
- * Add missing Curl::Easy aliases
1072
-
1073
- Thanks to [Hwan-Joon Choi](https://github.com/hc5duke)
1074
-
1075
- * HTTP Gem >= 0.6.0 compatibility
1076
-
1077
- Thanks to [Aleksey V. Zapparov](https://github.com/ixti)
1078
-
1079
- * Minitest 4 and 5 compatibility.
1080
-
1081
- Thanks to [SHIBATA Hiroshi](https://github.com/hsbt)
1082
-
1083
- ## 1.17.4
1084
-
1085
- * Update matchers for RSpec 3's matcher protocol
1086
-
1087
- Thanks to [Rob Olson](https://github.com/robolson)
1088
-
1089
- ## 1.17.3
1090
-
1091
- * Fixed issue with Rack response removing 'Content-Type' header
1092
-
1093
- Thanks to [Bo Jeanes](https://github.com/bjeanes) and [Matthew Conway](https://github.com/mattonrails)
1094
-
1095
- ## 1.17.2
1096
-
1097
- * Support for chunked responses in Curb
1098
-
1099
- Thanks to [Zachary Belzer](https://github.com/zbelzer)
1100
-
1101
- * Fixed handling of request body passed as a hash to `Typhoeus.post`
1102
-
1103
- Thanks to [Mason Chang](https://github.com/changmason) for reporting.
1104
-
1105
- ## 1.17.1
1106
-
1107
- * Added missing license statements.
1108
-
1109
- Thanks to [Praveen Arimbrathodiyil](https://github.com/pravi)
1110
-
1111
- ## 1.17.0
1112
-
1113
- * HTTP gem support!
1114
-
1115
- Thanks to [Aleksey V. Zapparov](https://github.com/ixti)
1116
-
1117
- * Limited Excon gem requirement to version < 0.30 until the compatibility with version > 0.30.0 is fixed.
1118
-
1119
- Thanks to [Aleksey V. Zapparov](https://github.com/ixti)
1120
-
1121
- * Fixed issue where empty query key caused a `TypeError`
1122
-
1123
- Thanks to [Jon Rowe](https://github.com/JonRowe)
1124
-
1125
- * Handling Typhoeus `on_headers` and `on_body` params.
1126
-
1127
- Thanks to [Matt Burke](https://github.com/spraints)
1128
-
1129
- ## 1.16.1
1130
-
1131
- * Fixed "NameError: uninitialized constant WebMock::Response::Pathname" issue.
1132
-
1133
- Thanks to [Alex Stupakow and Karen Wang](https://github.com/stupakov) for the fix.
1134
-
1135
- ## 1.16.0
1136
-
1137
- * Allow a Pathname to be passed as a Response body
1138
-
1139
- stub_request(:get, /example.com/).to_return(
1140
- body: Rails.root.join('test/fixtures/foo.txt')
1141
- )
1142
-
1143
- Thanks to [Ben Pickles](https://github.com/benpickles)
1144
-
1145
- * `hash_including` matcher can be initialized with empty keys to match any values.
1146
-
1147
- stub_request(:post, "www.example.com").with(:body => hash_including(:a, :b => {'c'}))
1148
- RestClient.post('www.example.com', '{"a":"1","b":"c"}', :content_type => 'application/json')
1149
-
1150
- Thanks to [Stefano Uliari](https://github.com/steookk)
1151
-
1152
- ## 1.15.2
1153
-
1154
- * Fixed `hash_including` to accept a splat of solitary keys.
1155
-
1156
- Thanks to [Tamir Duberstein](https://github.com/tamird) and [https://github.com/strongriley](https://github.com/strongriley)
1157
-
1158
- ## 1.15.0
1159
-
1160
- * Excon >= 0.27.5 compatibility.
1161
-
1162
- Thanks to [Brian D. Burns](https://github.com/burns)
1163
-
1164
- ## 1.14.0
1165
-
1166
- * Handling non UTF-8 characters in query params.
1167
-
1168
- Thanks to [Florian Dütsch](https://github.com/der-flo) for reporting the issue.
1169
-
1170
- * Added support for `request_block` param in Excon
1171
-
1172
- Thanks to [Dmitry Gutov](https://github.com/dgutov) for reporting the issue.
1173
-
1174
- * Fixed compatibility with latest Curb
1175
-
1176
- Thanks to [Ian Lesperance](https://github.com/elliterate) and [Matthew Horan](https://github.com/mhoran)
1177
-
1178
- * Triggering errbacks assynchronously in em-http-request adapter.
1179
-
1180
- Thanks to [Ian Lesperance](https://github.com/elliterate) and [Matthew Horan](https://github.com/mhoran)
1181
-
1182
- * Handling query params with a hashes nested inside arrays.
1183
-
1184
- Thanks to [Ian Asaff](https://github.com/montague)
1185
-
1186
- * Changed NetConnectNotAllowedError to inherit from Exception to allow it to bubble up into a test suite.
1187
-
1188
- Thanks to [Daniel van Hoesel](https://github.com/s0meone)
1189
-
1190
- * HTTPClient adapter is thread safe.
1191
-
1192
- Thanks to [Tom Beauvais](https://github.com/tbeauvais)
1193
-
1194
- ## 1.13.0
1195
-
1196
- * Net::HTTP::Persistent compatibility.
1197
- WebMock doesn't disconnect previously started connections upon a request anymore.
1198
-
1199
-
1200
- ## 1.12.3
1201
-
1202
- * Fixed issue with handling Addressable::URI with query params passed to `Net::HTTP.get_response`
1203
-
1204
- Thanks to [Leif Bladt](https://github.com/leifbladt)
1205
-
1206
- * Fixed HTTPClient adapter to not raise an error if a request with multipart body is executed.
1207
-
1208
- ## 1.12.2
1209
-
1210
- * Fixed issue with handling request.path when Addressable::URI is passed to #request instead of URI with Ruby 2.0.
1211
-
1212
- Thanks to [Leif Bladt](https://github.com/leifbladt)
1213
-
1214
- * Accept integers as query param values in request stubs
1215
-
1216
- i.e. `stub_request(:get, /.*/).with(:query => {"a" => 1})`
1217
-
1218
- Thanks to [Mitsutaka Mimura](https://github.com/takkanm)
1219
-
1220
- ## 1.12.1
1221
-
1222
- * Fixed Minitest < 5.0 compatibility
1223
-
1224
- Thanks to [Alex Tomlins](https://github.com/alext) for reporting the issue.
1225
-
1226
- ## 1.12.0
1227
-
1228
- * Not using Gem spec anymore to check loaded Curb version.
1229
-
1230
- * `WebMock.disable_net_connect!` now accepts array of regexps as allow param:
1231
-
1232
- i.e. `WebMock.disable_net_connect!(:allow => [/google.com/, /yahoo.com/])`
1233
-
1234
- Thanks to [Bastien Vaucher](https://github.com/bastien)
1235
-
1236
- * Fixed `on_header` Curb callback behaviour in Curb adapter
1237
-
1238
- Thanks to [Joel Chippindale](https://github.com/mocoso)
1239
-
1240
- * Fixed aws-sdk compatibility with Ruby 2.0, by supporting `continue_timeout` accessor on Net::HTTP socket.
1241
-
1242
- Thanks to [Lin Jen-Shin](https://github.com/godfat)
1243
-
1244
- * Fixed WebMock::Server to not give "log writing failed. can't be called from trap context" warning with Ruby 2.0
1245
-
1246
- Thanks to [Murahashi Sanemat Kenichi](https://github.com/sanemat)
1247
-
1248
- * Added support for EM-HTTP-Request streaming data off disk feature.
1249
-
1250
- Thanks to [Lin Jen-Shin](https://github.com/godfat)
1251
-
1252
- * Added compatibility with Minitest 5
1253
-
1254
- Thanks to [Tim Kurvers](https://github.com/timkurvers)
1255
-
1256
- * Excon >= 0.22 compatibility.
1257
-
1258
- * README has nice sytnax hightlighting and fixed code styling!
1259
-
1260
- Thanks to [Ilya Vassilevsky](https://github.com/vassilevsky)
1261
-
1262
- * Compatibility with Rails 4 `rack.session.options`
1263
-
1264
- Thanks to [gotwalt](https://github.com/gotwalt)
1265
-
1266
- ## 1.11.0
1267
-
1268
- * Excon >= 0.17 support.
1269
-
1270
- Thanks to [Nathan Sutton](https://github.com/nate) for reporting this issue and to [Wesley Beary](https://github.com/geemus) and [Myron Marston](https://github.com/myronmarston) for help.
1271
-
1272
- ## 1.10.2
1273
-
1274
- * '+' in request path is treated as plus, but in query params always as a space.
1275
-
1276
- ## 1.10.1
1277
-
1278
- * '+' in request body is still treated as a space. This fixes a bug introduced in previous version.
1279
-
1280
- Thanks to [Erik Michaels-Ober](https://github.com/sferik) for reporting this problem.
1281
-
1282
- * Fixed issue: response body declared as Proc was not evaluated again on subsequent requests.
1283
-
1284
- Thanks to [Rick Fletcher](https://github.com/rfletcher) for reporting this issue.
1285
-
1286
- ## 1.10.0
1287
-
1288
- * '+' in query params is not treated as space anymore and is encoded as %2B
1289
-
1290
- Thanks to [goblin](https://github.com/goblin) for reporting this issue.
1291
-
1292
- * added `remove_request_stub` method to the api to allow removing unused stubs i.e.
1293
-
1294
- stub_get = stub_request(:get, "www.example.com")
1295
- remove_request_stub(stub_get)
1296
-
1297
- * `assert_requested` and `assert_not_requested` raise an error if a stub object is provided together with a block.
1298
-
1299
- ## 1.9.3
1300
-
1301
- * Fixed issue with unavailable constant Mutex in Ruby < 1.9
1302
-
1303
- Thanks to [Lucas Dohmen](https://github.com/moonglum) for reporting this issue.
1304
-
1305
- ## 1.9.2
1306
-
1307
- * Added support for Excon's :response_block parameter
1308
-
1309
- Thanks to [Myron Marston](https://github.com/myronmarston) for reporting this issue.
1310
-
1311
- ## 1.9.1
1312
-
1313
- * Fix 'rack.errors' not being set for Rack apps
1314
-
1315
- Thanks to [Alex Grant](https://github.com/grantovich)
1316
-
1317
- * Added support for minitest assertions count
1318
-
1319
- Thanks to [Mokevnin Kirill](https://github.com/mokevnin)
1320
-
1321
- * Fixed issues with registering http requests in multi-threaded environments
1322
-
1323
- Thanks to [Tom Beauvais](https://github.com/tbeauvais)
1324
-
1325
- * Bumped Crack version to >=0.3.2
1326
-
1327
- Thanks to [Jake Benilov](https://github.com/benilovj)
1328
-
1329
- * Fixed issues in Typhoeus 0.6. Defaulted method to GET when no method specified.
1330
-
1331
- Thanks to [Hans Hasselberg](https://github.com/i0rek)
1332
-
1333
- * Add license information to the gemspec
1334
-
1335
- Thanks to [Jordi Massaguer Pla](https://github.com/jordimassaguerpla) and [Murahashi Sanemat Kenichi](https://github.com/sanemat)
1336
-
1337
- * Added support for :expects option in Excon adapter
1338
-
1339
- Thanks to [Evgeniy Dolzhenko](https://github.com/dolzenko)
1340
-
1341
- * Fixed Faye compatibility by treating StringIO in Net::HTTP adapter properly
1342
-
1343
- Thanks to [Pavel Forkert](https://github.com/fxposter)
1344
-
1345
- * Updated VCR link
1346
-
1347
- Thanks to [Rex Feng](https://github.com/xta)
1348
-
1349
- ## 1.9.0
1350
-
1351
- * Added support for Typhoeus >= 0.5.0 and removed support for Typhoeus < 0.5.0.
1352
-
1353
- Thanks to [Hans Hasselberg](https://github.com/i0rek)
1354
-
1355
- ## 1.8.11
1356
-
1357
- * Fix excon adapter to handle `:body => some_file_object`
1358
-
1359
- Thanks to [Myron Marston](https://github.com/myronmarston)
1360
-
1361
- ## 1.8.10
1362
-
1363
- * em-http-request fix. After request callbacks are correctly invoked for 3xx responses,
1364
- when :redirects option is set.
1365
-
1366
- Thanks to [Myron Marston](https://github.com/myronmarston) for reporting that issue.
1367
-
1368
- * Fixed compatibility with Net::HTTP::DigestAuth
1369
-
1370
- Thanks to [Jonathan Hyman](https://github.com/jonhyman) for reporting that issue.
1371
-
1372
- * Fixed problem in em-http-request 0.x appending the query to the client URI twice.
1373
-
1374
- Thanks to [Paweł Pierzchała](https://github.com/wrozka)
1375
-
1376
- ## 1.8.9
1377
-
1378
- * Fixed problem with caching nil responses when the same HTTPClient instance is used.
1379
-
1380
- Thanks to [Myron Marston](https://github.com/myronmarston)
1381
-
1382
- * Added support for Addressable >= 2.3.0. Addressable 2.3.0 removed support for multiple query value notations and broke backwards compatibility.
1383
-
1384
- https://github.com/sporkmonger/addressable/commit/f51e290b5f68a98293327a7da84eb9e2d5f21c62
1385
- https://github.com/sporkmonger/addressable/issues/77
1386
-
1387
-
1388
- ## 1.8.8
1389
-
1390
- * Fixed Net::HTTP adapter so that it returns `nil` for an empty body response.
1391
-
1392
- Thanks to [Myron Marston](https://github.com/myronmarston)
1393
-
1394
- * Gemspec defines compatibility with Addressable ~> 2.2.8, not >= 2.3.0
1395
-
1396
- * Specs compatibility with Typhoeus 0.4.0
1397
-
1398
- Thanks to [Hans Hasselberg](https://github.com/i0rek)
1399
-
1400
- * Handling content types that specify a charset
1401
-
1402
- Thanks to [Kevin Glowacz](https://github.com/kjg)
1403
-
1404
- * Fixed em-http-request adapter to correctly fetch authorization header from a request
1405
-
1406
- Thanks to [Julien Boyer](https://github.com/chatgris)
1407
-
1408
- * Fixing travis-ci image to report master's status
1409
-
1410
- Thanks to [Ryan Schlesinger](https://github.com/ryansch)
1411
-
1412
- * Fixed problem with em-http-request callback triggering if there were other EM::Deferred callbacks registered
1413
-
1414
- Thanks to [Jon Leighton](https://github.com/jonleighton)
1415
-
1416
- * Fixed problem with em-http-request appending the query to the URI a second time, and
1417
- the parameters are repeated.
1418
-
1419
- Thanks to [Jon Leighton](https://github.com/jonleighton)
1420
-
1421
- ## 1.8.7
1422
-
1423
- * Compatibility with RSpec >= 2.10
1424
-
1425
- Thanks to [erwanlr](https://github.com/erwanlr) for reporting this issue.
1426
-
1427
- * Add missing required rack environment variable SCRIPT_NAME
1428
-
1429
- Thanks to [Eric Oestrich](https://github.com/oestrich)
1430
-
1431
- * Fixed warnings due to @query_params not being initialized
1432
-
1433
- Thanks to [Ben Bleything](https://github.com/bleything)
1434
-
1435
- ## 1.8.6
1436
-
1437
- * Pass through SERVER_PORT when stubbing to rack
1438
-
1439
- Thanks to [Eric Oestrich](https://github.com/oestrich)
1440
-
1441
- * Fixed problem with missing parenthesis in `WebMock#net_connect_allowed?` conditions.
1442
-
1443
- Thanks to [aindustries](https://github.com/aindustries)
1444
-
1445
- ## 1.8.5
1446
-
1447
- * WebMock::RackResponse supports basic auth
1448
-
1449
- Thanks to [jugyo](https://github.com/jugyo)
1450
-
1451
- ## 1.8.4
1452
-
1453
- * Warning message is printed when an unsupported version of a http library is loaded.
1454
-
1455
- Thanks to [Alexander Staubo](https://github.com/alexstaubo) for reporting the problem and to [Myron Marston](https://github.com/myronmarston) for a help with solution.
1456
-
1457
- ## 1.8.3
1458
-
1459
- * Fixed compatibility with latest em-http-request
1460
-
1461
- Thanks to [Paul Cortens](https://github.com/thoughtless)
1462
-
1463
- ## 1.8.2
1464
-
1465
- * Prevent Webmock `hash_including` from overriding RSpec version 1 `hash_including` method.
1466
-
1467
- Thanks to [Joe Karayusuf](https://github.com/karayusuf)
1468
-
1469
- * Ensured WebMock handles RSpec 1 `hash_including` matcher for matching query params and body.
1470
-
1471
- ## 1.8.1
1472
-
1473
- * Ensured WebMock doesn't interfere with `em-synchrony`, when `em-synchrony/em-http` is not included.
1474
-
1475
- Thanks to [Nick Recobra](https://github.com/oruen)
1476
-
1477
- * Improved README
1478
-
1479
- Thanks to [Jordan Elver](https://github.com/jordelver)
1480
-
1481
-
1482
- ## 1.8.0
1483
-
1484
- * Matching request body against partial hash.
1485
-
1486
- stub_http_request(:post, "www.example.com").
1487
- with(:body => hash_including({:data => {:a => '1', :b => 'five'}}))
1488
-
1489
- RestClient.post('www.example.com', "data[a]=1&data[b]=five&x=1",
1490
- :content_type => 'application/x-www-form-urlencoded') # ===> Success
1491
-
1492
- request(:post, "www.example.com").
1493
- with(:body => hash_including({:data => {:a => '1', :b => 'five'}}),
1494
- :headers => 'Content-Type' => 'application/json').should have_been_made # ===> Success
1495
-
1496
- Thanks to [Marnen Laibow-Koser](https://github.com/marnen) for help with this solution
1497
-
1498
- * Matching request query params against partial hash.
1499
-
1500
- stub_http_request(:get, "www.example.com").with(:query => hash_including({"a" => ["b", "c"]}))
1501
-
1502
- RestClient.get("http://www.example.com/?a[]=b&a[]=c&x=1") # ===> Success
1503
-
1504
- request(:get, "www.example.com").
1505
- with(:query => hash_including({"a" => ["b", "c"]})).should have_been_made # ===> Success
1506
-
1507
- * Added support for Excon.
1508
-
1509
- Thanks to [Dimitrij Denissenko](https://github.com/dim)
1510
-
1511
- * Added support for setting expectations on the request stub with `assert_requested`
1512
-
1513
- stub_get = stub_request(:get, "www.example.com")
1514
- stub_post = stub_request(:post, "www.example.com")
1515
-
1516
- Net::HTTP.get('www.example.com', '/')
1517
-
1518
- assert_requested(stub_get)
1519
- assert_not_requested(stub_post)
1520
-
1521
- Thanks to [Nicolas Fouché](https://github.com/nfo)
1522
-
1523
- * `WebMock.disable_net_connect!` accepts `RegExp` as `:allow` parameter
1524
-
1525
- Thanks to [Frank Schumacher](https://github.com/thenoseman)
1526
-
1527
- * Ensure multiple values for the same header can be recorded and played back
1528
-
1529
- Thanks to [Myron Marston](https://github.com/myronmarston)
1530
-
1531
- * Updated dependency on Addressable to version >= 2.2.7 to handle nested hash query values. I.e. `?one[two][three][]=four&one[two][three][]=five`
1532
-
1533
- * Fixed compatibility with Curb >= 0.7.16 This breaks compatibility with Curb < 0.7.16
1534
-
1535
- * Fix #to_rack to handle non-array response bodies.
1536
-
1537
- Thanks to [Tammer Saleh](https://github.com/tsaleh)
1538
-
1539
- * Added `read_timeout` accessor to StubSocket which fixes compatibility with aws-sdk
1540
-
1541
- Thanks to [Lin Jen-Shin](https://github.com/godfat)
1542
-
1543
- * Fix warning "instance variable @query_params not initialized"
1544
-
1545
- Thanks to [Joe Van Dyk](https://github.com/joevandyk)
1546
-
1547
- * Using bytesize of message instead of its length for content-length header in em-http-request adapter.
1548
- This fixes a problem with messages getting truncated in Ruby >= 1.9
1549
-
1550
- Thanks to [Mark Abramov](https://github.com/markiz)
1551
-
1552
- * Fixed problem with body params being matched even if params were different.
1553
-
1554
- Thanks to [Evgeniy Dolzhenko](https://github.com/dolzenko) for reporting this issue.
1555
-
1556
- ## 1.7.10
1557
-
1558
- * Yanked 1.7.9 and rebuilt gem on 1.8.7 to deal with syck/psych incompatibilties in gemspec.
1559
-
1560
- ## 1.7.9
1561
-
1562
- * Fixed support for native Typhoeus timeouts.
1563
-
1564
- Thanks to [Albert Llop](https://github.com/mrsimo)
1565
-
1566
- * Fixed problem with WebMock and RSpec compatibility on TeamCity servers. See [this article](http://www.coding4streetcred.com/blog/post/Issue-RubyMine-31-Webmock-162-and-%E2%80%9CSpecconfigure%E2%80%9D-curse.aspx) for more details.
1567
-
1568
- Thanks to [Christopher Pickslay](https://github.com/chrispix) from [Two Bit Labs](https://github.com/twobitlabs)
1569
-
1570
-
1571
- ## 1.7.8
1572
-
1573
- * Fix each adapter so that it calls a `stub.with` block only once per
1574
- request. Previously, the block would be called two or three times per
1575
- request [Myron Marston](https://github.com/myronmarston).
1576
-
1577
- ## 1.7.7 - RuPy 2011 release
1578
-
1579
- * Passing response object to a block passed to `HTTPClient#do_get_block`. This fixes `HTTPClient.get_content` failures. [issue 130](https://github.com/bblimke/webmock/pull/130)
1580
-
1581
- Thanks to [Chris McGrath](https://github.com/chrismcg)
1582
-
1583
- * Cleaned up ruby warnings when running WebMock code with `-w`.
1584
-
1585
- Thanks to [Stephen Celis](https://github.com/stephencelis)
1586
-
1587
- * Curb adapter now correctly calls on_failure for 4xx response codes.
1588
-
1589
- Thanks to [Eugene Pimenov](https://github.com/libc)
1590
-
1591
- ## 1.7.6
1592
-
1593
- * Support for the HTTPClient's request_filter feature
1594
-
1595
- Thanks to [Roman Shterenzon](https://github.com/romanbsd)
1596
-
1597
- ## 1.7.5
1598
-
1599
- * Added support for Patron 0.4.15. This change is not backward compatible so please upgrade Patron to version >= 0.4.15 if you want to use it with WebMock.
1600
-
1601
- Thanks to [Andreas Garnæs](https://github.com/andreas)
1602
-
1603
- ## 1.7.4
1604
-
1605
- * Added support for matching EM-HTTP-Request requests with body declared as a Hash
1606
-
1607
- Thanks to [David Yeu](https://github.com/daveyeu)
1608
-
1609
- ## 1.7.3
1610
-
1611
- * Added `Get`, `Post`, `Delete`, `Put`, `Head`, `Option` constants to replaced `Net::HTTP` to make it possible to marshal objects with these constants assigned to properties. This fixed problem with `tvdb_party` gem which serializes HTTParty responses.
1612
-
1613
- Thanks to [Klaus Hartl](https://github.com/carhartl) for reporting this issue.
1614
-
1615
- ## 1.7.2
1616
-
1617
- * Redefined `const_get` and `constants` methods on the replaced `Net::HTTP` to return same values as original `Net::HTTP`
1618
-
1619
- ## 1.7.1
1620
-
1621
- * Redefined `const_defined?` on the replaced `Net::HTTP` so that it returns true if constant is defined on the original `Net::HTTP`. This fixes problems with `"Net::HTTP::Get".constantize`.
1622
-
1623
- Thanks to [Cássio Marques](https://github.com/cassiomarques) for reporting the issue and to [Myron Marston](https://github.com/myronmarston) for help with the solution.
1624
-
1625
- ## 1.7.0
1626
-
1627
- * Fixed Net::HTTP adapter to not break normal Net::HTTP behaviour when network connections are allowed. This fixes **selenium-webdriver compatibility**!!!
1628
-
1629
- * Added support for EM-HTTP-Request 1.0.x and EM-Synchrony. Thanks to [Steve Hull](https://github.com/sdhull)
1630
-
1631
- * Added support for setting expectations to on a stub itself i.e.
1632
-
1633
- stub = stub_request(:get, "www.example.com")
1634
- # ... make requests ...
1635
- stub.should have_been_requested
1636
-
1637
- Thanks to [Aidan Feldman](https://github.com/afeld)
1638
-
1639
- * Minitest support! Thanks to [Peter Higgins](https://github.com/phiggins)
1640
-
1641
- * Added support for Typhoeus::Hydra
1642
-
1643
- * Added support for `Curb::Easy#http_post` and `Curb::Easy#http_post` with multiple arguments. Thanks to [Salvador Fuentes Jr](https://github.com/fuentesjr) and [Alex Rothenberg](https://github.com/alexrothenberg)
1644
-
1645
- * Rack support. Requests can be stubbed to respond with a Rack app i.e.
1646
-
1647
- class MyRackApp
1648
- def self.call(env)
1649
- [200, {}, ["Hello"]]
1650
- end
1651
- end
1652
-
1653
- stub_request(:get, "www.example.com").to_rack(MyRackApp)
1654
-
1655
- RestClient.get("www.example.com") # ===> "Hello"
1656
-
1657
-
1658
- Thanks to [Jay Adkisson](https://github.com/jayferd)
1659
-
1660
- * Added support for selective disabling and enabling of http lib adapters
1661
-
1662
- WebMock.disable! #disable WebMock (all adapters)
1663
- WebMock.disable!(:except => [:net_http]) #disable WebMock for all libs except Net::HTTP
1664
- WebMock.enable! #enable WebMock (all adapters)
1665
- WebMock.enable!(:except => [:patron]) #enable WebMock for all libs except Patron
1666
-
1667
- * The error message on an unstubbed request shows a code snippet with body as a hash when it was in url encoded form.
1668
-
1669
- > RestClient.post('www.example.com', "data[a]=1&data[b]=2", :content_type => 'application/x-www-form-urlencoded')
1670
-
1671
- WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled....
1672
-
1673
- You can stub this request with the following snippet:
1674
-
1675
- stub_request(:post, "http://www.example.com/").
1676
- with(:body => {"data"=>{"a"=>"1", "b"=>"2"}},
1677
- :headers => { 'Content-Type'=>'application/x-www-form-urlencoded' }).
1678
- to_return(:status => 200, :body => "", :headers => {})
1679
-
1680
- Thanks to [Alex Rothenberg](https://github.com/alexrothenberg)
1681
-
1682
- * The error message on an unstubbed request shows currently registered request stubs.
1683
-
1684
- > stub_request(:get, "www.example.net")
1685
- > stub_request(:get, "www.example.org")
1686
- > RestClient.get("www.example.com")
1687
- WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled....
1688
-
1689
- You can stub this request with the following snippet:
1690
-
1691
- stub_request(:get, "http://www.example.com/").
1692
- to_return(:status => 200, :body => "", :headers => {})
1693
-
1694
- registered request stubs:
1695
-
1696
- stub_request(:get, "http://www.example.net/")
1697
- stub_request(:get, "http://www.example.org/")
1698
-
1699
- Thanks to [Lin Jen-Shin](https://github.com/godfat) for suggesting this feature.
1700
-
1701
- * Fixed problem with matching requests with json body, when json strings have date format. Thanks to [Joakim Ekberg](https://github.com/kalasjocke) for reporting this issue.
1702
-
1703
- * WebMock now attempts to require each http library before monkey patching it. This is to avoid problem when http library is required after WebMock is required. Thanks to [Myron Marston](https://github.com/myronmarston) for suggesting this change.
1704
-
1705
- * External requests can be disabled while allowing selected ports on selected hosts
1706
-
1707
- WebMock.disable_net_connect!(:allow => "www.example.com:8080")
1708
- RestClient.get("www.example.com:80") # ===> Failure
1709
- RestClient.get("www.example.com:8080") # ===> Allowed.
1710
-
1711
- Thanks to [Zach Dennis](https://github.com/zdennis)
1712
-
1713
- * Fixed syntax error in README examples, showing the ways of setting request expectations. Thanks to [Nikita Fedyashev](https://github.com/nfedyashev)
1714
-
1715
-
1716
- **Many thanks to WebMock co-maintainer [James Conroy-Finn](https://github.com/jcf) who did a great job maintaining WebMock on his own for the last couple of months.**
1717
-
1718
- ## 1.6.4
1719
-
1720
- This is a quick slip release to regenerate the gemspec. Apparently
1721
- jeweler inserts dependencies twice if you use the `gemspec` method in
1722
- your Gemfile and declare gem dependencies in your gemspec.
1723
-
1724
- https://github.com/technicalpickles/jeweler/issues/154
1725
-
1726
- josevalim:
1727
-
1728
- > This just bit me. I just released a gem with the wrong dependencies
1729
- > because I have updated jeweler. This should have been opt-in,
1730
- > otherwise a bunch of people using jeweler are going to release gems
1731
- > with the wrong dependencies because you are automatically importing
1732
- > from the Gemfile.
1733
-
1734
- ## 1.6.3
1735
-
1736
- * Update the dependency on addressable to get around an issue in v2.2.5.
1737
- Thanks to [Peter Higgins](https://github.com/phiggins).
1738
-
1739
- * Add support for matching parameter values using a regular expression
1740
- as well as a string. Thanks to [Oleg M Prozorov](https://github.com/oleg).
1741
-
1742
- * Fix integration with httpclient as the internal API has changed.
1743
- Thanks to [Frank Prößdorf](https://github.com/endor).
1744
-
1745
- * Ensure Curl::Easy#content_type is always set. Thanks to [Peter
1746
- Higgins](https://github.com/phiggins).
1747
-
1748
- * Fix bug with em-http-request adapter stubbing responses that have a
1749
- chunked transfer encoding. Thanks to [Myron
1750
- Marston](https://github.com/myronmarston).
1751
-
1752
- * Fix a load of spec failures with Patron, httpclient, and specs that
1753
- depended on the behaviour of example.com. Thanks to [Alex
1754
- Grigorovich](https://github.com/grig).
1755
-
1756
- ## 1.6.2
1757
-
1758
- * Em-http-request adapter sets `last_effective_url` property. Thanks to [Sam Stokes](https://github.com/samstokes).
1759
-
1760
- * Curb adapter supports `Curb::Easy#http_post` and `Curb::Easy#http_put` without arguments (by setting `post_body` or `put_data` beforehand). Thanks to [Eugene Bolshakov](https://github.com/eugenebolshakov)
1761
-
1762
- ## 1.6.1
1763
-
1764
- * Fixed issue with `webmock/rspec` which didn't load correctly if `rspec/core` was already required but `rspec/expectations` not.
1765
-
1766
- ## 1.6.0
1767
-
1768
- * Simplified integration with Test::Unit, RSpec and Cucumber. Now only a single file has to be required i.e.
1769
-
1770
- require 'webmock/test_unit'
1771
- require 'webmock/rspec'
1772
- require 'webmock/cucumber'
1773
-
1774
- * The error message on unstubbed request now contains code snippet which can be used to stub this request. Thanks to Martyn Loughran for suggesting this feature.
1775
-
1776
- * The expectation failure message now contains a list of made requests. Thanks to Martyn Loughran for suggesting this feature.
1777
-
1778
- * Added `WebMock.print_executed_requests` method which can be useful to find out what requests were made until a given point.
1779
-
1780
- * em-http-request adapter is now activated by replacing EventMachine::HttpRequest constant, instead of monkeypatching the original class.
1781
-
1782
- This technique is borrowed from em-http-request native mocking module. It allows switching WebMock adapter on an off, and using it interchangeably with em-http-request native mocking i.e:
1783
-
1784
- EventMachine::WebMockHttpRequest.activate!
1785
- EventMachine::WebMockHttpRequest.deactivate!
1786
-
1787
- Thanks to Martyn Loughran for suggesting this feature.
1788
-
1789
- * `WebMock.reset_webmock` is deprecated in favour of new `WebMock.reset!`
1790
-
1791
- * Fixed integration with Cucumber. Previously documented example didn't work with new versions of Cucumber.
1792
-
1793
- * Fixed stubbing requests with body declared as a hash. Thanks to Erik Michaels-Ober for reporting the issue.
1794
-
1795
- * Fixed issue with em-http-request adapter which didn't work when :query option value was passed as a string, not a hash. Thanks to Chee Yeo for reporting the issue.
1796
-
1797
- * Fixed problem with assert_requested which didn't work if used outside rspec or test/unit
1798
-
1799
- * Removed dependency on json gem
1800
-
1801
- ## 1.5.0
1802
-
1803
- * Support for dynamically evaluated raw responses recorded with `curl -is` <br/>
1804
- i.e.
1805
-
1806
- `curl -is www.example.com > /tmp/www.example.com.txt`
1807
- stub_request(:get, "www.example.com").to_return(lambda { |request| File.new("/tmp/#{request.uri.host.to_s}.txt" }))
1808
-
1809
- * `:net_http_connect_on_start` option can be passed to `WebMock.allow_net_connect!` and `WebMock.disable_net_connect!` methods, i.e.
1810
-
1811
- WebMock.allow_net_connect!(:net_http_connect_on_start => true)
1812
-
1813
- This forces WebMock Net::HTTP adapter to always connect on `Net::HTTP.start`. Check 'Connecting on Net::HTTP.start' in README for more information.
1814
-
1815
- Thanks to Alastair Brunton for reporting the issue and for fix suggestions.
1816
-
1817
- * Fixed an issue where Patron spec tried to remove system temporary directory.
1818
- Thanks to Hans de Graaff
1819
-
1820
- * WebMock specs now use RSpec 2
1821
-
1822
- * `rake spec NO_CONNECTION=true` can now be used to only run WebMock specs which do not make real network connections
1823
-
1824
- ## 1.4.0
1825
-
1826
- * Curb support!!! Thanks to the awesome work of Pete Higgins!
1827
-
1828
- * `include WebMock` is now deprecated to avoid method and constant name conflicts. Please `include WebMock::API` instead.
1829
-
1830
- * `WebMock::API#request` is renamed to `WebMock::API#a_request` to prevent method name conflicts with i.e. Rails controller specs.
1831
- WebMock.request is still available.
1832
-
1833
- * Deprecated `WebMock#request`, `WebMock#allow_net_connect!`, `WebMock#net_connect_allowed?`, `WebMock#registered_request?`, `WebMock#reset_callbacks`, `WebMock#after_request` instance methods. These methods are still available, but only as WebMock class methods.
1834
-
1835
- * Removed `WebMock.response_for_request` and `WebMock.assertion_failure` which were only used internally and were not documented.
1836
-
1837
- * :allow_localhost => true' now permits 0.0.0.0 in addition to 127.0.0.1 and 'localhost'. Thanks to Myron Marston and Mike Gehard for suggesting this.
1838
-
1839
- * Fixed issue with both RSpec 1.x and 2.x being available.
1840
-
1841
- WebMock now tries to use already loaded version of RSpec (1.x or 2.x). Previously it was loading RSpec 2.0 if available, even if RSpec 1.3 was already loaded.
1842
-
1843
- Thanks to Hans de Graaff for reporting this.
1844
-
1845
- * Changed runtime dependency on Addressable version 2.2.2 which fixes handling of percent-escaped '+'
1846
-
1847
- ## 1.3.5
1848
-
1849
- * External requests can be disabled while allowing selected hosts. Thanks to Charles Li and Ryan Bigg
1850
-
1851
- This feature was available before only for localhost with `:allow_localhost => true`
1852
-
1853
- WebMock.disable_net_connect!(:allow => "www.example.org")
1854
-
1855
- Net::HTTP.get('www.something.com', '/') # ===> Failure
1856
-
1857
- Net::HTTP.get('www.example.org', '/') # ===> Allowed.
1858
-
1859
- * Fixed Net::HTTP adapter so that it preserves the original behavior of Net::HTTP.
1860
-
1861
- When making a request with a block that calls #read_body on the request,
1862
- Net::HTTP causes the body to be set to a Net::ReadAdapter, but WebMock was causing the body to be set to a string.
1863
-
1864
- ## 1.3.4
1865
-
1866
- * Fixed Net::HTTP adapter to handle cases where a block with `read_body` call is passed to `request`.
1867
- This fixes compatibility with `open-uri`. Thanks to Mark Evans for reporting the issue.
1868
-
1869
- ## 1.3.3
1870
-
1871
- * Fixed handling of multiple values for the same response header for Net::HTTP. Thanks to Myron Marston for reporting the issue.
1872
-
1873
- ## 1.3.2
1874
-
1875
- * Fixed compatibility with EM-HTTP-Request >= 0.2.9. Thanks to Myron Marston for reporting the issue.
1876
-
1877
- ## 1.3.1
1878
-
1879
- * The less hacky way to get the stream behaviour working for em-http-request. Thanks to Martyn Loughran
1880
-
1881
- * Fixed issues where Net::HTTP was not accepting valid nil response body. Thanks to Muness Alrubaie
1882
-
1883
- ## 1.3.0
1884
-
1885
- * Added support for [em-http-request](http://github.com/igrigorik/em-http-request)
1886
-
1887
- * Matching query params using a hash
1888
-
1889
- stub_http_request(:get, "www.example.com").with(:query => {"a" => ["b", "c"]})
1890
-
1891
- RestClient.get("http://www.example.com/?a[]=b&a[]=c") # ===> Success
1892
-
1893
- request(:get, "www.example.com").with(:query => {"a" => ["b", "c"]}).should have_been_made # ===> Success
1894
-
1895
- * Matching request body against a hash. Body can be URL-Encoded, JSON or XML.
1896
-
1897
- (Thanks to Steve Tooke for the idea and a solution for url-encoded bodies)
1898
-
1899
- stub_http_request(:post, "www.example.com").
1900
- with(:body => {:data => {:a => '1', :b => 'five'}})
1901
-
1902
- RestClient.post('www.example.com', "data[a]=1&data[b]=five",
1903
- :content_type => 'application/x-www-form-urlencoded') # ===> Success
1904
-
1905
- RestClient.post('www.example.com', '{"data":{"a":"1","b":"five"}}',
1906
- :content_type => 'application/json') # ===> Success
1907
-
1908
- RestClient.post('www.example.com', '<data a="1" b="five" />',
1909
- :content_type => 'application/xml' ) # ===> Success
1910
-
1911
- request(:post, "www.example.com").
1912
- with(:body => {:data => {:a => '1', :b => 'five'}},
1913
- :headers => 'Content-Type' => 'application/json').should have_been_made # ===> Success
1914
-
1915
- * Request callbacks (Thanks to Myron Marston for all suggestions)
1916
-
1917
- WebMock can now invoke callbacks for stubbed or real requests:
1918
-
1919
- WebMock.after_request do |request_signature, response|
1920
- puts "Request #{request_signature} was made and #{response} was returned"
1921
- end
1922
-
1923
- invoke callbacks for real requests only and except requests made with Patron client
1924
-
1925
- WebMock.after_request(:except => [:patron], :real_requests_only => true) do |request_signature, response|
1926
- puts "Request #{request_signature} was made and #{response} was returned"
1927
- end
1928
-
1929
- * `to_raise()` now accepts an exception instance or a string as argument in addition to an exception class
1930
-
1931
- stub_request(:any, 'www.example.net').to_raise(StandardError.new("some error"))
1932
-
1933
- stub_request(:any, 'www.example.net').to_raise("some error")
1934
-
1935
- * Matching requests based on a URI is 30% faster
1936
-
1937
- * Fixed constant namespace issues in HTTPClient adapter. Thanks to Nathaniel Bibler for submitting a patch.
1938
-
1939
- ## 1.2.2
1940
-
1941
- * Fixed problem where ArgumentError was raised if query params were made up of an array e.g. data[]=a&data[]=b. Thanks to Steve Tooke
1942
-
1943
- ## 1.2.1
1944
-
1945
- * Changed license from GPL to MIT
1946
-
1947
- * Fixed gemspec file. Thanks to Razic
1948
-
1949
- ## 1.2.0
1950
-
1951
- * RSpec 2 compatibility. Thanks to Sam Phillips!
1952
-
1953
- * :allow_localhost => true' now permits 127.0.0.1 as well as 'localhost'. Thanks to Mack Earnhardt
1954
-
1955
- * Request URI matching in now 2x faster!
1956
-
1957
-
1958
- ## 1.1.0
1959
-
1960
- * [VCR](http://github.com/myronmarston/vcr/) compatibility. Many thanks to Myron Marston for all suggestions.
1961
-
1962
- * Support for stubbing requests and returning responses with multiple headers with the same name. i.e multiple Accept headers.
1963
-
1964
- stub_http_request(:get, 'www.example.com').
1965
- with(:headers => {'Accept' => ['image/png', 'image/jpeg']}).
1966
- to_return(:body => 'abc')
1967
- RestClient.get('www.example.com',
1968
- {"Accept" => ['image/png', 'image/jpeg']}) # ===> "abc\n"
1969
-
1970
- * When real net connections are disabled and unstubbed request is made, WebMock throws WebMock::NetConnectNotAllowedError instead of assertion error or StandardError.
1971
-
1972
- * Added WebMock.version()
1973
-
1974
-
1975
- ## 1.0.0
1976
-
1977
- * Added support for [Patron](http://toland.github.com/patron/)
1978
-
1979
- * Responses dynamically evaluated from block (idea and implementation by Tom Ward)
1980
-
1981
- stub_request(:any, 'www.example.net').
1982
- to_return { |request| {:body => request.body} }
1983
-
1984
- RestClient.post('www.example.net', 'abc') # ===> "abc\n"
1985
-
1986
- * Responses dynamically evaluated from lambda (idea and implementation by Tom Ward)
1987
-
1988
- stub_request(:any, 'www.example.net').
1989
- to_return(lambda { |request| {:body => request.body} })
1990
-
1991
- RestClient.post('www.example.net', 'abc') # ===> "abc\n"
1992
-
1993
- * Response with custom status message
1994
-
1995
- stub_request(:any, "www.example.com").to_return(:status => [500, "Internal Server Error"])
1996
-
1997
- req = Net::HTTP::Get.new("/")
1998
- Net::HTTP.start("www.example.com") { |http| http.request(req) }.message # ===> "Internal Server Error"
1999
-
2000
- * Raising timeout errors (suggested by Jeffrey Jones) (compatibility with Ruby 1.8.6 by Mack Earnhardt)
2001
-
2002
- stub_request(:any, 'www.example.net').to_timeout
2003
-
2004
- RestClient.post('www.example.net', 'abc') # ===> RestClient::RequestTimeout
2005
-
2006
- * External requests can be disabled while allowing localhost (idea and implementation by Mack Earnhardt)
2007
-
2008
- WebMock.disable_net_connect!(:allow_localhost => true)
2009
-
2010
- Net::HTTP.get('www.something.com', '/') # ===> Failure
2011
-
2012
- Net::HTTP.get('localhost:9887', '/') # ===> Allowed. Perhaps to Selenium?
2013
-
2014
-
2015
- ### Bug fixes
2016
-
2017
- * Fixed issue where Net::HTTP adapter didn't work for requests with body responding to read (reported by Tekin Suleyman)
2018
- * Fixed issue where request stub with headers declared as nil was matching requests with non empty headers
2019
-
2020
- ## 0.9.1
2021
-
2022
- * Fixed issue where response status code was not read from raw (curl -is) responses
2023
-
2024
- ## 0.9.0
2025
-
2026
- * Matching requests against provided block (by Sergio Gil)
2027
-
2028
- stub_request(:post, "www.example.com").with { |request| request.body == "abc" }.to_return(:body => "def")
2029
- RestClient.post('www.example.com', 'abc') # ===> "def\n"
2030
- request(:post, "www.example.com").with { |req| req.body == "abc" }.should have_been_made
2031
- #or
2032
- assert_requested(:post, "www.example.com") { |req| req.body == "abc" }
2033
-
2034
- * Matching request body against regular expressions (suggested by Ben Pickles)
2035
-
2036
- stub_request(:post, "www.example.com").with(:body => /^.*world$/).to_return(:body => "abc")
2037
- RestClient.post('www.example.com', 'hello world') # ===> "abc\n"
2038
-
2039
- * Matching request headers against regular expressions (suggested by Ben Pickles)
2040
-
2041
- stub_request(:post, "www.example.com").with(:headers => {"Content-Type" => /image\/.+/}).to_return(:body => "abc")
2042
- RestClient.post('www.example.com', '', {'Content-Type' => 'image/png'}) # ===> "abc\n"
2043
-
2044
- * Replaying raw responses recorded with `curl -is`
2045
-
2046
- `curl -is www.example.com > /tmp/example_curl_-is_output.txt`
2047
- raw_response_file = File.new("/tmp/example_curl_-is_output.txt")
2048
-
2049
- from file
2050
-
2051
- stub_request(:get, "www.example.com").to_return(raw_response_file)
2052
-
2053
- or string
2054
-
2055
- stub_request(:get, "www.example.com").to_return(raw_response_file.read)
2056
-
2057
- * Multiple responses for repeated requests
2058
-
2059
- stub_request(:get, "www.example.com").to_return({:body => "abc"}, {:body => "def"})
2060
- Net::HTTP.get('www.example.com', '/') # ===> "abc\n"
2061
- Net::HTTP.get('www.example.com', '/') # ===> "def\n"
2062
-
2063
- * Multiple responses using chained `to_return()` or `to_raise()` declarations
2064
-
2065
- stub_request(:get, "www.example.com").
2066
- to_return({:body => "abc"}).then. #then() just is a syntactic sugar
2067
- to_return({:body => "def"}).then.
2068
- to_raise(MyException)
2069
- Net::HTTP.get('www.example.com', '/') # ===> "abc\n"
2070
- Net::HTTP.get('www.example.com', '/') # ===> "def\n"
2071
- Net::HTTP.get('www.example.com', '/') # ===> MyException raised
2072
-
2073
- * Specifying number of times given response should be returned
2074
-
2075
- stub_request(:get, "www.example.com").
2076
- to_return({:body => "abc"}).times(2).then.
2077
- to_return({:body => "def"})
2078
-
2079
- Net::HTTP.get('www.example.com', '/') # ===> "abc\n"
2080
- Net::HTTP.get('www.example.com', '/') # ===> "abc\n"
2081
- Net::HTTP.get('www.example.com', '/') # ===> "def\n"
2082
-
2083
- * Added support for `Net::HTTP::Post#body_stream`
2084
-
2085
- This fixes compatibility with new versions of RestClient
2086
-
2087
- * WebMock doesn't suppress default request headers added by http clients anymore.
2088
-
2089
- i.e. Net::HTTP adds `'Accept'=>'*/*'` to all requests by default
2090
-
2091
-
2092
-
2093
- ## 0.8.2
2094
-
2095
- * Fixed issue where WebMock was not closing IO object passed as response body after reading it.
2096
- * Ruby 1.9.2 compat: Use `File#expand_path` for require path because "." is not be included in LOAD_PATH since Ruby 1.9.2
2097
-
2098
-
2099
- ## 0.8.1
2100
-
2101
- * Fixed HTTPClient adapter compatibility with Ruby 1.8.6 (reported by Piotr Usewicz)
2102
- * Net:HTTP adapter now handles request body assigned as Net::HTTP::Post#body attribute (fixed by Mack Earnhardt)
2103
- * Fixed issue where requests were not matching stubs with Accept header set.(reported by Piotr Usewicz)
2104
- * Fixed compatibility with Ruby 1.9.1, 1.9.2 and JRuby 1.3.1 (reported by Diego E. “Flameeyes” Pettenò)
2105
- * Fixed issue with response body declared as IO object and multiple requests (reported by Niels Meersschaert)
2106
- * Fixed "undefined method `assertion_failure'" error (reported by Nick Plante)
2107
-
2108
-
2109
- ## 0.8.0
2110
-
2111
- * Support for HTTPClient (sync and async requests)
2112
- * Support for dynamic responses. Response body and headers can be now declared as lambda.
2113
- (Thanks to Ivan Vega ( @ivanyv ) for suggesting this feature)
2114
- * Support for stubbing and expecting requests with empty body
2115
- * Executing non-stubbed request leads to failed expectation instead of error
2116
-
2117
-
2118
- ### Bug fixes
2119
-
2120
- * Basic authentication now works correctly
2121
- * Fixed problem where WebMock didn't call a block with the response when block was provided
2122
- * Fixed problem where uris with single slash were not matching uris without path provided
2123
-
2124
-
2125
- ## 0.7.3
2126
-
2127
- * Clarified documentation
2128
- * Fixed some issues with loading of Webmock classes
2129
- * Test::Unit and RSpec adapters have to be required separately
2130
-
2131
-
2132
- ## 0.7.2
2133
-
2134
- * Added support for matching escaped and non escaped URLs