study_line 0.1.6 → 0.2.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 (2046) hide show
  1. checksums.yaml +4 -4
  2. data/.env +1 -0
  3. data/lib/study_line/version.rb +1 -1
  4. data/lib/study_line.rb +25 -9
  5. data/study_line.gemspec +16 -28
  6. data/vendor/bundle/ruby/3.2.0/bin/dotenv +29 -0
  7. data/vendor/bundle/ruby/3.2.0/bin/httparty +29 -0
  8. data/vendor/bundle/ruby/3.2.0/cache/ast-2.4.2.gem +0 -0
  9. data/vendor/bundle/ruby/3.2.0/cache/diff-lcs-1.5.0.gem +0 -0
  10. data/vendor/bundle/ruby/3.2.0/cache/dotenv-2.8.1.gem +0 -0
  11. data/vendor/bundle/ruby/3.2.0/cache/httparty-0.21.0.gem +0 -0
  12. data/vendor/bundle/ruby/3.2.0/cache/json-2.7.1.gem +0 -0
  13. data/vendor/bundle/ruby/3.2.0/cache/language_server-protocol-3.17.0.3.gem +0 -0
  14. data/vendor/bundle/ruby/3.2.0/cache/mini_mime-1.1.5.gem +0 -0
  15. data/vendor/bundle/ruby/3.2.0/cache/multi_xml-0.6.0.gem +0 -0
  16. data/vendor/bundle/ruby/3.2.0/cache/parallel-1.24.0.gem +0 -0
  17. data/vendor/bundle/ruby/3.2.0/cache/parser-3.3.0.4.gem +0 -0
  18. data/vendor/bundle/ruby/3.2.0/cache/racc-1.7.3.gem +0 -0
  19. data/vendor/bundle/ruby/3.2.0/cache/rainbow-3.1.1.gem +0 -0
  20. data/vendor/bundle/ruby/3.2.0/cache/rake-13.1.0.gem +0 -0
  21. data/vendor/bundle/ruby/3.2.0/cache/regexp_parser-2.9.0.gem +0 -0
  22. data/vendor/bundle/ruby/3.2.0/cache/rexml-3.2.6.gem +0 -0
  23. data/vendor/bundle/ruby/3.2.0/cache/rspec-3.12.0.gem +0 -0
  24. data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.12.2.gem +0 -0
  25. data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.12.3.gem +0 -0
  26. data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.12.6.gem +0 -0
  27. data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.12.1.gem +0 -0
  28. data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.60.0.gem +0 -0
  29. data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.30.0.gem +0 -0
  30. data/vendor/bundle/ruby/3.2.0/cache/ruby-progressbar-1.13.0.gem +0 -0
  31. data/vendor/bundle/ruby/3.2.0/cache/unicode-display_width-2.5.0.gem +0 -0
  32. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/gem_make.out +16 -0
  33. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/json/ext/generator.bundle +0 -0
  34. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/json/ext/parser.bundle +0 -0
  35. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/mkmf.log +113 -0
  36. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.3/gem_make.out +20 -0
  37. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.3/racc/cparse.bundle +0 -0
  38. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/LICENSE +22 -0
  39. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/README.md +266 -0
  40. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/bin/dotenv +4 -0
  41. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb +57 -0
  42. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/environment.rb +28 -0
  43. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/load.rb +2 -0
  44. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/missing_keys.rb +10 -0
  45. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/parser.rb +109 -0
  46. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/substitutions/command.rb +41 -0
  47. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/substitutions/variable.rb +43 -0
  48. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/tasks.rb +7 -0
  49. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/template.rb +26 -0
  50. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/version.rb +3 -0
  51. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv.rb +86 -0
  52. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.editorconfig +18 -0
  53. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.github/workflows/ci.yml +26 -0
  54. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.gitignore +14 -0
  55. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.rubocop.yml +92 -0
  56. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.rubocop_todo.yml +124 -0
  57. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/CONTRIBUTING.md +23 -0
  58. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Changelog.md +557 -0
  59. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Gemfile +26 -0
  60. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Guardfile +17 -0
  61. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/MIT-LICENSE +20 -0
  62. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/README.md +79 -0
  63. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Rakefile +10 -0
  64. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/bin/httparty +123 -0
  65. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/cucumber.yml +1 -0
  66. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/docs/README.md +191 -0
  67. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/README.md +89 -0
  68. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/aaws.rb +36 -0
  69. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/basic.rb +28 -0
  70. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/body_stream.rb +14 -0
  71. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/crack.rb +19 -0
  72. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/custom_parsers.rb +68 -0
  73. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/delicious.rb +37 -0
  74. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/google.rb +16 -0
  75. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/headers_and_user_agents.rb +10 -0
  76. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/idn.rb +10 -0
  77. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/logging.rb +36 -0
  78. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/microsoft_graph.rb +52 -0
  79. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/multipart.rb +22 -0
  80. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/nokogiri_html_parser.rb +19 -0
  81. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/peer_cert.rb +9 -0
  82. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/rescue_json.rb +17 -0
  83. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/rubyurl.rb +14 -0
  84. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/stackexchange.rb +24 -0
  85. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/stream_download.rb +26 -0
  86. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/tripit_sign_in.rb +44 -0
  87. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/twitter.rb +31 -0
  88. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/whoismyrep.rb +10 -0
  89. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/httparty.gemspec +30 -0
  90. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/connection_adapter.rb +256 -0
  91. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/cookie_hash.rb +23 -0
  92. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/decompressor.rb +102 -0
  93. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/exceptions.rb +35 -0
  94. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/hash_conversions.rb +71 -0
  95. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/headers_processor.rb +32 -0
  96. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/apache_formatter.rb +47 -0
  97. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/curl_formatter.rb +93 -0
  98. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/logger.rb +30 -0
  99. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/logstash_formatter.rb +61 -0
  100. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/module_inheritable_attributes.rb +58 -0
  101. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/net_digest_auth.rb +135 -0
  102. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/parser.rb +154 -0
  103. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request/body.rb +105 -0
  104. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request/multipart_boundary.rb +13 -0
  105. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request.rb +418 -0
  106. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response/headers.rb +35 -0
  107. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response.rb +156 -0
  108. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response_fragment.rb +21 -0
  109. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/text_encoder.rb +72 -0
  110. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/utils.rb +13 -0
  111. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/version.rb +5 -0
  112. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty.rb +686 -0
  113. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/script/release +42 -0
  114. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/website/css/common.css +47 -0
  115. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/website/index.html +73 -0
  116. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/CHANGES.md +503 -0
  117. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/README.md +425 -0
  118. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/Makefile +205 -0
  119. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/fbuffer/fbuffer.h +187 -0
  120. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/Makefile +271 -0
  121. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/depend +1 -0
  122. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/extconf.rb +4 -0
  123. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/generator.c +1673 -0
  124. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/generator.h +177 -0
  125. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/Makefile +271 -0
  126. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/depend +1 -0
  127. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/extconf.rb +32 -0
  128. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.c +2211 -0
  129. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.h +96 -0
  130. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.rl +971 -0
  131. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/extconf.rb +3 -0
  132. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/json.gemspec +68 -0
  133. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/bigdecimal.rb +58 -0
  134. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/complex.rb +51 -0
  135. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/core.rb +12 -0
  136. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/date.rb +54 -0
  137. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/date_time.rb +67 -0
  138. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/exception.rb +49 -0
  139. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/ostruct.rb +51 -0
  140. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/range.rb +54 -0
  141. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/rational.rb +49 -0
  142. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/regexp.rb +48 -0
  143. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/set.rb +48 -0
  144. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/struct.rb +52 -0
  145. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/symbol.rb +48 -0
  146. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/time.rb +59 -0
  147. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/common.rb +697 -0
  148. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext/generator.bundle +0 -0
  149. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext/parser.bundle +0 -0
  150. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext.rb +15 -0
  151. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/generic_object.rb +71 -0
  152. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure/generator.rb +513 -0
  153. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure/parser.rb +337 -0
  154. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure.rb +15 -0
  155. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/version.rb +9 -0
  156. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json.rb +592 -0
  157. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.github/workflows/ci.yml +51 -0
  158. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.github/workflows/db.yml +26 -0
  159. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.gitignore +9 -0
  160. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.rubocop.yml +5 -0
  161. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/CHANGELOG +65 -0
  162. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/CODE_OF_CONDUCT.md +74 -0
  163. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/Gemfile +9 -0
  164. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/LICENSE.txt +21 -0
  165. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/README.md +114 -0
  166. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/Rakefile +97 -0
  167. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb +51 -0
  168. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin/console +15 -0
  169. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin/db_pull_request +20 -0
  170. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/db/content_type_mime.db +880 -0
  171. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/db/ext_mime.db +1201 -0
  172. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/mini_mime/version.rb +4 -0
  173. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/mini_mime.rb +186 -0
  174. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/mini_mime.gemspec +31 -0
  175. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/.yardopts +8 -0
  176. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/CHANGELOG.md +93 -0
  177. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/CONTRIBUTING.md +51 -0
  178. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/LICENSE.md +20 -0
  179. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/README.md +95 -0
  180. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml.rb +33 -0
  181. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml2_parser.rb +72 -0
  182. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/nokogiri.rb +35 -0
  183. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/oga.rb +73 -0
  184. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/ox.rb +91 -0
  185. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/rexml.rb +113 -0
  186. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/version.rb +45 -0
  187. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml.rb +305 -0
  188. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/multi_xml.gemspec +19 -0
  189. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.24.0/lib/parallel/version.rb +4 -0
  190. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.24.0/lib/parallel.rb +676 -0
  191. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/all.rb +17 -0
  192. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/builders/default.rb +2338 -0
  193. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/current.rb +137 -0
  194. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer/literal.rb +284 -0
  195. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer-F0.rb +12922 -0
  196. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer-F1.rb +14875 -0
  197. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/macruby.rb +9634 -0
  198. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/messages.rb +125 -0
  199. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby18.rb +9272 -0
  200. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby19.rb +9558 -0
  201. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby20.rb +10229 -0
  202. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby21.rb +10203 -0
  203. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby22.rb +10302 -0
  204. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby23.rb +10322 -0
  205. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby24.rb +10454 -0
  206. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby25.rb +10374 -0
  207. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby26.rb +10352 -0
  208. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby27.rb +11947 -0
  209. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby30.rb +12243 -0
  210. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby31.rb +12716 -0
  211. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby32.rb +12704 -0
  212. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby33.rb +12589 -0
  213. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby34.rb +12589 -0
  214. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/rubymotion.rb +9515 -0
  215. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/runner.rb +298 -0
  216. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/static_environment.rb +99 -0
  217. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/version.rb +5 -0
  218. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/README.ja.rdoc +66 -0
  219. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/README.rdoc +60 -0
  220. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/TODO +5 -0
  221. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/bin/racc +326 -0
  222. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/en/grammar.en.rdoc +226 -0
  223. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/en/grammar2.en.rdoc +219 -0
  224. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/command.ja.html +99 -0
  225. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/grammar.ja.rdoc +348 -0
  226. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/parser.ja.rdoc +125 -0
  227. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/Makefile +270 -0
  228. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/cparse.c +840 -0
  229. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/extconf.rb +8 -0
  230. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/cparse.bundle +0 -0
  231. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/info.rb +18 -0
  232. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parser-text.rb +648 -0
  233. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parser.rb +634 -0
  234. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parserfilegenerator.rb +473 -0
  235. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/Gemfile +15 -0
  236. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/LICENSE +22 -0
  237. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/character_set.rb +23 -0
  238. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/posix_class.rb +11 -0
  239. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/unicode_property.rb +119 -0
  240. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/methods/negative.rb +20 -0
  241. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression.rb +37 -0
  242. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/parser.rb +596 -0
  243. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/properties/long.csv +651 -0
  244. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/properties/short.csv +249 -0
  245. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/scanner.rl +828 -0
  246. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner.rb +2514 -0
  247. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/syntax/token/unicode_property.rb +751 -0
  248. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/version.rb +5 -0
  249. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/LICENSE.txt +20 -0
  250. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/README.md +252 -0
  251. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/config/default.yml +5672 -0
  252. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config.rb +328 -0
  253. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_loader.rb +258 -0
  254. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion.rb +111 -0
  255. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_validator.rb +270 -0
  256. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/base.rb +492 -0
  257. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  258. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/exclude_limit.rb +26 -0
  259. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
  260. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs/method_name_equal.rb +49 -0
  261. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +53 -0
  262. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +147 -0
  263. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs.rb +32 -0
  264. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/argument_alignment.rb +158 -0
  265. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/end_alignment.rb +208 -0
  266. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/extra_spacing.rb +185 -0
  267. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/first_array_element_indentation.rb +195 -0
  268. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  269. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +311 -0
  270. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/heredoc_indentation.rb +165 -0
  271. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/line_continuation_leading_space.rb +144 -0
  272. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/redundant_line_break.rb +149 -0
  273. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +211 -0
  274. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/single_line_block_chain.rb +69 -0
  275. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/space_around_operators.rb +290 -0
  276. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/assignment_in_condition.rb +109 -0
  277. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +68 -0
  278. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
  279. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/debugger.rb +125 -0
  280. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/duplicate_methods.rb +268 -0
  281. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/erb_new_arguments.rb +161 -0
  282. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/float_comparison.rb +103 -0
  283. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/hash_compare_by_identity.rb +48 -0
  284. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +56 -0
  285. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +85 -0
  286. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/next_without_accumulator.rb +55 -0
  287. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/non_deterministic_require_order.rb +183 -0
  288. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/number_conversion.rb +201 -0
  289. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +150 -0
  290. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_with_index.rb +80 -0
  291. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_with_object.rb +79 -0
  292. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +104 -0
  293. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/self_assignment.rb +116 -0
  294. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/shadowed_argument.rb +177 -0
  295. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/symbol_conversion.rb +184 -0
  296. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/syntax.rb +46 -0
  297. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  298. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  299. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/useless_access_modifier.rb +295 -0
  300. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/useless_times.rb +114 -0
  301. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/void.rb +236 -0
  302. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/abc_size.rb +56 -0
  303. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/check_line_breakable.rb +227 -0
  304. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/configurable_formatting.rb +41 -0
  305. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/preceding_following_alignment.rb +181 -0
  306. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  307. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/block_forwarding.rb +133 -0
  308. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/constant_name.rb +83 -0
  309. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +295 -0
  310. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/registry.rb +315 -0
  311. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/security/open.rb +89 -0
  312. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/access_modifier_declarations.rb +225 -0
  313. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/accessor_grouping.rb +180 -0
  314. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/arguments_forwarding.rb +447 -0
  315. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/array_first_last.rb +64 -0
  316. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/auto_resource_cleanup.rb +55 -0
  317. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  318. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/case_like_if.rb +280 -0
  319. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/class_check.rb +55 -0
  320. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/collection_compact.rb +134 -0
  321. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/combinable_loops.rb +123 -0
  322. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/concat_array_literals.rb +95 -0
  323. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/conditional_assignment.rb +663 -0
  324. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/date_time.rb +94 -0
  325. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/each_for_simple_loop.rb +90 -0
  326. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/each_with_object.rb +139 -0
  327. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/empty_literal.rb +138 -0
  328. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/eval_with_location.rb +226 -0
  329. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/exact_regexp_match.rb +69 -0
  330. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/explicit_block_argument.rb +153 -0
  331. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/hash_each_methods.rb +196 -0
  332. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/hash_except.rb +189 -0
  333. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/identical_conditional_branches.rb +254 -0
  334. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/inverse_methods.rb +197 -0
  335. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/invertible_unless_condition.rb +155 -0
  336. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +137 -0
  337. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/map_to_hash.rb +81 -0
  338. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +241 -0
  339. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +246 -0
  340. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +123 -0
  341. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_def_parentheses.rb +180 -0
  342. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
  343. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/multiline_ternary_operator.rb +98 -0
  344. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/next.rb +233 -0
  345. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/numeric_literal_prefix.rb +119 -0
  346. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/operator_method_call.rb +73 -0
  347. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/parallel_assignment.rb +300 -0
  348. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/parentheses_around_condition.rb +136 -0
  349. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_argument.rb +104 -0
  350. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +133 -0
  351. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_each.rb +119 -0
  352. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_fetch_block.rb +121 -0
  353. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_line_continuation.rb +192 -0
  354. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_parentheses.rb +284 -0
  355. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_return.rb +183 -0
  356. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_self.rb +218 -0
  357. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_sort.rb +209 -0
  358. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_sort_by.rb +63 -0
  359. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_string_escape.rb +185 -0
  360. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/sample.rb +146 -0
  361. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/select_by_regexp.rb +163 -0
  362. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/self_assignment.rb +101 -0
  363. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/semicolon.rb +172 -0
  364. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/single_argument_dig.rb +69 -0
  365. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/slicing_with_range.rb +117 -0
  366. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/string_chars.rb +42 -0
  367. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/strip.rb +45 -0
  368. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/super_with_args_parentheses.rb +35 -0
  369. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/symbol_proc.rb +246 -0
  370. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/unpack_first.rb +59 -0
  371. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cops_documentation_generator.rb +339 -0
  372. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/ext/regexp_node.rb +92 -0
  373. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/disabled_config_formatter.rb +278 -0
  374. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/html_formatter.rb +133 -0
  375. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/json_formatter.rb +79 -0
  376. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter.rb +34 -0
  377. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/lsp/routes.rb +246 -0
  378. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/options.rb +633 -0
  379. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/result_cache.rb +240 -0
  380. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/rspec/shared_contexts.rb +183 -0
  381. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/rspec/support.rb +30 -0
  382. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/runner.rb +498 -0
  383. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/server/cache.rb +155 -0
  384. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/version.rb +102 -0
  385. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop.rb +771 -0
  386. data/vendor/bundle/ruby/3.2.0/specifications/ast-2.4.2.gemspec +2 -2
  387. data/vendor/bundle/ruby/3.2.0/specifications/diff-lcs-1.5.0.gemspec +2 -2
  388. data/vendor/bundle/ruby/3.2.0/specifications/dotenv-2.8.1.gemspec +28 -0
  389. data/vendor/bundle/ruby/3.2.0/specifications/httparty-0.21.0.gemspec +29 -0
  390. data/vendor/bundle/ruby/3.2.0/specifications/json-2.7.1.gemspec +0 -0
  391. data/vendor/bundle/ruby/3.2.0/specifications/language_server-protocol-3.17.0.3.gemspec +2 -2
  392. data/vendor/bundle/ruby/3.2.0/specifications/mini_mime-1.1.5.gemspec +30 -0
  393. data/vendor/bundle/ruby/3.2.0/specifications/multi_xml-0.6.0.gemspec +24 -0
  394. data/vendor/bundle/ruby/3.2.0/specifications/parallel-1.24.0.gemspec +21 -0
  395. data/vendor/bundle/ruby/3.2.0/specifications/parser-3.3.0.4.gemspec +37 -0
  396. data/vendor/bundle/ruby/3.2.0/specifications/racc-1.7.3.gemspec +27 -0
  397. data/vendor/bundle/ruby/3.2.0/specifications/rainbow-3.1.1.gemspec +2 -2
  398. data/vendor/bundle/ruby/3.2.0/specifications/rake-13.1.0.gemspec +2 -2
  399. data/vendor/bundle/ruby/3.2.0/specifications/regexp_parser-2.9.0.gemspec +22 -0
  400. data/vendor/bundle/ruby/3.2.0/specifications/rexml-3.2.6.gemspec +2 -2
  401. data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.12.0.gemspec +2 -2
  402. data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.12.2.gemspec +2 -2
  403. data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.12.3.gemspec +2 -2
  404. data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.12.6.gemspec +2 -2
  405. data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.12.1.gemspec +2 -2
  406. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.60.0.gemspec +39 -0
  407. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.30.0.gemspec +2 -2
  408. data/vendor/bundle/ruby/3.2.0/specifications/ruby-progressbar-1.13.0.gemspec +2 -2
  409. data/vendor/bundle/ruby/3.2.0/specifications/unicode-display_width-2.5.0.gemspec +2 -2
  410. metadata +1251 -1658
  411. data/.DS_Store +0 -0
  412. data/.gitignore +0 -11
  413. data/Gemfile +0 -13
  414. data/Gemfile.lock +0 -61
  415. data/bin/console +0 -11
  416. data/bin/stl +0 -5
  417. data/lib/.DS_Store +0 -0
  418. data/lib/study_line/.DS_Store +0 -0
  419. data/spec/spec_helper.rb +0 -15
  420. data/spec/study_line_spec.rb +0 -11
  421. data/vendor/bundle/ruby/3.2.0/bin/irb +0 -29
  422. data/vendor/bundle/ruby/3.2.0/bin/rdbg +0 -29
  423. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp +0 -29
  424. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp-check +0 -29
  425. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp-doctor +0 -29
  426. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/debug-1.8.0/debug/debug.bundle +0 -0
  427. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/debug-1.8.0/gem_make.out +0 -19
  428. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/gem_make.out +0 -51
  429. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/mkmf.log +0 -74
  430. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/prism/prism.bundle +0 -0
  431. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/gem.build_complete +0 -0
  432. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/gem_make.out +0 -30
  433. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/mkmf.log +0 -96
  434. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/psych.bundle +0 -0
  435. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/gem.build_complete +0 -0
  436. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/gem_make.out +0 -20
  437. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/mkmf.log +0 -57
  438. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/racc/cparse.bundle +0 -0
  439. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/gem.build_complete +0 -0
  440. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/gem_make.out +0 -18
  441. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/stringio.bundle +0 -0
  442. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/CONTRIBUTING.md +0 -573
  443. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/Gemfile +0 -9
  444. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/LICENSE.txt +0 -22
  445. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/README.md +0 -939
  446. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/Rakefile +0 -57
  447. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/TODO.md +0 -23
  448. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/debug.gemspec +0 -32
  449. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/exe/rdbg +0 -53
  450. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/Makefile +0 -270
  451. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/debug.c +0 -214
  452. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/debug_version.h +0 -1
  453. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/extconf.rb +0 -26
  454. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/iseq_collector.c +0 -91
  455. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/abbrev_command.rb +0 -77
  456. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/breakpoint.rb +0 -556
  457. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/client.rb +0 -262
  458. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/color.rb +0 -123
  459. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/config.rb +0 -564
  460. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/console.rb +0 -234
  461. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/dap_custom/traceInspector.rb +0 -336
  462. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/debug.bundle +0 -0
  463. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/frame_info.rb +0 -188
  464. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/local.rb +0 -115
  465. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/open.rb +0 -13
  466. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/open_nonstop.rb +0 -15
  467. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/prelude.rb +0 -50
  468. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server.rb +0 -523
  469. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server_cdp.rb +0 -1349
  470. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server_dap.rb +0 -1106
  471. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/session.rb +0 -2634
  472. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/source_repository.rb +0 -150
  473. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/start.rb +0 -5
  474. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/thread_client.rb +0 -1454
  475. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/tracer.rb +0 -241
  476. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/version.rb +0 -5
  477. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug.rb +0 -9
  478. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/misc/README.md.erb +0 -610
  479. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/.document +0 -4
  480. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/Gemfile +0 -19
  481. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/LICENSE.txt +0 -22
  482. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/README.md +0 -281
  483. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/Rakefile +0 -44
  484. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/bin/console +0 -6
  485. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/bin/setup +0 -6
  486. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/doc/irb/irb-tools.rd.ja +0 -184
  487. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/doc/irb/irb.rd.ja +0 -425
  488. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/exe/irb +0 -9
  489. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/irb.gemspec +0 -46
  490. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/backtrace.rb +0 -21
  491. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/break.rb +0 -21
  492. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/catch.rb +0 -21
  493. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/chws.rb +0 -36
  494. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/continue.rb +0 -17
  495. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/debug.rb +0 -80
  496. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/delete.rb +0 -17
  497. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/edit.rb +0 -60
  498. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/finish.rb +0 -17
  499. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/help.rb +0 -23
  500. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/info.rb +0 -21
  501. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/irb_info.rb +0 -33
  502. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/load.rb +0 -76
  503. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/ls.rb +0 -139
  504. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/measure.rb +0 -48
  505. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/next.rb +0 -17
  506. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/nop.rb +0 -53
  507. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/pushws.rb +0 -45
  508. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_cmds.rb +0 -53
  509. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_doc.rb +0 -48
  510. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_source.rb +0 -61
  511. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/step.rb +0 -17
  512. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/subirb.rb +0 -109
  513. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/whereami.rb +0 -25
  514. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/color.rb +0 -262
  515. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/color_printer.rb +0 -55
  516. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/completion.rb +0 -434
  517. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/context.rb +0 -586
  518. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/debug/ui.rb +0 -103
  519. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/debug.rb +0 -112
  520. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/easter-egg.rb +0 -138
  521. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/change-ws.rb +0 -39
  522. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/eval_history.rb +0 -149
  523. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/loader.rb +0 -127
  524. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/multi-irb.rb +0 -258
  525. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/tracer.rb +0 -78
  526. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/use-loader.rb +0 -69
  527. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/workspaces.rb +0 -60
  528. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/extend-command.rb +0 -354
  529. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/frame.rb +0 -80
  530. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/help.rb +0 -28
  531. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/history.rb +0 -76
  532. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/init.rb +0 -436
  533. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/input-method.rb +0 -463
  534. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/inspector.rb +0 -130
  535. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/error.rb +0 -62
  536. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/help-message +0 -51
  537. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/ja/error.rb +0 -63
  538. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/ja/help-message +0 -45
  539. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/locale.rb +0 -153
  540. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/nesting_parser.rb +0 -227
  541. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/notifier.rb +0 -230
  542. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/output-method.rb +0 -86
  543. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/pager.rb +0 -86
  544. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ruby-lex.rb +0 -474
  545. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ruby_logo.aa +0 -37
  546. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/source_finder.rb +0 -64
  547. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/statement.rb +0 -80
  548. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/version.rb +0 -11
  549. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/workspace.rb +0 -173
  550. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ws-for-case-2.rb +0 -9
  551. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/xmp.rb +0 -164
  552. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb.rb +0 -1093
  553. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/man/irb.1 +0 -250
  554. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.23.0/lib/parallel/version.rb +0 -4
  555. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.23.0/lib/parallel.rb +0 -652
  556. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/all.rb +0 -16
  557. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/builders/default.rb +0 -2321
  558. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/current.rb +0 -128
  559. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer/literal.rb +0 -269
  560. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer-F0.rb +0 -12870
  561. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer-F1.rb +0 -14814
  562. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/macruby.rb +0 -9634
  563. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/messages.rb +0 -120
  564. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby18.rb +0 -9272
  565. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby19.rb +0 -9558
  566. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby20.rb +0 -10229
  567. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby21.rb +0 -10203
  568. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby22.rb +0 -10302
  569. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby23.rb +0 -10322
  570. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby24.rb +0 -10454
  571. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby25.rb +0 -10374
  572. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby26.rb +0 -10352
  573. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby27.rb +0 -11947
  574. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby30.rb +0 -12243
  575. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby31.rb +0 -12716
  576. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby32.rb +0 -12704
  577. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby33.rb +0 -12704
  578. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/rubymotion.rb +0 -9515
  579. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/runner.rb +0 -293
  580. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/static_environment.rb +0 -87
  581. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/version.rb +0 -5
  582. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CHANGELOG.md +0 -215
  583. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CODE_OF_CONDUCT.md +0 -76
  584. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CONTRIBUTING.md +0 -62
  585. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/LICENSE.md +0 -7
  586. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/Makefile +0 -84
  587. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/README.md +0 -92
  588. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/librubyparser.a +0 -0
  589. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/diagnostic.o +0 -0
  590. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_big5.o +0 -0
  591. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_euc_jp.o +0 -0
  592. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_gbk.o +0 -0
  593. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_shift_jis.o +0 -0
  594. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_tables.o +0 -0
  595. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_unicode.o +0 -0
  596. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_windows_31j.o +0 -0
  597. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/node.o +0 -0
  598. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/pack.o +0 -0
  599. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/prettyprint.o +0 -0
  600. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/prism.o +0 -0
  601. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/regexp.o +0 -0
  602. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/serialize.o +0 -0
  603. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/token_type.o +0 -0
  604. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_buffer.o +0 -0
  605. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_char.o +0 -0
  606. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_constant_pool.o +0 -0
  607. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_list.o +0 -0
  608. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_memchr.o +0 -0
  609. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_newline_list.o +0 -0
  610. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_state_stack.o +0 -0
  611. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_string.o +0 -0
  612. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_string_list.o +0 -0
  613. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_strncasecmp.o +0 -0
  614. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_strpbrk.o +0 -0
  615. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/config.yml +0 -2542
  616. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/build_system.md +0 -74
  617. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/building.md +0 -22
  618. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/configuration.md +0 -60
  619. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/design.md +0 -53
  620. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/encoding.md +0 -117
  621. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/fuzzing.md +0 -88
  622. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/heredocs.md +0 -36
  623. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/mapping.md +0 -117
  624. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/prism.png +0 -0
  625. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/ripper.md +0 -36
  626. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/ruby_api.md +0 -25
  627. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/serialization.md +0 -191
  628. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/testing.md +0 -55
  629. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/Makefile +0 -273
  630. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/api_node.c +0 -4878
  631. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/api_pack.c +0 -256
  632. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extconf.rb +0 -136
  633. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extension.c +0 -613
  634. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extension.h +0 -18
  635. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/ast.h +0 -1984
  636. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/defines.h +0 -45
  637. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/diagnostic.h +0 -232
  638. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/enc/pm_encoding.h +0 -95
  639. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/node.h +0 -49
  640. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/pack.h +0 -141
  641. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/parser.h +0 -444
  642. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/regexp.h +0 -19
  643. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_buffer.h +0 -54
  644. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_char.h +0 -91
  645. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_constant_pool.h +0 -97
  646. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_list.h +0 -67
  647. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_memchr.h +0 -14
  648. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_newline_list.h +0 -61
  649. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_state_stack.h +0 -24
  650. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_string.h +0 -62
  651. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_string_list.h +0 -25
  652. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_strpbrk.h +0 -29
  653. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/version.h +0 -4
  654. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism.h +0 -81
  655. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/compiler.rb +0 -474
  656. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/debug.rb +0 -161
  657. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/desugar_compiler.rb +0 -206
  658. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/dispatcher.rb +0 -2093
  659. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/dsl.rb +0 -765
  660. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/ffi.rb +0 -251
  661. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/lex_compat.rb +0 -872
  662. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/mutation_compiler.rb +0 -733
  663. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node.rb +0 -16410
  664. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node_ext.rb +0 -99
  665. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node_inspector.rb +0 -68
  666. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/pack.rb +0 -185
  667. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result/comments.rb +0 -172
  668. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result/newlines.rb +0 -60
  669. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result.rb +0 -293
  670. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/pattern.rb +0 -239
  671. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/prism.bundle +0 -0
  672. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/ripper_compat.rb +0 -174
  673. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/serialize.rb +0 -670
  674. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/visitor.rb +0 -479
  675. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism.rb +0 -64
  676. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/prism.gemspec +0 -112
  677. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/diagnostic.c +0 -288
  678. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_big5.c +0 -52
  679. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_euc_jp.c +0 -58
  680. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_gbk.c +0 -61
  681. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_shift_jis.c +0 -56
  682. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_tables.c +0 -507
  683. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_unicode.c +0 -2324
  684. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_windows_31j.c +0 -56
  685. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/node.c +0 -2700
  686. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/pack.c +0 -493
  687. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/prettyprint.c +0 -2193
  688. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/prism.c +0 -15704
  689. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/regexp.c +0 -580
  690. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/serialize.c +0 -1960
  691. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/token_type.c +0 -349
  692. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_buffer.c +0 -105
  693. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_char.c +0 -272
  694. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_constant_pool.c +0 -266
  695. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_list.c +0 -41
  696. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_memchr.c +0 -33
  697. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_newline_list.c +0 -134
  698. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_state_stack.c +0 -19
  699. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_string.c +0 -200
  700. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_string_list.c +0 -29
  701. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_strncasecmp.c +0 -17
  702. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_strpbrk.c +0 -66
  703. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/CONTRIBUTING.md +0 -24
  704. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/LICENSE +0 -21
  705. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/README.md +0 -73
  706. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/Makefile +0 -292
  707. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/depend +0 -17
  708. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/extconf.rb +0 -53
  709. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych.c +0 -37
  710. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych.h +0 -17
  711. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_emitter.c +0 -555
  712. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_emitter.h +0 -8
  713. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_parser.c +0 -565
  714. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_parser.h +0 -6
  715. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_to_ruby.c +0 -39
  716. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_to_ruby.h +0 -8
  717. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_yaml_tree.c +0 -12
  718. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_yaml_tree.h +0 -8
  719. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/class_loader.rb +0 -104
  720. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/coder.rb +0 -95
  721. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/core_ext.rb +0 -19
  722. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/exception.rb +0 -28
  723. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handler.rb +0 -255
  724. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handlers/document_stream.rb +0 -23
  725. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handlers/recorder.rb +0 -40
  726. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/ruby_events.rb +0 -20
  727. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/stream.rb +0 -17
  728. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/tree_builder.rb +0 -13
  729. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/yaml_events.rb +0 -30
  730. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/alias.rb +0 -21
  731. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/document.rb +0 -63
  732. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/mapping.rb +0 -59
  733. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/node.rb +0 -75
  734. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/scalar.rb +0 -70
  735. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/sequence.rb +0 -84
  736. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/stream.rb +0 -40
  737. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes.rb +0 -78
  738. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/omap.rb +0 -5
  739. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/parser.rb +0 -65
  740. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/scalar_scanner.rb +0 -142
  741. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/set.rb +0 -5
  742. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/stream.rb +0 -38
  743. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/streaming.rb +0 -28
  744. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/syntax_error.rb +0 -22
  745. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/tree_builder.rb +0 -137
  746. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/versions.rb +0 -10
  747. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/depth_first.rb +0 -27
  748. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/emitter.rb +0 -52
  749. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/json_tree.rb +0 -25
  750. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/to_ruby.rb +0 -436
  751. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/visitor.rb +0 -34
  752. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/yaml_tree.rb +0 -587
  753. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors.rb +0 -7
  754. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/y.rb +0 -10
  755. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych.bundle +0 -0
  756. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych.rb +0 -745
  757. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.ja.rdoc +0 -94
  758. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.rdoc +0 -79
  759. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/TODO +0 -5
  760. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/bin/racc +0 -320
  761. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/NEWS.en.rdoc +0 -282
  762. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar.en.rdoc +0 -226
  763. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar2.en.rdoc +0 -219
  764. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/NEWS.ja.rdoc +0 -307
  765. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/command.ja.html +0 -94
  766. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/grammar.ja.rdoc +0 -348
  767. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/parser.ja.rdoc +0 -125
  768. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/MANIFEST +0 -4
  769. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/Makefile +0 -270
  770. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/cparse.c +0 -861
  771. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/extconf.rb +0 -9
  772. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/cparse.bundle +0 -0
  773. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/info.rb +0 -17
  774. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser-text.rb +0 -658
  775. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser.rb +0 -632
  776. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parserfilegenerator.rb +0 -470
  777. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/Gemfile +0 -15
  778. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/LICENSE +0 -22
  779. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/character_set.rb +0 -26
  780. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/posix_class.rb +0 -15
  781. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/unicode_property.rb +0 -122
  782. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression.rb +0 -36
  783. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/parser.rb +0 -595
  784. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/properties/long.csv +0 -633
  785. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/properties/short.csv +0 -248
  786. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/scanner.rl +0 -827
  787. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner.rb +0 -2513
  788. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/syntax/token/unicode_property.rb +0 -733
  789. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/version.rb +0 -5
  790. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/BSDL +0 -22
  791. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/README.md +0 -87
  792. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/ansi.rb +0 -363
  793. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/config.rb +0 -401
  794. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/general_io.rb +0 -116
  795. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/history.rb +0 -76
  796. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/base.rb +0 -19
  797. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/emacs.rb +0 -517
  798. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/vi_command.rb +0 -518
  799. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/vi_insert.rb +0 -517
  800. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor.rb +0 -7
  801. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_stroke.rb +0 -148
  802. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/kill_ring.rb +0 -125
  803. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/line_editor.rb +0 -3300
  804. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/terminfo.rb +0 -160
  805. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/unicode/east_asian_width.rb +0 -1196
  806. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/unicode.rb +0 -642
  807. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/version.rb +0 -3
  808. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/windows.rb +0 -501
  809. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline.rb +0 -609
  810. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/license_of_rb-readline +0 -25
  811. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/LICENSE.txt +0 -20
  812. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/README.md +0 -252
  813. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/config/default.yml +0 -5629
  814. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config.rb +0 -330
  815. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_loader.rb +0 -259
  816. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion.rb +0 -108
  817. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_validator.rb +0 -272
  818. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/base.rb +0 -486
  819. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/bundler/gem_comment.rb +0 -171
  820. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/exclude_limit.rb +0 -26
  821. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -92
  822. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -50
  823. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -147
  824. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs.rb +0 -31
  825. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/argument_alignment.rb +0 -158
  826. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/end_alignment.rb +0 -204
  827. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/extra_spacing.rb +0 -191
  828. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -180
  829. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -101
  830. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -311
  831. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -165
  832. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -144
  833. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/redundant_line_break.rb +0 -148
  834. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -211
  835. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -64
  836. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/space_around_operators.rb +0 -260
  837. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -109
  838. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -68
  839. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -51
  840. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/debugger.rb +0 -124
  841. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/duplicate_methods.rb +0 -268
  842. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -161
  843. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/float_comparison.rb +0 -93
  844. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -47
  845. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -70
  846. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -185
  847. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/number_conversion.rb +0 -196
  848. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -107
  849. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_with_index.rb +0 -80
  850. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_with_object.rb +0 -79
  851. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -105
  852. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/self_assignment.rb +0 -78
  853. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/shadowed_argument.rb +0 -176
  854. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/symbol_conversion.rb +0 -179
  855. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/syntax.rb +0 -43
  856. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -55
  857. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -204
  858. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -295
  859. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/useless_times.rb +0 -114
  860. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/void.rb +0 -223
  861. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/metrics/abc_size.rb +0 -56
  862. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -227
  863. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -40
  864. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -181
  865. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -49
  866. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/block_forwarding.rb +0 -125
  867. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/constant_name.rb +0 -84
  868. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -295
  869. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/registry.rb +0 -315
  870. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/security/open.rb +0 -89
  871. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -225
  872. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/accessor_grouping.rb +0 -180
  873. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/arguments_forwarding.rb +0 -372
  874. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -48
  875. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -125
  876. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/case_like_if.rb +0 -280
  877. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/class_check.rb +0 -54
  878. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/collection_compact.rb +0 -133
  879. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/combinable_loops.rb +0 -117
  880. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/concat_array_literals.rb +0 -94
  881. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/conditional_assignment.rb +0 -663
  882. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/date_time.rb +0 -93
  883. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -90
  884. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/each_with_object.rb +0 -139
  885. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/empty_literal.rb +0 -138
  886. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/eval_with_location.rb +0 -237
  887. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/exact_regexp_match.rb +0 -68
  888. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/explicit_block_argument.rb +0 -153
  889. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/hash_each_methods.rb +0 -123
  890. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/hash_except.rb +0 -188
  891. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -251
  892. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/inverse_methods.rb +0 -196
  893. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -118
  894. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -136
  895. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/map_to_hash.rb +0 -71
  896. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -232
  897. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -248
  898. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -103
  899. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
  900. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -52
  901. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -100
  902. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/next.rb +0 -233
  903. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -119
  904. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/operator_method_call.rb +0 -73
  905. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/parallel_assignment.rb +0 -300
  906. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -128
  907. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_argument.rb +0 -103
  908. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -133
  909. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_each.rb +0 -116
  910. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -121
  911. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -183
  912. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_parentheses.rb +0 -268
  913. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_return.rb +0 -183
  914. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_self.rb +0 -203
  915. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_sort.rb +0 -208
  916. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_sort_by.rb +0 -63
  917. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_string_escape.rb +0 -185
  918. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/sample.rb +0 -145
  919. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/select_by_regexp.rb +0 -162
  920. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/self_assignment.rb +0 -101
  921. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/semicolon.rb +0 -164
  922. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/single_argument_dig.rb +0 -66
  923. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/slicing_with_range.rb +0 -51
  924. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/string_chars.rb +0 -41
  925. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/strip.rb +0 -42
  926. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/symbol_proc.rb +0 -210
  927. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/unpack_first.rb +0 -62
  928. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cops_documentation_generator.rb +0 -329
  929. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/ext/regexp_node.rb +0 -87
  930. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/disabled_config_formatter.rb +0 -267
  931. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/html_formatter.rb +0 -134
  932. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/json_formatter.rb +0 -80
  933. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter.rb +0 -34
  934. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/lsp/routes.rb +0 -246
  935. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/options.rb +0 -641
  936. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/result_cache.rb +0 -241
  937. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/rspec/shared_contexts.rb +0 -177
  938. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/rspec/support.rb +0 -29
  939. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/runner.rb +0 -498
  940. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/server/cache.rb +0 -156
  941. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/version.rb +0 -102
  942. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop.rb +0 -767
  943. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/LICENSE.txt +0 -22
  944. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/README.md +0 -78
  945. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/VERSION +0 -1
  946. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp +0 -111
  947. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp-check +0 -63
  948. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp-doctor +0 -15
  949. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/core_ext/uri.rb +0 -40
  950. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/rubocop/cop/ruby_lsp/use_language_server_aliases.rb +0 -62
  951. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/rubocop/cop/ruby_lsp/use_register_with_handler_method.rb +0 -125
  952. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby-lsp.rb +0 -6
  953. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/configuration.rb +0 -221
  954. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/entry.rb +0 -205
  955. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/index.rb +0 -256
  956. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/indexable_path.rb +0 -29
  957. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/prefix_tree.rb +0 -153
  958. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/visitor.rb +0 -267
  959. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/ruby_indexer.rb +0 -23
  960. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/classes_and_modules_test.rb +0 -276
  961. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/configuration_test.rb +0 -122
  962. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/constant_test.rb +0 -391
  963. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/index_test.rb +0 -197
  964. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/method_test.rb +0 -73
  965. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/prefix_tree_test.rb +0 -150
  966. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/test_case.rb +0 -46
  967. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/addon.rb +0 -151
  968. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/check_docs.rb +0 -130
  969. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/document.rb +0 -232
  970. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/executor.rb +0 -765
  971. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/internal.rb +0 -29
  972. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/listener.rb +0 -83
  973. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/parameter_scope.rb +0 -33
  974. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/base_request.rb +0 -24
  975. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_action_resolve.rb +0 -148
  976. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_actions.rb +0 -79
  977. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_lens.rb +0 -246
  978. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/completion.rb +0 -241
  979. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/definition.rb +0 -170
  980. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/diagnostics.rb +0 -69
  981. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_highlight.rb +0 -566
  982. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_link.rb +0 -176
  983. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_symbol.rb +0 -235
  984. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/folding_ranges.rb +0 -286
  985. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/formatting.rb +0 -102
  986. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/hover.rb +0 -117
  987. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/inlay_hints.rb +0 -58
  988. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/on_type_formatting.rb +0 -176
  989. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/selection_ranges.rb +0 -51
  990. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/semantic_highlighting.rb +0 -420
  991. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/show_syntax_tree.rb +0 -75
  992. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/annotation.rb +0 -47
  993. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/common.rb +0 -104
  994. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/dependency_detector.rb +0 -88
  995. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/formatter_runner.rb +0 -18
  996. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_diagnostic.rb +0 -108
  997. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_diagnostics_runner.rb +0 -34
  998. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_formatting_runner.rb +0 -35
  999. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_runner.rb +0 -132
  1000. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/selection_range.rb +0 -21
  1001. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/semantic_token_encoder.rb +0 -73
  1002. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/sorbet.rb +0 -55
  1003. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/source_uri.rb +0 -85
  1004. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/syntax_tree_formatting_runner.rb +0 -50
  1005. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/workspace_symbol.rb +0 -89
  1006. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests.rb +0 -59
  1007. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/server.rb +0 -169
  1008. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/setup_bundler.rb +0 -229
  1009. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/store.rb +0 -79
  1010. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/utils.rb +0 -72
  1011. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/sorbet-runtime.rb +0 -122
  1012. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/_types.rb +0 -370
  1013. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/abstract_utils.rb +0 -50
  1014. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/boolean.rb +0 -8
  1015. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/compatibility_patches.rb +0 -95
  1016. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/configuration.rb +0 -591
  1017. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/enum.rb +0 -382
  1018. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/generic.rb +0 -24
  1019. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/helpers.rb +0 -65
  1020. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/interface_wrapper.rb +0 -162
  1021. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/non_forcing_constants.rb +0 -65
  1022. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/data.rb +0 -36
  1023. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/declare.rb +0 -54
  1024. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/hooks.rb +0 -42
  1025. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/validate.rb +0 -128
  1026. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/casts.rb +0 -44
  1027. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/class_utils.rb +0 -134
  1028. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/compiler.rb +0 -24
  1029. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/decl_state.rb +0 -30
  1030. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/final.rb +0 -50
  1031. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/_methods.rb +0 -606
  1032. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation.rb +0 -316
  1033. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation_2_6.rb +0 -1211
  1034. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation_2_7.rb +0 -1211
  1035. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/decl_builder.rb +0 -247
  1036. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/modes.rb +0 -28
  1037. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/signature.rb +0 -250
  1038. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/signature_validation.rb +0 -287
  1039. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/mixins/mixins.rb +0 -27
  1040. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/retry.rb +0 -10
  1041. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/runtime_levels.rb +0 -81
  1042. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/sealed.rb +0 -91
  1043. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/not_typed.rb +0 -25
  1044. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/simple_pair_union.rb +0 -55
  1045. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/string_holder.rb +0 -26
  1046. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/type_alias.rb +0 -31
  1047. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/void.rb +0 -40
  1048. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/_props.rb +0 -169
  1049. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/constructor.rb +0 -40
  1050. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/custom_type.rb +0 -108
  1051. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/decorator.rb +0 -674
  1052. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/errors.rb +0 -8
  1053. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/generated_code_validation.rb +0 -277
  1054. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/has_lazily_specialized_methods.rb +0 -140
  1055. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/optional.rb +0 -89
  1056. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/plugin.rb +0 -37
  1057. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/pretty_printable.rb +0 -69
  1058. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/apply_default.rb +0 -170
  1059. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/deserializer_generator.rb +0 -160
  1060. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/parser.rb +0 -32
  1061. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/serde_transform.rb +0 -186
  1062. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/serializer_generator.rb +0 -76
  1063. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/setter_factory.rb +0 -197
  1064. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/serializable.rb +0 -382
  1065. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/type_validation.rb +0 -114
  1066. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/utils.rb +0 -59
  1067. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/weak_constructor.rb +0 -67
  1068. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/sig.rb +0 -30
  1069. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/struct.rb +0 -51
  1070. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/anything.rb +0 -31
  1071. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/attached_class.rb +0 -37
  1072. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/base.rb +0 -186
  1073. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/class_of.rb +0 -51
  1074. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/enum.rb +0 -40
  1075. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/fixed_array.rb +0 -99
  1076. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/fixed_hash.rb +0 -96
  1077. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/intersection.rb +0 -42
  1078. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/noreturn.rb +0 -28
  1079. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/proc.rb +0 -51
  1080. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/self_type.rb +0 -35
  1081. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/simple.rb +0 -117
  1082. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/t_enum.rb +0 -38
  1083. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_member.rb +0 -7
  1084. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_parameter.rb +0 -42
  1085. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_template.rb +0 -7
  1086. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_variable.rb +0 -34
  1087. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_array.rb +0 -68
  1088. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_class.rb +0 -85
  1089. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerable.rb +0 -183
  1090. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator.rb +0 -41
  1091. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator_chain.rb +0 -41
  1092. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator_lazy.rb +0 -41
  1093. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_hash.rb +0 -48
  1094. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_range.rb +0 -31
  1095. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_set.rb +0 -53
  1096. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/union.rb +0 -127
  1097. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/untyped.rb +0 -29
  1098. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/utils.rb +0 -217
  1099. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/sorbet-runtime.rb +0 -122
  1100. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/_types.rb +0 -370
  1101. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/abstract_utils.rb +0 -50
  1102. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/boolean.rb +0 -8
  1103. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/compatibility_patches.rb +0 -95
  1104. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/configuration.rb +0 -591
  1105. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/enum.rb +0 -382
  1106. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/generic.rb +0 -24
  1107. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/helpers.rb +0 -65
  1108. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/interface_wrapper.rb +0 -162
  1109. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/non_forcing_constants.rb +0 -65
  1110. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/data.rb +0 -36
  1111. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/declare.rb +0 -54
  1112. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/hooks.rb +0 -42
  1113. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/validate.rb +0 -128
  1114. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/casts.rb +0 -44
  1115. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/class_utils.rb +0 -134
  1116. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/compiler.rb +0 -24
  1117. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/decl_state.rb +0 -30
  1118. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/final.rb +0 -50
  1119. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/_methods.rb +0 -606
  1120. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation.rb +0 -316
  1121. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation_2_6.rb +0 -1211
  1122. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation_2_7.rb +0 -1211
  1123. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/decl_builder.rb +0 -247
  1124. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/modes.rb +0 -28
  1125. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/signature.rb +0 -250
  1126. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/signature_validation.rb +0 -287
  1127. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/mixins/mixins.rb +0 -27
  1128. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/retry.rb +0 -10
  1129. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/runtime_levels.rb +0 -81
  1130. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/sealed.rb +0 -91
  1131. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/not_typed.rb +0 -25
  1132. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/simple_pair_union.rb +0 -55
  1133. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/string_holder.rb +0 -26
  1134. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/type_alias.rb +0 -31
  1135. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/void.rb +0 -40
  1136. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/_props.rb +0 -169
  1137. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/constructor.rb +0 -40
  1138. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/custom_type.rb +0 -108
  1139. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/decorator.rb +0 -674
  1140. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/errors.rb +0 -8
  1141. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/generated_code_validation.rb +0 -277
  1142. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/has_lazily_specialized_methods.rb +0 -140
  1143. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/optional.rb +0 -89
  1144. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/plugin.rb +0 -37
  1145. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/pretty_printable.rb +0 -69
  1146. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/apply_default.rb +0 -170
  1147. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/deserializer_generator.rb +0 -160
  1148. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/parser.rb +0 -32
  1149. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/serde_transform.rb +0 -186
  1150. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/serializer_generator.rb +0 -76
  1151. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/setter_factory.rb +0 -197
  1152. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/serializable.rb +0 -382
  1153. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/type_validation.rb +0 -114
  1154. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/utils.rb +0 -59
  1155. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/weak_constructor.rb +0 -67
  1156. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/sig.rb +0 -30
  1157. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/struct.rb +0 -51
  1158. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/anything.rb +0 -31
  1159. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/attached_class.rb +0 -37
  1160. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/base.rb +0 -186
  1161. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/class_of.rb +0 -51
  1162. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/enum.rb +0 -40
  1163. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/fixed_array.rb +0 -99
  1164. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/fixed_hash.rb +0 -96
  1165. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/intersection.rb +0 -42
  1166. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/noreturn.rb +0 -28
  1167. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/proc.rb +0 -51
  1168. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/self_type.rb +0 -35
  1169. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/simple.rb +0 -117
  1170. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/t_enum.rb +0 -38
  1171. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_member.rb +0 -7
  1172. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_parameter.rb +0 -42
  1173. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_template.rb +0 -7
  1174. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_variable.rb +0 -34
  1175. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_array.rb +0 -68
  1176. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_class.rb +0 -85
  1177. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerable.rb +0 -183
  1178. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator.rb +0 -41
  1179. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator_chain.rb +0 -41
  1180. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator_lazy.rb +0 -41
  1181. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_hash.rb +0 -48
  1182. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_range.rb +0 -31
  1183. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_set.rb +0 -53
  1184. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/union.rb +0 -127
  1185. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/untyped.rb +0 -29
  1186. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/utils.rb +0 -217
  1187. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/README.md +0 -45
  1188. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/Makefile +0 -270
  1189. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/extconf.rb +0 -3
  1190. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/stringio.c +0 -1938
  1191. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/lib/stringio.bundle +0 -0
  1192. data/vendor/bundle/ruby/3.2.0/specifications/debug-1.8.0.gemspec +0 -32
  1193. data/vendor/bundle/ruby/3.2.0/specifications/irb-1.8.3.gemspec +0 -30
  1194. data/vendor/bundle/ruby/3.2.0/specifications/parallel-1.23.0.gemspec +0 -21
  1195. data/vendor/bundle/ruby/3.2.0/specifications/parser-3.2.2.4.gemspec +0 -37
  1196. data/vendor/bundle/ruby/3.2.0/specifications/prism-0.15.1.gemspec +0 -24
  1197. data/vendor/bundle/ruby/3.2.0/specifications/psych-5.1.1.1.gemspec +0 -31
  1198. data/vendor/bundle/ruby/3.2.0/specifications/racc-1.7.1.gemspec +0 -27
  1199. data/vendor/bundle/ruby/3.2.0/specifications/regexp_parser-2.8.2.gemspec +0 -22
  1200. data/vendor/bundle/ruby/3.2.0/specifications/reline-0.3.9.gemspec +0 -25
  1201. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.57.2.gemspec +0 -39
  1202. data/vendor/bundle/ruby/3.2.0/specifications/ruby-lsp-0.12.1.gemspec +0 -31
  1203. data/vendor/bundle/ruby/3.2.0/specifications/sorbet-runtime-0.5.11104.gemspec +0 -34
  1204. data/vendor/bundle/ruby/3.2.0/specifications/sorbet-runtime-0.5.11108.gemspec +0 -34
  1205. data/vendor/bundle/ruby/3.2.0/specifications/stringio-3.0.8.gemspec +0 -24
  1206. /data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/{debug-1.8.0 → json-2.7.1}/gem.build_complete +0 -0
  1207. /data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/{prism-0.15.1 → racc-1.7.3}/gem.build_complete +0 -0
  1208. /data/vendor/bundle/ruby/3.2.0/gems/{reline-0.3.9/COPYING → json-2.7.1/LICENSE} +0 -0
  1209. /data/{bin → vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin}/setup +0 -0
  1210. /data/vendor/bundle/ruby/3.2.0/gems/{parallel-1.23.0 → parallel-1.24.0}/MIT-LICENSE.txt +0 -0
  1211. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/LICENSE.txt +0 -0
  1212. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/bin/ruby-parse +0 -0
  1213. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/bin/ruby-rewrite +0 -0
  1214. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/gauntlet_parser.rb +0 -0
  1215. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/ast/node.rb +0 -0
  1216. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/ast/processor.rb +0 -0
  1217. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/base.rb +0 -0
  1218. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/clobbering_error.rb +0 -0
  1219. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/color.rb +0 -0
  1220. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/context.rb +0 -0
  1221. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/current_arg_stack.rb +0 -0
  1222. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/deprecation.rb +0 -0
  1223. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/diagnostic/engine.rb +0 -0
  1224. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/diagnostic.rb +0 -0
  1225. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/lexer/dedenter.rb +0 -0
  1226. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/lexer/explanation.rb +0 -0
  1227. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/lexer/stack_state.rb +0 -0
  1228. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/lexer-strings.rb +0 -0
  1229. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/max_numparam_stack.rb +0 -0
  1230. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/meta.rb +0 -0
  1231. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/rewriter.rb +0 -0
  1232. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/ruby28.rb +0 -0
  1233. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/runner/ruby_parse.rb +0 -0
  1234. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/runner/ruby_rewrite.rb +0 -0
  1235. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/buffer.rb +0 -0
  1236. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/comment/associator.rb +0 -0
  1237. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/comment.rb +0 -0
  1238. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/collection.rb +0 -0
  1239. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/condition.rb +0 -0
  1240. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/constant.rb +0 -0
  1241. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/definition.rb +0 -0
  1242. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/for.rb +0 -0
  1243. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/heredoc.rb +0 -0
  1244. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/index.rb +0 -0
  1245. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/keyword.rb +0 -0
  1246. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/method_definition.rb +0 -0
  1247. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/objc_kwarg.rb +0 -0
  1248. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/operator.rb +0 -0
  1249. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/rescue_body.rb +0 -0
  1250. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/send.rb +0 -0
  1251. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/ternary.rb +0 -0
  1252. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map/variable.rb +0 -0
  1253. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/map.rb +0 -0
  1254. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/range.rb +0 -0
  1255. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/rewriter/action.rb +0 -0
  1256. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/rewriter.rb +0 -0
  1257. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/tree_rewriter/action.rb +0 -0
  1258. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/source/tree_rewriter.rb +0 -0
  1259. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/syntax_error.rb +0 -0
  1260. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/tree_rewriter.rb +0 -0
  1261. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/variables_stack.rb +0 -0
  1262. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser.rb +0 -0
  1263. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/parser.gemspec +0 -0
  1264. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/COPYING +0 -0
  1265. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/ChangeLog +0 -0
  1266. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/debug.ja.rdoc +0 -0
  1267. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/index.ja.html +0 -0
  1268. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/usage.ja.html +0 -0
  1269. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/compat.rb +0 -0
  1270. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/debugflags.rb +0 -0
  1271. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/exception.rb +0 -0
  1272. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/grammar.rb +0 -0
  1273. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/grammarfileparser.rb +0 -0
  1274. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/iset.rb +0 -0
  1275. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/logfilegenerator.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/sourcetext.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/state.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/statetransitiontable.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/static.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/Rakefile +0 -0
  1282. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/error.rb +0 -0
  1283. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/base.rb +0 -0
  1284. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/alternation.rb +0 -0
  1285. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/anchor.rb +0 -0
  1286. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/backreference.rb +0 -0
  1287. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/character_set/intersection.rb +0 -0
  1288. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/character_set/range.rb +0 -0
  1289. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/character_type.rb +0 -0
  1290. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/conditional.rb +0 -0
  1291. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/escape_sequence.rb +0 -0
  1292. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/free_space.rb +0 -0
  1293. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/group.rb +0 -0
  1294. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/keep.rb +0 -0
  1295. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/literal.rb +0 -0
  1296. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/classes/root.rb +0 -0
  1297. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/construct.rb +0 -0
  1298. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/human_name.rb +0 -0
  1299. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/match.rb +0 -0
  1300. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/match_length.rb +0 -0
  1301. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/options.rb +0 -0
  1302. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/parts.rb +0 -0
  1303. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/printing.rb +0 -0
  1304. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/strfregexp.rb +0 -0
  1305. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/tests.rb +0 -0
  1306. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/methods/traverse.rb +0 -0
  1307. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/quantifier.rb +0 -0
  1308. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/sequence.rb +0 -0
  1309. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/sequence_operation.rb +0 -0
  1310. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/shared.rb +0 -0
  1311. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/expression/subexpression.rb +0 -0
  1312. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/lexer.rb +0 -0
  1313. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/scanner/char_type.rl +0 -0
  1314. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/scanner/errors/premature_end_error.rb +0 -0
  1315. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/scanner/errors/scanner_error.rb +0 -0
  1316. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/scanner/errors/validation_error.rb +0 -0
  1317. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/scanner/property.rl +0 -0
  1318. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/any.rb +0 -0
  1319. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/base.rb +0 -0
  1320. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/anchor.rb +0 -0
  1321. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/assertion.rb +0 -0
  1322. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/backreference.rb +0 -0
  1323. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/character_set.rb +0 -0
  1324. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/character_type.rb +0 -0
  1325. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/conditional.rb +0 -0
  1326. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/escape.rb +0 -0
  1327. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/group.rb +0 -0
  1328. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/keep.rb +0 -0
  1329. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/meta.rb +0 -0
  1330. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/posix_class.rb +0 -0
  1331. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/quantifier.rb +0 -0
  1332. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token/virtual.rb +0 -0
  1333. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/token.rb +0 -0
  1334. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/version_lookup.rb +0 -0
  1335. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/1.8.6.rb +0 -0
  1336. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/1.9.1.rb +0 -0
  1337. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/1.9.3.rb +0 -0
  1338. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.0.0.rb +0 -0
  1339. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.2.0.rb +0 -0
  1340. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.3.0.rb +0 -0
  1341. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.4.0.rb +0 -0
  1342. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.4.1.rb +0 -0
  1343. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.5.0.rb +0 -0
  1344. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.6.0.rb +0 -0
  1345. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.6.2.rb +0 -0
  1346. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/2.6.3.rb +0 -0
  1347. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/3.1.0.rb +0 -0
  1348. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions/3.2.0.rb +0 -0
  1349. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax/versions.rb +0 -0
  1350. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/syntax.rb +0 -0
  1351. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser/token.rb +0 -0
  1352. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser.rb +0 -0
  1353. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/regexp_parser.gemspec +0 -0
  1354. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/assets/logo.png +0 -0
  1355. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/assets/output.html.erb +0 -0
  1356. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/config/obsoletion.yml +0 -0
  1357. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/exe/rubocop +0 -0
  1358. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/arguments_env.rb +0 -0
  1359. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/arguments_file.rb +0 -0
  1360. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ast_aliases.rb +0 -0
  1361. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cache_config.rb +0 -0
  1362. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cached_data.rb +0 -0
  1363. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/auto_generate_config.rb +0 -0
  1364. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/base.rb +0 -0
  1365. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/execute_runner.rb +0 -0
  1366. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
  1367. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/lsp.rb +0 -0
  1368. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/show_cops.rb +0 -0
  1369. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/show_docs_url.rb +0 -0
  1370. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
  1371. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/version.rb +0 -0
  1372. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command.rb +0 -0
  1373. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/environment.rb +0 -0
  1374. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli.rb +0 -0
  1375. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/comment_config.rb +0 -0
  1376. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_finder.rb +0 -0
  1377. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_loader_resolver.rb +0 -0
  1378. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
  1379. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
  1380. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
  1381. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
  1382. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
  1383. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
  1384. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
  1385. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  1386. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
  1387. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_regeneration.rb +0 -0
  1388. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_store.rb +0 -0
  1389. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  1390. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/badge.rb +0 -0
  1391. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
  1392. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
  1393. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
  1394. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/gem_version.rb +0 -0
  1395. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
  1396. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
  1397. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/commissioner.rb +0 -0
  1398. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/cop.rb +0 -0
  1399. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/corrector.rb +0 -0
  1400. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -0
  1401. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
  1402. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
  1403. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
  1404. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
  1405. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
  1406. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
  1407. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
  1408. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
  1409. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
  1410. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
  1411. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
  1412. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
  1413. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
  1414. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
  1415. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
  1416. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
  1417. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/documentation.rb +0 -0
  1418. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/force.rb +0 -0
  1419. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
  1420. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
  1421. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -0
  1422. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
  1423. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
  1424. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
  1425. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
  1426. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
  1427. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
  1428. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/generator.rb +0 -0
  1429. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/ignored_node.rb +0 -0
  1430. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
  1431. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
  1432. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
  1433. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
  1434. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -0
  1435. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
  1436. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
  1437. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
  1438. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
  1439. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
  1440. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
  1441. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
  1442. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
  1443. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
  1444. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
  1445. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
  1446. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
  1447. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
  1448. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
  1449. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
  1450. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
  1451. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
  1452. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
  1453. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
  1454. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
  1455. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -0
  1456. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
  1457. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
  1458. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
  1459. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
  1460. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
  1461. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
  1462. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
  1463. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/case_indentation.rb +0 -0
  1464. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/class_structure.rb +0 -0
  1465. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
  1466. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
  1467. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
  1468. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/condition_position.rb +0 -0
  1469. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
  1470. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/dot_position.rb +0 -0
  1471. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
  1472. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
  1473. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -0
  1474. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
  1475. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
  1476. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
  1477. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
  1478. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
  1479. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
  1480. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
  1481. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
  1482. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
  1483. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
  1484. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
  1485. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
  1486. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
  1487. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
  1488. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -0
  1489. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -0
  1490. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
  1491. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -0
  1492. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
  1493. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
  1494. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
  1495. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
  1496. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
  1497. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/indentation_width.rb +0 -0
  1498. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
  1499. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
  1500. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
  1501. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
  1502. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
  1503. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/line_length.rb +0 -0
  1504. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -0
  1505. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
  1506. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
  1507. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
  1508. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -0
  1509. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
  1510. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
  1511. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
  1512. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -0
  1513. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
  1514. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
  1515. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
  1516. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
  1517. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
  1518. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
  1519. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
  1520. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
  1521. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
  1522. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
  1523. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
  1524. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
  1525. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
  1526. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
  1527. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_brackets.rb +0 -0
  1528. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
  1529. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
  1530. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
  1531. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
  1532. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -0
  1533. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
  1534. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
  1535. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
  1536. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
  1537. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
  1538. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
  1539. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
  1540. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
  1541. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
  1542. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
  1543. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
  1544. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
  1545. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  1546. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
  1547. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
  1548. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
  1549. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
  1550. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
  1551. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
  1552. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
  1553. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
  1554. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
  1555. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
  1556. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
  1557. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
  1558. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
  1559. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
  1560. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
  1561. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
  1562. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
  1563. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
  1564. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
  1565. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
  1566. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
  1567. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
  1568. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
  1569. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
  1570. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
  1571. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/else_layout.rb +0 -0
  1572. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_block.rb +0 -0
  1573. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_class.rb +0 -0
  1574. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
  1575. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
  1576. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
  1577. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_file.rb +0 -0
  1578. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
  1579. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
  1580. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/empty_when.rb +0 -0
  1581. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
  1582. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
  1583. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
  1584. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
  1585. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
  1586. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
  1587. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
  1588. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
  1589. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
  1590. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
  1591. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
  1592. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
  1593. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/literal_as_condition.rb +0 -0
  1594. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
  1595. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/loop.rb +0 -0
  1596. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
  1597. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/missing_super.rb +0 -0
  1598. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
  1599. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
  1600. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
  1601. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
  1602. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
  1603. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
  1604. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
  1605. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
  1606. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
  1607. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
  1608. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
  1609. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
  1610. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
  1611. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
  1612. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
  1613. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
  1614. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/rand_one.rb +0 -0
  1615. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
  1616. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
  1617. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
  1618. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
  1619. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
  1620. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -0
  1621. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
  1622. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
  1623. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
  1624. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
  1625. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
  1626. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
  1627. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
  1628. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
  1629. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
  1630. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
  1631. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
  1632. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/script_permission.rb +0 -0
  1633. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
  1634. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
  1635. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -0
  1636. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/struct_new_override.rb +0 -0
  1637. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
  1638. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
  1639. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/to_json.rb +0 -0
  1640. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
  1641. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
  1642. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
  1643. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
  1644. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
  1645. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
  1646. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
  1647. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
  1648. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
  1649. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
  1650. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
  1651. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
  1652. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
  1653. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
  1654. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
  1655. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
  1656. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
  1657. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/message_annotator.rb +0 -0
  1658. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/block_length.rb +0 -0
  1659. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
  1660. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/class_length.rb +0 -0
  1661. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
  1662. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
  1663. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/method_length.rb +0 -0
  1664. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/module_length.rb +0 -0
  1665. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
  1666. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
  1667. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
  1668. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
  1669. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
  1670. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
  1671. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
  1672. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/migration/department_name.rb +0 -0
  1673. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  1674. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
  1675. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
  1676. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
  1677. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
  1678. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
  1679. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
  1680. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
  1681. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
  1682. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
  1683. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/code_length.rb +0 -0
  1684. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
  1685. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
  1686. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
  1687. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
  1688. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
  1689. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/def_node.rb +0 -0
  1690. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
  1691. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  1692. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
  1693. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
  1694. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
  1695. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  1696. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
  1697. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
  1698. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
  1699. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
  1700. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
  1701. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -0
  1702. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
  1703. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  1704. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
  1705. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  1706. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
  1707. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/match_range.rb +0 -0
  1708. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
  1709. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
  1710. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
  1711. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
  1712. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
  1713. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
  1714. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
  1715. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
  1716. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
  1717. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
  1718. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
  1719. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
  1720. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  1721. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
  1722. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
  1723. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
  1724. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/range_help.rb +0 -0
  1725. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
  1726. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/require_library.rb +0 -0
  1727. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
  1728. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
  1729. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
  1730. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
  1731. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/string_help.rb +0 -0
  1732. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
  1733. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
  1734. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
  1735. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
  1736. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
  1737. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
  1738. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
  1739. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
  1740. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
  1741. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
  1742. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
  1743. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
  1744. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
  1745. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
  1746. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/file_name.rb +0 -0
  1747. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
  1748. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
  1749. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
  1750. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/method_name.rb +0 -0
  1751. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
  1752. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/predicate_name.rb +0 -0
  1753. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
  1754. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/variable_name.rb +0 -0
  1755. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/naming/variable_number.rb +0 -0
  1756. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/offense.rb +0 -0
  1757. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/compound_hash.rb +0 -0
  1758. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/eval.rb +0 -0
  1759. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/io_methods.rb +0 -0
  1760. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/json_load.rb +0 -0
  1761. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/marshal_load.rb +0 -0
  1762. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/yaml_load.rb +0 -0
  1763. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/severity.rb +0 -0
  1764. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/alias.rb +0 -0
  1765. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/and_or.rb +0 -0
  1766. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/array_coercion.rb +0 -0
  1767. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/array_intersect.rb +0 -0
  1768. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/array_join.rb +0 -0
  1769. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
  1770. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/attr.rb +0 -0
  1771. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
  1772. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/begin_block.rb +0 -0
  1773. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
  1774. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/block_comments.rb +0 -0
  1775. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/block_delimiters.rb +0 -0
  1776. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/case_equality.rb +0 -0
  1777. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/character_literal.rb +0 -0
  1778. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
  1779. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
  1780. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/class_methods.rb +0 -0
  1781. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
  1782. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/class_vars.rb +0 -0
  1783. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/collection_methods.rb +0 -0
  1784. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
  1785. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
  1786. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/command_literal.rb +0 -0
  1787. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
  1788. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
  1789. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
  1790. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
  1791. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/copyright.rb +0 -0
  1792. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
  1793. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
  1794. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/dir.rb +0 -0
  1795. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/dir_empty.rb +0 -0
  1796. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
  1797. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
  1798. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/documentation.rb +0 -0
  1799. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/documentation_method.rb +0 -0
  1800. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
  1801. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/double_negation.rb +0 -0
  1802. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
  1803. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
  1804. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_else.rb +0 -0
  1805. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
  1806. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
  1807. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/empty_method.rb +0 -0
  1808. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/encoding.rb +0 -0
  1809. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/end_block.rb +0 -0
  1810. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/endless_method.rb +0 -0
  1811. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/env_home.rb +0 -0
  1812. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/even_odd.rb +0 -0
  1813. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
  1814. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
  1815. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
  1816. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/file_empty.rb +0 -0
  1817. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/file_read.rb +0 -0
  1818. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/file_write.rb +0 -0
  1819. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/float_division.rb +0 -0
  1820. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/for.rb +0 -0
  1821. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/format_string.rb +0 -0
  1822. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/format_string_token.rb +0 -0
  1823. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
  1824. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
  1825. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/global_vars.rb +0 -0
  1826. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/guard_clause.rb +0 -0
  1827. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -0
  1828. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
  1829. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
  1830. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
  1831. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
  1832. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
  1833. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
  1834. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/if_unless_modifier.rb +0 -0
  1835. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -0
  1836. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -0
  1837. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
  1838. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
  1839. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
  1840. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
  1841. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/inline_comment.rb +0 -0
  1842. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
  1843. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
  1844. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/lambda.rb +0 -0
  1845. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/lambda_call.rb +0 -0
  1846. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
  1847. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/magic_comment_format.rb +0 -0
  1848. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/map_to_set.rb +0 -0
  1849. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
  1850. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
  1851. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/min_max.rb +0 -0
  1852. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/min_max_comparison.rb +0 -0
  1853. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/missing_else.rb +0 -0
  1854. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
  1855. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
  1856. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/module_function.rb +0 -0
  1857. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
  1858. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
  1859. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_if_then.rb +0 -0
  1860. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
  1861. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
  1862. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
  1863. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
  1864. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
  1865. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/mutable_constant.rb +0 -0
  1866. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/negated_if.rb +0 -0
  1867. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
  1868. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/negated_unless.rb +0 -0
  1869. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/negated_while.rb +0 -0
  1870. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
  1871. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
  1872. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
  1873. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
  1874. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
  1875. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
  1876. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
  1877. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/not.rb +0 -0
  1878. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
  1879. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
  1880. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
  1881. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
  1882. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/object_then.rb +0 -0
  1883. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
  1884. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
  1885. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/option_hash.rb +0 -0
  1886. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
  1887. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
  1888. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/or_assignment.rb +0 -0
  1889. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
  1890. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
  1891. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
  1892. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -0
  1893. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/proc.rb +0 -0
  1894. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
  1895. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/raise_args.rb +0 -0
  1896. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
  1897. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
  1898. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
  1899. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
  1900. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
  1901. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_condition.rb +0 -0
  1902. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
  1903. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
  1904. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
  1905. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
  1906. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
  1907. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
  1908. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
  1909. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
  1910. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
  1911. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
  1912. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
  1913. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
  1914. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
  1915. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
  1916. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
  1917. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
  1918. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
  1919. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/regexp_literal.rb +0 -0
  1920. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/require_order.rb +0 -0
  1921. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
  1922. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
  1923. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/return_nil.rb +0 -0
  1924. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
  1925. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
  1926. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/send.rb +0 -0
  1927. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/signal_exception.rb +0 -0
  1928. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
  1929. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
  1930. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
  1931. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
  1932. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
  1933. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
  1934. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/static_class.rb +0 -0
  1935. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
  1936. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
  1937. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
  1938. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/string_literals.rb +0 -0
  1939. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
  1940. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/string_methods.rb +0 -0
  1941. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
  1942. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/swap_values.rb +0 -0
  1943. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/symbol_array.rb +0 -0
  1944. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
  1945. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
  1946. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
  1947. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
  1948. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
  1949. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
  1950. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
  1951. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
  1952. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
  1953. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
  1954. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
  1955. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
  1956. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
  1957. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/unless_else.rb +0 -0
  1958. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
  1959. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
  1960. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/when_then.rb +0 -0
  1961. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/while_until_do.rb +0 -0
  1962. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
  1963. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/word_array.rb +0 -0
  1964. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
  1965. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
  1966. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
  1967. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
  1968. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/team.rb +0 -0
  1969. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/util.rb +0 -0
  1970. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/utils/format_string.rb +0 -0
  1971. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/utils/regexp_ranges.rb +0 -0
  1972. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
  1973. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/branch.rb +0 -0
  1974. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
  1975. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/reference.rb +0 -0
  1976. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/scope.rb +0 -0
  1977. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/variable.rb +0 -0
  1978. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
  1979. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force.rb +0 -0
  1980. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/core_ext/string.rb +0 -0
  1981. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/directive_comment.rb +0 -0
  1982. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/error.rb +0 -0
  1983. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/comment.rb +0 -0
  1984. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/processed_source.rb +0 -0
  1985. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/range.rb +0 -0
  1986. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
  1987. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/feature_loader.rb +0 -0
  1988. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/file_finder.rb +0 -0
  1989. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/file_patterns.rb +0 -0
  1990. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
  1991. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
  1992. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/clang_style_formatter.rb +0 -0
  1993. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/colorizable.rb +0 -0
  1994. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
  1995. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
  1996. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
  1997. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
  1998. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2/lib/rubocop/formatter/git_hub_actions_formatter.rb → rubocop-1.60.0/lib/rubocop/formatter/github_actions_formatter.rb} +0 -0
  1999. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  2000. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  2001. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
  2002. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  2003. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  2004. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  2005. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
  2006. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
  2007. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/text_util.rb +0 -0
  2008. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
  2009. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lockfile.rb +0 -0
  2010. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/logger.rb +0 -0
  2011. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/runtime.rb +0 -0
  2012. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/server.rb +0 -0
  2013. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/severity.rb +0 -0
  2014. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/magic_comment.rb +0 -0
  2015. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/name_similarity.rb +0 -0
  2016. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/path_util.rb +0 -0
  2017. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/platform.rb +0 -0
  2018. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rake_task.rb +0 -0
  2019. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/remote_config.rb +0 -0
  2020. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
  2021. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
  2022. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/host_environment_simulation_helper.rb +0 -0
  2023. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  2024. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/cli.rb +0 -0
  2025. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/base.rb +0 -0
  2026. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/exec.rb +0 -0
  2027. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/restart.rb +0 -0
  2028. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/start.rb +0 -0
  2029. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/status.rb +0 -0
  2030. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command/stop.rb +0 -0
  2031. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command.rb +0 -0
  2032. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/core.rb +0 -0
  2033. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/errors.rb +0 -0
  2034. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/helper.rb +0 -0
  2035. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/server_command/base.rb +0 -0
  2036. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/server_command/exec.rb +0 -0
  2037. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/server_command/stop.rb +0 -0
  2038. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/server_command.rb +0 -0
  2039. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/socket_reader.rb +0 -0
  2040. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server.rb +0 -0
  2041. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/string_interpreter.rb +0 -0
  2042. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/target_finder.rb +0 -0
  2043. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/target_ruby.rb +0 -0
  2044. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/util.rb +0 -0
  2045. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/warning.rb +0 -0
  2046. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/yaml_duplication_checker.rb +0 -0
@@ -1,2634 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- return if ENV['RUBY_DEBUG_ENABLE'] == '0'
4
-
5
- # skip to load debugger for bundle exec
6
-
7
- if $0.end_with?('bin/bundle') && ARGV.first == 'exec'
8
- trace_var(:$0) do |file|
9
- trace_var(:$0, nil)
10
- if /-r (#{Regexp.escape(__dir__)}\S+)/ =~ ENV['RUBYOPT']
11
- lib = $1
12
- $LOADED_FEATURES.delete_if{|path| path.start_with?(__dir__)}
13
- ENV['RUBY_DEBUG_INITIAL_SUSPEND_PATH'] = file
14
- require lib
15
- ENV['RUBY_DEBUG_INITIAL_SUSPEND_PATH'] = nil
16
- end
17
- end
18
-
19
- return
20
- end
21
-
22
- # restore RUBYOPT
23
- if (added_opt = ENV['RUBY_DEBUG_ADDED_RUBYOPT']) &&
24
- (rubyopt = ENV['RUBYOPT']) &&
25
- rubyopt.end_with?(added_opt)
26
-
27
- ENV['RUBYOPT'] = rubyopt.delete_suffix(added_opt)
28
- ENV['RUBY_DEBUG_ADDED_RUBYOPT'] = nil
29
- end
30
-
31
- require_relative 'frame_info'
32
- require_relative 'config'
33
- require_relative 'thread_client'
34
- require_relative 'source_repository'
35
- require_relative 'breakpoint'
36
- require_relative 'tracer'
37
-
38
- # To prevent loading old lib/debug.rb in Ruby 2.6 to 3.0
39
- $LOADED_FEATURES << 'debug.rb'
40
- $LOADED_FEATURES << File.expand_path(File.join(__dir__, '..', 'debug.rb'))
41
- require 'debug' # invalidate the $LOADED_FEATURE cache
42
-
43
- require 'json' if ENV['RUBY_DEBUG_TEST_UI'] == 'terminal'
44
- require 'pp'
45
-
46
- class RubyVM::InstructionSequence
47
- def traceable_lines_norec lines
48
- code = self.to_a[13]
49
- line = 0
50
- code.each{|e|
51
- case e
52
- when Integer
53
- line = e
54
- when Symbol
55
- if /\ARUBY_EVENT_/ =~ e.to_s
56
- lines[line] = [e, *lines[line]]
57
- end
58
- end
59
- }
60
- end
61
-
62
- def traceable_lines_rec lines
63
- self.each_child{|ci| ci.traceable_lines_rec(lines)}
64
- traceable_lines_norec lines
65
- end
66
-
67
- def type
68
- self.to_a[9]
69
- end unless method_defined?(:type)
70
-
71
- def parameters_symbols
72
- ary = self.to_a
73
- argc = ary[4][:arg_size]
74
- locals = ary.to_a[10]
75
- locals[0...argc]
76
- end unless method_defined?(:parameters_symbols)
77
-
78
- def last_line
79
- self.to_a[4][:code_location][2]
80
- end unless method_defined?(:last_line)
81
-
82
- def first_line
83
- self.to_a[4][:code_location][0]
84
- end unless method_defined?(:first_line)
85
- end
86
-
87
- module DEBUGGER__
88
- PresetCommands = Struct.new(:commands, :source, :auto_continue)
89
- SessionCommand = Struct.new(:block, :repeat, :unsafe, :cancel_auto_continue, :postmortem)
90
-
91
- class PostmortemError < RuntimeError; end
92
-
93
- class Session
94
- attr_reader :intercepted_sigint_cmd, :process_group, :subsession_id
95
-
96
- include Color
97
-
98
- def initialize
99
- @ui = nil
100
- @sr = SourceRepository.new
101
- @bps = {} # bp.key => bp
102
- # [file, line] => LineBreakpoint
103
- # "Error" => CatchBreakpoint
104
- # "Foo#bar" => MethodBreakpoint
105
- # [:watch, ivar] => WatchIVarBreakpoint
106
- # [:check, expr] => CheckBreakpoint
107
- #
108
- @tracers = {}
109
- @th_clients = {} # {Thread => ThreadClient}
110
- @q_evt = Queue.new
111
- @displays = []
112
- @tc = nil
113
- @tc_id = 0
114
- @preset_command = nil
115
- @postmortem_hook = nil
116
- @postmortem = false
117
- @intercept_trap_sigint = false
118
- @intercepted_sigint_cmd = 'DEFAULT'
119
- @process_group = ProcessGroup.new
120
- @subsession_stack = []
121
- @subsession_id = 0
122
-
123
- @frame_map = {} # for DAP: {id => [threadId, frame_depth]} and CDP: {id => frame_depth}
124
- @var_map = {1 => [:globals], } # {id => ...} for DAP
125
- @src_map = {} # {id => src}
126
-
127
- @scr_id_map = {} # for CDP
128
- @obj_map = {} # { object_id => ... } for CDP
129
-
130
- @tp_thread_begin = nil
131
- @tp_thread_end = nil
132
-
133
- @commands = {}
134
- @unsafe_context = false
135
-
136
- @has_keep_script_lines = RubyVM.respond_to? :keep_script_lines
137
-
138
- @tp_load_script = TracePoint.new(:script_compiled){|tp|
139
- eval_script = tp.eval_script unless @has_keep_script_lines
140
- ThreadClient.current.on_load tp.instruction_sequence, eval_script
141
- }
142
- @tp_load_script.enable
143
-
144
- @thread_stopper = thread_stopper
145
- self.postmortem = CONFIG[:postmortem]
146
-
147
- register_default_command
148
- end
149
-
150
- def active?
151
- !@q_evt.closed?
152
- end
153
-
154
- def remote?
155
- @ui.remote?
156
- end
157
-
158
- def stop_stepping? file, line, subsession_id = nil
159
- if @bps.has_key? [file, line]
160
- true
161
- elsif subsession_id && @subsession_id != subsession_id
162
- true
163
- else
164
- false
165
- end
166
- end
167
-
168
- def activate ui = nil, on_fork: false
169
- @ui = ui if ui
170
-
171
- @tp_thread_begin&.disable
172
- @tp_thread_end&.disable
173
- @tp_thread_begin = nil
174
- @tp_thread_end = nil
175
- @ui.activate self, on_fork: on_fork
176
-
177
- q = Queue.new
178
- first_q = Queue.new
179
- @session_server = Thread.new do
180
- # make sure `@session_server` is assigned
181
- first_q.pop; first_q = nil
182
-
183
- Thread.current.name = 'DEBUGGER__::SESSION@server'
184
- Thread.current.abort_on_exception = true
185
-
186
- # Thread management
187
- setup_threads
188
- thc = get_thread_client Thread.current
189
- thc.mark_as_management
190
-
191
- if @ui.respond_to?(:reader_thread) && thc = get_thread_client(@ui.reader_thread)
192
- thc.mark_as_management
193
- end
194
-
195
- @tp_thread_begin = TracePoint.new(:thread_begin) do |tp|
196
- get_thread_client
197
- end
198
- @tp_thread_begin.enable
199
-
200
- @tp_thread_end = TracePoint.new(:thread_end) do |tp|
201
- @th_clients.delete(Thread.current)
202
- end
203
- @tp_thread_end.enable
204
-
205
- # session start
206
- q << true
207
- session_server_main
208
- end
209
- first_q << :ok
210
-
211
- q.pop
212
- end
213
-
214
- def deactivate
215
- get_thread_client.deactivate
216
- @thread_stopper.disable
217
- @tp_load_script.disable
218
- @tp_thread_begin.disable
219
- @tp_thread_end.disable
220
- @bps.each_value{|bp| bp.disable}
221
- @th_clients.each_value{|thc| thc.close}
222
- @tracers.values.each{|t| t.disable}
223
- @q_evt.close
224
- @ui&.deactivate
225
- @ui = nil
226
- end
227
-
228
- def reset_ui ui
229
- @ui.deactivate
230
- @ui = ui
231
-
232
- # activate new ui
233
- @tp_thread_begin.disable
234
- @tp_thread_end.disable
235
- @ui.activate self
236
- if @ui.respond_to?(:reader_thread) && thc = get_thread_client(@ui.reader_thread)
237
- thc.mark_as_management
238
- end
239
- @tp_thread_begin.enable
240
- @tp_thread_end.enable
241
- end
242
-
243
- def pop_event
244
- @q_evt.pop
245
- end
246
-
247
- def session_server_main
248
- while evt = pop_event
249
- process_event evt
250
- end
251
- ensure
252
- deactivate
253
- end
254
-
255
- def request_tc(req)
256
- @tc << req
257
- end
258
-
259
- def process_event evt
260
- # variable `@internal_info` is only used for test
261
- tc, output, ev, @internal_info, *ev_args = evt
262
-
263
- output.each{|str| @ui.puts str} if ev != :suspend
264
-
265
- # special event, tc is nil
266
- # and we don't want to set @tc to the newly created thread's ThreadClient
267
- if ev == :thread_begin
268
- th = ev_args.shift
269
- q = ev_args.shift
270
- on_thread_begin th
271
- q << true
272
-
273
- return
274
- end
275
-
276
- @tc = tc
277
-
278
- case ev
279
- when :init
280
- enter_subsession
281
- wait_command_loop
282
- when :load
283
- iseq, src = ev_args
284
- on_load iseq, src
285
- request_tc :continue
286
-
287
- when :trace
288
- trace_id, msg = ev_args
289
- if t = @tracers.values.find{|t| t.object_id == trace_id}
290
- t.puts msg
291
- end
292
- request_tc :continue
293
-
294
- when :suspend
295
- enter_subsession if ev_args.first != :replay
296
- output.each{|str| @ui.puts str} unless @ui.ignore_output_on_suspend?
297
-
298
- case ev_args.first
299
- when :breakpoint
300
- bp, i = bp_index ev_args[1]
301
- clean_bps unless bp
302
- @ui.event :suspend_bp, i, bp, @tc.id
303
- when :trap
304
- @ui.event :suspend_trap, sig = ev_args[1], @tc.id
305
-
306
- if sig == :SIGINT && (@intercepted_sigint_cmd.kind_of?(Proc) || @intercepted_sigint_cmd.kind_of?(String))
307
- @ui.puts "#{@intercepted_sigint_cmd.inspect} is registered as SIGINT handler."
308
- @ui.puts "`sigint` command execute it."
309
- end
310
- else
311
- @ui.event :suspended, @tc.id
312
- end
313
-
314
- if @displays.empty?
315
- wait_command_loop
316
- else
317
- request_tc [:eval, :display, @displays]
318
- end
319
- when :result
320
- raise "[BUG] not in subsession" if @subsession_stack.empty?
321
-
322
- case ev_args.first
323
- when :try_display
324
- failed_results = ev_args[1]
325
- if failed_results.size > 0
326
- i, _msg = failed_results.last
327
- if i+1 == @displays.size
328
- @ui.puts "canceled: #{@displays.pop}"
329
- end
330
- end
331
-
332
- when :method_breakpoint, :watch_breakpoint
333
- bp = ev_args[1]
334
- if bp
335
- add_bp(bp)
336
- show_bps bp
337
- else
338
- # can't make a bp
339
- end
340
- when :trace_pass
341
- obj_id = ev_args[1]
342
- obj_inspect = ev_args[2]
343
- opt = ev_args[3]
344
- add_tracer ObjectTracer.new(@ui, obj_id, obj_inspect, **opt)
345
- else
346
- stop_all_threads
347
- end
348
-
349
- wait_command_loop
350
-
351
- when :protocol_result
352
- process_protocol_result ev_args
353
- wait_command_loop
354
- end
355
- end
356
-
357
- def add_preset_commands name, cmds, kick: true, continue: true
358
- cs = cmds.map{|c|
359
- c.each_line.map{|line|
360
- line = line.strip.gsub(/\A\s*\#.*/, '').strip
361
- line unless line.empty?
362
- }.compact
363
- }.flatten.compact
364
-
365
- if @preset_command && !@preset_command.commands.empty?
366
- @preset_command.commands += cs
367
- else
368
- @preset_command = PresetCommands.new(cs, name, continue)
369
- end
370
-
371
- ThreadClient.current.on_init name if kick
372
- end
373
-
374
- def source iseq
375
- if !CONFIG[:no_color]
376
- @sr.get_colored(iseq)
377
- else
378
- @sr.get(iseq)
379
- end
380
- end
381
-
382
- def inspect
383
- "DEBUGGER__::SESSION"
384
- end
385
-
386
- def wait_command_loop
387
- loop do
388
- case wait_command
389
- when :retry
390
- # nothing
391
- else
392
- break
393
- end
394
- rescue Interrupt
395
- @ui.puts "\n^C"
396
- retry
397
- end
398
- end
399
-
400
- def prompt
401
- if @postmortem
402
- '(rdbg:postmortem) '
403
- elsif @process_group.multi?
404
- "(rdbg@#{process_info}) "
405
- else
406
- '(rdbg) '
407
- end
408
- end
409
-
410
- def wait_command
411
- if @preset_command
412
- if @preset_command.commands.empty?
413
- if @preset_command.auto_continue
414
- @preset_command = nil
415
-
416
- leave_subsession :continue
417
- return
418
- else
419
- @preset_command = nil
420
- return :retry
421
- end
422
- else
423
- line = @preset_command.commands.shift
424
- @ui.puts "(rdbg:#{@preset_command.source}) #{line}"
425
- end
426
- else
427
- @ui.puts "INTERNAL_INFO: #{JSON.generate(@internal_info)}" if ENV['RUBY_DEBUG_TEST_UI'] == 'terminal'
428
- line = @ui.readline prompt
429
- end
430
-
431
- case line
432
- when String
433
- process_command line
434
- when Hash
435
- process_protocol_request line # defined in server.rb
436
- else
437
- raise "unexpected input: #{line.inspect}"
438
- end
439
- end
440
-
441
- private def register_command *names,
442
- repeat: false, unsafe: true, cancel_auto_continue: false, postmortem: true,
443
- &b
444
- cmd = SessionCommand.new(b, repeat, unsafe, cancel_auto_continue, postmortem)
445
-
446
- names.each{|name|
447
- @commands[name] = cmd
448
- }
449
- end
450
-
451
- def register_default_command
452
- ### Control flow
453
-
454
- # * `s[tep]`
455
- # * Step in. Resume the program until next breakable point.
456
- # * `s[tep] <n>`
457
- # * Step in, resume the program at `<n>`th breakable point.
458
- register_command 's', 'step',
459
- repeat: true,
460
- cancel_auto_continue: true,
461
- postmortem: false do |arg|
462
- step_command :in, arg
463
- end
464
-
465
- # * `n[ext]`
466
- # * Step over. Resume the program until next line.
467
- # * `n[ext] <n>`
468
- # * Step over, same as `step <n>`.
469
- register_command 'n', 'next',
470
- repeat: true,
471
- cancel_auto_continue: true,
472
- postmortem: false do |arg|
473
- step_command :next, arg
474
- end
475
-
476
- # * `fin[ish]`
477
- # * Finish this frame. Resume the program until the current frame is finished.
478
- # * `fin[ish] <n>`
479
- # * Finish `<n>`th frames.
480
- register_command 'fin', 'finish',
481
- repeat: true,
482
- cancel_auto_continue: true,
483
- postmortem: false do |arg|
484
- if arg&.to_i == 0
485
- raise 'finish command with 0 does not make sense.'
486
- end
487
-
488
- step_command :finish, arg
489
- end
490
-
491
- # * `u[ntil]`
492
- # * Similar to `next` command, but only stop later lines or the end of the current frame.
493
- # * Similar to gdb's `advance` command.
494
- # * `u[ntil] <[file:]line>`
495
- # * Run til the program reaches given location or the end of the current frame.
496
- # * `u[ntil] <name>`
497
- # * Run til the program invokes a method `<name>`. `<name>` can be a regexp with `/name/`.
498
- register_command 'u', 'until',
499
- repeat: true,
500
- cancel_auto_continue: true,
501
- postmortem: false do |arg|
502
-
503
- step_command :until, arg
504
- end
505
-
506
- # * `c` or `cont` or `continue`
507
- # * Resume the program.
508
- register_command 'c', 'cont', 'continue',
509
- repeat: true,
510
- cancel_auto_continue: true do |arg|
511
- leave_subsession :continue
512
- end
513
-
514
- # * `q[uit]` or `Ctrl-D`
515
- # * Finish debugger (with the debuggee process on non-remote debugging).
516
- register_command 'q', 'quit' do |arg|
517
- if ask 'Really quit?'
518
- @ui.quit arg.to_i do
519
- request_tc :quit
520
- end
521
- leave_subsession :continue
522
- else
523
- next :retry
524
- end
525
- end
526
-
527
- # * `q[uit]!`
528
- # * Same as q[uit] but without the confirmation prompt.
529
- register_command 'q!', 'quit!', unsafe: false do |arg|
530
- @ui.quit arg.to_i do
531
- request_tc :quit
532
- end
533
- leave_subsession :continue
534
- end
535
-
536
- # * `kill`
537
- # * Stop the debuggee process with `Kernel#exit!`.
538
- register_command 'kill' do |arg|
539
- if ask 'Really kill?'
540
- exit! (arg || 1).to_i
541
- else
542
- next :retry
543
- end
544
- end
545
-
546
- # * `kill!`
547
- # * Same as kill but without the confirmation prompt.
548
- register_command 'kill!', unsafe: false do |arg|
549
- exit! (arg || 1).to_i
550
- end
551
-
552
- # * `sigint`
553
- # * Execute SIGINT handler registered by the debuggee.
554
- # * Note that this command should be used just after stop by `SIGINT`.
555
- register_command 'sigint' do
556
- begin
557
- case cmd = @intercepted_sigint_cmd
558
- when nil, 'IGNORE', :IGNORE, 'DEFAULT', :DEFAULT
559
- # ignore
560
- when String
561
- eval(cmd)
562
- when Proc
563
- cmd.call
564
- end
565
-
566
- leave_subsession :continue
567
-
568
- rescue Exception => e
569
- @ui.puts "Exception: #{e}"
570
- @ui.puts e.backtrace.map{|line| " #{e}"}
571
- next :retry
572
- end
573
- end
574
-
575
- ### Breakpoint
576
-
577
- # * `b[reak]`
578
- # * Show all breakpoints.
579
- # * `b[reak] <line>`
580
- # * Set breakpoint on `<line>` at the current frame's file.
581
- # * `b[reak] <file>:<line>` or `<file> <line>`
582
- # * Set breakpoint on `<file>:<line>`.
583
- # * `b[reak] <class>#<name>`
584
- # * Set breakpoint on the method `<class>#<name>`.
585
- # * `b[reak] <expr>.<name>`
586
- # * Set breakpoint on the method `<expr>.<name>`.
587
- # * `b[reak] ... if: <expr>`
588
- # * break if `<expr>` is true at specified location.
589
- # * `b[reak] ... pre: <command>`
590
- # * break and run `<command>` before stopping.
591
- # * `b[reak] ... do: <command>`
592
- # * break and run `<command>`, and continue.
593
- # * `b[reak] ... path: <path>`
594
- # * break if the path matches to `<path>`. `<path>` can be a regexp with `/regexp/`.
595
- # * `b[reak] if: <expr>`
596
- # * break if: `<expr>` is true at any lines.
597
- # * Note that this feature is super slow.
598
- register_command 'b', 'break', postmortem: false, unsafe: false do |arg|
599
- if arg == nil
600
- show_bps
601
- next :retry
602
- else
603
- case bp = repl_add_breakpoint(arg)
604
- when :noretry
605
- when nil
606
- next :retry
607
- else
608
- show_bps bp
609
- next :retry
610
- end
611
- end
612
- end
613
-
614
- # * `catch <Error>`
615
- # * Set breakpoint on raising `<Error>`.
616
- # * `catch ... if: <expr>`
617
- # * stops only if `<expr>` is true as well.
618
- # * `catch ... pre: <command>`
619
- # * runs `<command>` before stopping.
620
- # * `catch ... do: <command>`
621
- # * stops and run `<command>`, and continue.
622
- # * `catch ... path: <path>`
623
- # * stops if the exception is raised from a `<path>`. `<path>` can be a regexp with `/regexp/`.
624
- register_command 'catch', postmortem: false, unsafe: false do |arg|
625
- if arg
626
- bp = repl_add_catch_breakpoint arg
627
- show_bps bp if bp
628
- else
629
- show_bps
630
- end
631
-
632
- :retry
633
- end
634
-
635
- # * `watch @ivar`
636
- # * Stop the execution when the result of current scope's `@ivar` is changed.
637
- # * Note that this feature is super slow.
638
- # * `watch ... if: <expr>`
639
- # * stops only if `<expr>` is true as well.
640
- # * `watch ... pre: <command>`
641
- # * runs `<command>` before stopping.
642
- # * `watch ... do: <command>`
643
- # * stops and run `<command>`, and continue.
644
- # * `watch ... path: <path>`
645
- # * stops if the path matches `<path>`. `<path>` can be a regexp with `/regexp/`.
646
- register_command 'wat', 'watch', postmortem: false, unsafe: false do |arg|
647
- if arg && arg.match?(/\A@\w+/)
648
- repl_add_watch_breakpoint(arg)
649
- else
650
- show_bps
651
- :retry
652
- end
653
- end
654
-
655
- # * `del[ete]`
656
- # * delete all breakpoints.
657
- # * `del[ete] <bpnum>`
658
- # * delete specified breakpoint.
659
- register_command 'del', 'delete', postmortem: false, unsafe: false do |arg|
660
- case arg
661
- when nil
662
- show_bps
663
- if ask "Remove all breakpoints?", 'N'
664
- delete_bp
665
- end
666
- when /\d+/
667
- bp = delete_bp arg.to_i
668
- else
669
- nil
670
- end
671
- @ui.puts "deleted: \##{bp[0]} #{bp[1]}" if bp
672
- :retry
673
- end
674
-
675
- ### Information
676
-
677
- # * `bt` or `backtrace`
678
- # * Show backtrace (frame) information.
679
- # * `bt <num>` or `backtrace <num>`
680
- # * Only shows first `<num>` frames.
681
- # * `bt /regexp/` or `backtrace /regexp/`
682
- # * Only shows frames with method name or location info that matches `/regexp/`.
683
- # * `bt <num> /regexp/` or `backtrace <num> /regexp/`
684
- # * Only shows first `<num>` frames with method name or location info that matches `/regexp/`.
685
- register_command 'bt', 'backtrace', unsafe: false do |arg|
686
- case arg
687
- when /\A(\d+)\z/
688
- request_tc [:show, :backtrace, arg.to_i, nil]
689
- when /\A\/(.*)\/\z/
690
- pattern = $1
691
- request_tc [:show, :backtrace, nil, Regexp.compile(pattern)]
692
- when /\A(\d+)\s+\/(.*)\/\z/
693
- max, pattern = $1, $2
694
- request_tc [:show, :backtrace, max.to_i, Regexp.compile(pattern)]
695
- else
696
- request_tc [:show, :backtrace, nil, nil]
697
- end
698
- end
699
-
700
- # * `l[ist]`
701
- # * Show current frame's source code.
702
- # * Next `list` command shows the successor lines.
703
- # * `l[ist] -`
704
- # * Show predecessor lines as opposed to the `list` command.
705
- # * `l[ist] <start>` or `l[ist] <start>-<end>`
706
- # * Show current frame's source code from the line <start> to <end> if given.
707
- register_command 'l', 'list', repeat: true, unsafe: false do |arg|
708
- case arg ? arg.strip : nil
709
- when /\A(\d+)\z/
710
- request_tc [:show, :list, {start_line: arg.to_i - 1}]
711
- when /\A-\z/
712
- request_tc [:show, :list, {dir: -1}]
713
- when /\A(\d+)-(\d+)\z/
714
- request_tc [:show, :list, {start_line: $1.to_i - 1, end_line: $2.to_i}]
715
- when nil
716
- request_tc [:show, :list]
717
- else
718
- @ui.puts "Can not handle list argument: #{arg}"
719
- :retry
720
- end
721
- end
722
-
723
- # * `whereami`
724
- # * Show the current frame with source code.
725
- register_command 'whereami', unsafe: false do
726
- request_tc [:show, :whereami]
727
- end
728
-
729
- # * `edit`
730
- # * Open the current file on the editor (use `EDITOR` environment variable).
731
- # * Note that edited file will not be reloaded.
732
- # * `edit <file>`
733
- # * Open <file> on the editor.
734
- register_command 'edit' do |arg|
735
- if @ui.remote?
736
- @ui.puts "not supported on the remote console."
737
- next :retry
738
- end
739
-
740
- begin
741
- arg = resolve_path(arg) if arg
742
- rescue Errno::ENOENT
743
- @ui.puts "not found: #{arg}"
744
- next :retry
745
- end
746
-
747
- request_tc [:show, :edit, arg]
748
- end
749
-
750
- info_subcommands = nil
751
- info_subcommands_abbrev = nil
752
-
753
- # * `i[nfo]`
754
- # * Show information about current frame (local/instance variables and defined constants).
755
- # * `i[nfo]` <subcommand>
756
- # * `info` has the following sub-commands.
757
- # * Sub-commands can be specified with few letters which is unambiguous, like `l` for 'locals'.
758
- # * `i[nfo] l or locals or local_variables`
759
- # * Show information about the current frame (local variables)
760
- # * It includes `self` as `%self` and a return value as `_return`.
761
- # * `i[nfo] i or ivars or instance_variables`
762
- # * Show information about instance variables about `self`.
763
- # * `info ivars <expr>` shows the instance variables of the result of `<expr>`.
764
- # * `i[nfo] c or consts or constants`
765
- # * Show information about accessible constants except toplevel constants.
766
- # * `info consts <expr>` shows the constants of a class/module of the result of `<expr>`
767
- # * `i[nfo] g or globals or global_variables`
768
- # * Show information about global variables
769
- # * `i[nfo] th or threads`
770
- # * Show all threads (same as `th[read]`).
771
- # * `i[nfo] b or breakpoints or w or watchpoints`
772
- # * Show all breakpoints and watchpoints.
773
- # * `i[nfo] ... /regexp/`
774
- # * Filter the output with `/regexp/`.
775
- register_command 'i', 'info', unsafe: false do |arg|
776
- if /\/(.+)\/\z/ =~ arg
777
- pat = Regexp.compile($1)
778
- sub = $~.pre_match.strip
779
- else
780
- sub = arg
781
- end
782
-
783
- if /\A(.+?)\b(.+)/ =~ sub
784
- sub = $1
785
- opt = $2.strip
786
- opt = nil if opt.empty?
787
- end
788
-
789
- if sub && !info_subcommands
790
- info_subcommands = {
791
- locals: %w[ locals local_variables ],
792
- ivars: %w[ ivars instance_variables ],
793
- consts: %w[ consts constants ],
794
- globals:%w[ globals global_variables ],
795
- threads:%w[ threads ],
796
- breaks: %w[ breakpoints ],
797
- watchs: %w[ watchpoints ],
798
- }
799
-
800
- require_relative 'abbrev_command'
801
- info_subcommands_abbrev = AbbrevCommand.new(info_subcommands)
802
- end
803
-
804
- if sub
805
- sub = info_subcommands_abbrev.search sub, :unknown do |candidates|
806
- # note: unreached now
807
- @ui.puts "Ambiguous command '#{sub}': #{candidates.join(' ')}"
808
- end
809
- end
810
-
811
- case sub
812
- when nil
813
- request_tc [:show, :default, pat] # something useful
814
- when :locals
815
- request_tc [:show, :locals, pat]
816
- when :ivars
817
- request_tc [:show, :ivars, pat, opt]
818
- when :consts
819
- request_tc [:show, :consts, pat, opt]
820
- when :globals
821
- request_tc [:show, :globals, pat]
822
- when :threads
823
- thread_list
824
- :retry
825
- when :breaks, :watchs
826
- show_bps
827
- :retry
828
- else
829
- @ui.puts "unrecognized argument for info command: #{arg}"
830
- show_help 'info'
831
- :retry
832
- end
833
- end
834
-
835
- # * `o[utline]` or `ls`
836
- # * Show you available methods, constants, local variables, and instance variables in the current scope.
837
- # * `o[utline] <expr>` or `ls <expr>`
838
- # * Show you available methods and instance variables of the given object.
839
- # * If the object is a class/module, it also lists its constants.
840
- register_command 'outline', 'o', 'ls', unsafe: false do |arg|
841
- request_tc [:show, :outline, arg]
842
- end
843
-
844
- # * `display`
845
- # * Show display setting.
846
- # * `display <expr>`
847
- # * Show the result of `<expr>` at every suspended timing.
848
- register_command 'display', postmortem: false do |arg|
849
- if arg && !arg.empty?
850
- @displays << arg
851
- request_tc [:eval, :try_display, @displays]
852
- else
853
- request_tc [:eval, :display, @displays]
854
- end
855
- end
856
-
857
- # * `undisplay`
858
- # * Remove all display settings.
859
- # * `undisplay <displaynum>`
860
- # * Remove a specified display setting.
861
- register_command 'undisplay', postmortem: false, unsafe: false do |arg|
862
- case arg
863
- when /(\d+)/
864
- if @displays[n = $1.to_i]
865
- @displays.delete_at n
866
- end
867
- request_tc [:eval, :display, @displays]
868
- when nil
869
- if ask "clear all?", 'N'
870
- @displays.clear
871
- end
872
- :retry
873
- end
874
- end
875
-
876
- ### Frame control
877
-
878
- # * `f[rame]`
879
- # * Show the current frame.
880
- # * `f[rame] <framenum>`
881
- # * Specify a current frame. Evaluation are run on specified frame.
882
- register_command 'frame', 'f', unsafe: false do |arg|
883
- request_tc [:frame, :set, arg]
884
- end
885
-
886
- # * `up`
887
- # * Specify the upper frame.
888
- register_command 'up', repeat: true, unsafe: false do |arg|
889
- request_tc [:frame, :up]
890
- end
891
-
892
- # * `down`
893
- # * Specify the lower frame.
894
- register_command 'down', repeat: true, unsafe: false do |arg|
895
- request_tc [:frame, :down]
896
- end
897
-
898
- ### Evaluate
899
-
900
- # * `p <expr>`
901
- # * Evaluate like `p <expr>` on the current frame.
902
- register_command 'p' do |arg|
903
- request_eval :p, arg.to_s
904
- end
905
-
906
- # * `pp <expr>`
907
- # * Evaluate like `pp <expr>` on the current frame.
908
- register_command 'pp' do |arg|
909
- request_eval :pp, arg.to_s
910
- end
911
-
912
- # * `eval <expr>`
913
- # * Evaluate `<expr>` on the current frame.
914
- register_command 'eval', 'call' do |arg|
915
- if arg == nil || arg.empty?
916
- show_help 'eval'
917
- @ui.puts "\nTo evaluate the variable `#{cmd}`, use `pp #{cmd}` instead."
918
- :retry
919
- else
920
- request_eval :call, arg
921
- end
922
- end
923
-
924
- # * `irb`
925
- # * Invoke `irb` on the current frame.
926
- register_command 'irb' do |arg|
927
- if @ui.remote?
928
- @ui.puts "not supported on the remote console."
929
- :retry
930
- end
931
- request_eval :irb, nil
932
- end
933
-
934
- ### Trace
935
- # * `trace`
936
- # * Show available tracers list.
937
- # * `trace line`
938
- # * Add a line tracer. It indicates line events.
939
- # * `trace call`
940
- # * Add a call tracer. It indicate call/return events.
941
- # * `trace exception`
942
- # * Add an exception tracer. It indicates raising exceptions.
943
- # * `trace object <expr>`
944
- # * Add an object tracer. It indicates that an object by `<expr>` is passed as a parameter or a receiver on method call.
945
- # * `trace ... /regexp/`
946
- # * Indicates only matched events to `/regexp/`.
947
- # * `trace ... into: <file>`
948
- # * Save trace information into: `<file>`.
949
- # * `trace off <num>`
950
- # * Disable tracer specified by `<num>` (use `trace` command to check the numbers).
951
- # * `trace off [line|call|pass]`
952
- # * Disable all tracers. If `<type>` is provided, disable specified type tracers.
953
- register_command 'trace', postmortem: false, unsafe: false do |arg|
954
- if (re = /\s+into:\s*(.+)/) =~ arg
955
- into = $1
956
- arg.sub!(re, '')
957
- end
958
-
959
- if (re = /\s\/(.+)\/\z/) =~ arg
960
- pattern = $1
961
- arg.sub!(re, '')
962
- end
963
-
964
- case arg
965
- when nil
966
- @ui.puts 'Tracers:'
967
- @tracers.values.each_with_index{|t, i|
968
- @ui.puts "* \##{i} #{t}"
969
- }
970
- @ui.puts
971
- :retry
972
-
973
- when /\Aline\z/
974
- add_tracer LineTracer.new(@ui, pattern: pattern, into: into)
975
- :retry
976
-
977
- when /\Acall\z/
978
- add_tracer CallTracer.new(@ui, pattern: pattern, into: into)
979
- :retry
980
-
981
- when /\Aexception\z/
982
- add_tracer ExceptionTracer.new(@ui, pattern: pattern, into: into)
983
- :retry
984
-
985
- when /\Aobject\s+(.+)/
986
- request_tc [:trace, :object, $1.strip, {pattern: pattern, into: into}]
987
-
988
- when /\Aoff\s+(\d+)\z/
989
- if t = @tracers.values[$1.to_i]
990
- t.disable
991
- @ui.puts "Disable #{t.to_s}"
992
- else
993
- @ui.puts "Unmatched: #{$1}"
994
- end
995
- :retry
996
-
997
- when /\Aoff(\s+(line|call|exception|object))?\z/
998
- @tracers.values.each{|t|
999
- if $2.nil? || t.type == $2
1000
- t.disable
1001
- @ui.puts "Disable #{t.to_s}"
1002
- end
1003
- }
1004
- :retry
1005
-
1006
- else
1007
- @ui.puts "Unknown trace option: #{arg.inspect}"
1008
- :retry
1009
- end
1010
- end
1011
-
1012
- # Record
1013
- # * `record`
1014
- # * Show recording status.
1015
- # * `record [on|off]`
1016
- # * Start/Stop recording.
1017
- # * `step back`
1018
- # * Start replay. Step back with the last execution log.
1019
- # * `s[tep]` does stepping forward with the last log.
1020
- # * `step reset`
1021
- # * Stop replay .
1022
- register_command 'record', postmortem: false, unsafe: false do |arg|
1023
- case arg
1024
- when nil, 'on', 'off'
1025
- request_tc [:record, arg&.to_sym]
1026
- else
1027
- @ui.puts "unknown command: #{arg}"
1028
- :retry
1029
- end
1030
- end
1031
-
1032
- ### Thread control
1033
-
1034
- # * `th[read]`
1035
- # * Show all threads.
1036
- # * `th[read] <thnum>`
1037
- # * Switch thread specified by `<thnum>`.
1038
- register_command 'th', 'thread', unsafe: false do |arg|
1039
- case arg
1040
- when nil, 'list', 'l'
1041
- thread_list
1042
- when /(\d+)/
1043
- switch_thread $1.to_i
1044
- else
1045
- @ui.puts "unknown thread command: #{arg}"
1046
- end
1047
- :retry
1048
- end
1049
-
1050
- ### Configuration
1051
- # * `config`
1052
- # * Show all configuration with description.
1053
- # * `config <name>`
1054
- # * Show current configuration of <name>.
1055
- # * `config set <name> <val>` or `config <name> = <val>`
1056
- # * Set <name> to <val>.
1057
- # * `config append <name> <val>` or `config <name> << <val>`
1058
- # * Append `<val>` to `<name>` if it is an array.
1059
- # * `config unset <name>`
1060
- # * Set <name> to default.
1061
- register_command 'config', unsafe: false do |arg|
1062
- config_command arg
1063
- :retry
1064
- end
1065
-
1066
- # * `source <file>`
1067
- # * Evaluate lines in `<file>` as debug commands.
1068
- register_command 'source' do |arg|
1069
- if arg
1070
- begin
1071
- cmds = File.readlines(path = File.expand_path(arg))
1072
- add_preset_commands path, cmds, kick: true, continue: false
1073
- rescue Errno::ENOENT
1074
- @ui.puts "File not found: #{arg}"
1075
- end
1076
- else
1077
- show_help 'source'
1078
- end
1079
- :retry
1080
- end
1081
-
1082
- # * `open`
1083
- # * open debuggee port on UNIX domain socket and wait for attaching.
1084
- # * Note that `open` command is EXPERIMENTAL.
1085
- # * `open [<host>:]<port>`
1086
- # * open debuggee port on TCP/IP with given `[<host>:]<port>` and wait for attaching.
1087
- # * `open vscode`
1088
- # * open debuggee port for VSCode and launch VSCode if available.
1089
- # * `open chrome`
1090
- # * open debuggee port for Chrome and wait for attaching.
1091
- register_command 'open' do |arg|
1092
- case arg&.downcase
1093
- when '', nil
1094
- ::DEBUGGER__.open nonstop: true
1095
- when /\A(\d+)z/
1096
- ::DEBUGGER__.open_tcp host: nil, port: $1.to_i, nonstop: true
1097
- when /\A(.+):(\d+)\z/
1098
- ::DEBUGGER__.open_tcp host: $1, port: $2.to_i, nonstop: true
1099
- when 'tcp'
1100
- ::DEBUGGER__.open_tcp host: CONFIG[:host], port: (CONFIG[:port] || 0), nonstop: true
1101
- when 'vscode'
1102
- CONFIG[:open] = 'vscode'
1103
- ::DEBUGGER__.open nonstop: true
1104
- when 'chrome', 'cdp'
1105
- CONFIG[:open] = 'chrome'
1106
- ::DEBUGGER__.open_tcp host: CONFIG[:host], port: (CONFIG[:port] || 0), nonstop: true
1107
- else
1108
- raise "Unknown arg: #{arg}"
1109
- end
1110
-
1111
- :retry
1112
- end
1113
-
1114
- ### Help
1115
-
1116
- # * `h[elp]`
1117
- # * Show help for all commands.
1118
- # * `h[elp] <command>`
1119
- # * Show help for the given command.
1120
- register_command 'h', 'help', '?', unsafe: false do |arg|
1121
- show_help arg
1122
- :retry
1123
- end
1124
- end
1125
-
1126
- def process_command line
1127
- if line.empty?
1128
- if @repl_prev_line
1129
- line = @repl_prev_line
1130
- else
1131
- return :retry
1132
- end
1133
- else
1134
- @repl_prev_line = line
1135
- end
1136
-
1137
- /([^\s]+)(?:\s+(.+))?/ =~ line
1138
- cmd_name, cmd_arg = $1, $2
1139
-
1140
- if cmd = @commands[cmd_name]
1141
- check_postmortem if !cmd.postmortem
1142
- check_unsafe if cmd.unsafe
1143
- cancel_auto_continue if cmd.cancel_auto_continue
1144
- @repl_prev_line = nil if !cmd.repeat
1145
-
1146
- cmd.block.call(cmd_arg)
1147
- else
1148
- @repl_prev_line = nil
1149
- check_unsafe
1150
-
1151
- request_eval :pp, line
1152
- end
1153
-
1154
- rescue Interrupt
1155
- return :retry
1156
- rescue SystemExit
1157
- raise
1158
- rescue PostmortemError => e
1159
- @ui.puts e.message
1160
- return :retry
1161
- rescue Exception => e
1162
- @ui.puts "[REPL ERROR] #{e.inspect}"
1163
- @ui.puts e.backtrace.map{|e| ' ' + e}
1164
- return :retry
1165
- end
1166
-
1167
- def request_eval type, src
1168
- restart_all_threads
1169
- request_tc [:eval, type, src]
1170
- end
1171
-
1172
- def step_command type, arg
1173
- if type == :until
1174
- leave_subsession [:step, type, arg]
1175
- return
1176
- end
1177
-
1178
- case arg
1179
- when nil, /\A\d+\z/
1180
- if type == :in && @tc.recorder&.replaying?
1181
- request_tc [:step, type, arg&.to_i]
1182
- else
1183
- leave_subsession [:step, type, arg&.to_i]
1184
- end
1185
- when /\A(back)\z/, /\A(back)\s+(\d+)\z/, /\A(reset)\z/
1186
- if type != :in
1187
- @ui.puts "only `step #{arg}` is supported."
1188
- :retry
1189
- else
1190
- type = $1.to_sym
1191
- iter = $2&.to_i
1192
- request_tc [:step, type, iter]
1193
- end
1194
- else
1195
- @ui.puts "Unknown option: #{arg}"
1196
- :retry
1197
- end
1198
- end
1199
-
1200
- def config_show key
1201
- key = key.to_sym
1202
- config_detail = CONFIG_SET[key]
1203
-
1204
- if config_detail
1205
- v = CONFIG[key]
1206
- kv = "#{key} = #{v.inspect}"
1207
- desc = config_detail[1]
1208
-
1209
- if config_default = config_detail[3]
1210
- desc += " (default: #{config_default})"
1211
- end
1212
-
1213
- line = "%-34s \# %s" % [kv, desc]
1214
- if line.size > SESSION.width
1215
- @ui.puts "\# #{desc}\n#{kv}"
1216
- else
1217
- @ui.puts line
1218
- end
1219
- else
1220
- @ui.puts "Unknown configuration: #{key}. 'config' shows all configurations."
1221
- end
1222
- end
1223
-
1224
- def config_set key, val, append: false
1225
- if CONFIG_SET[key = key.to_sym]
1226
- begin
1227
- if append
1228
- CONFIG.append_config(key, val)
1229
- else
1230
- CONFIG[key] = val
1231
- end
1232
- rescue => e
1233
- @ui.puts e.message
1234
- end
1235
- end
1236
-
1237
- config_show key
1238
- end
1239
-
1240
- def config_command arg
1241
- case arg
1242
- when nil
1243
- CONFIG_SET.each do |k, _|
1244
- config_show k
1245
- end
1246
-
1247
- when /\Aunset\s+(.+)\z/
1248
- if CONFIG_SET[key = $1.to_sym]
1249
- CONFIG[key] = nil
1250
- end
1251
- config_show key
1252
-
1253
- when /\A(\w+)\s*=\s*(.+)\z/
1254
- config_set $1, $2
1255
-
1256
- when /\A\s*set\s+(\w+)\s+(.+)\z/
1257
- config_set $1, $2
1258
-
1259
- when /\A(\w+)\s*<<\s*(.+)\z/
1260
- config_set $1, $2, append: true
1261
-
1262
- when /\A\s*append\s+(\w+)\s+(.+)\z/
1263
- config_set $1, $2, append: true
1264
-
1265
- when /\A(\w+)\z/
1266
- config_show $1
1267
-
1268
- else
1269
- @ui.puts "Can not parse parameters: #{arg}"
1270
- end
1271
- end
1272
-
1273
-
1274
- def cancel_auto_continue
1275
- if @preset_command&.auto_continue
1276
- @preset_command.auto_continue = false
1277
- end
1278
- end
1279
-
1280
- def show_help arg = nil
1281
- instructions = (DEBUGGER__.commands.keys + DEBUGGER__.commands.values).uniq
1282
- print_instructions = proc do |desc|
1283
- desc.split("\n").each do |line|
1284
- next if line.start_with?(" ") # workaround for step back
1285
- formatted_line = line.gsub(/[\[\]\*]/, "").strip
1286
- instructions.each do |inst|
1287
- if formatted_line.start_with?("`#{inst}")
1288
- desc.sub!(line, colorize(line, [:CYAN, :BOLD]))
1289
- end
1290
- end
1291
- end
1292
- @ui.puts desc
1293
- end
1294
-
1295
- print_category = proc do |cat|
1296
- @ui.puts "\n"
1297
- @ui.puts colorize("### #{cat}", [:GREEN, :BOLD])
1298
- @ui.puts "\n"
1299
- end
1300
-
1301
- DEBUGGER__.helps.each { |cat, cs|
1302
- # categories
1303
- if arg.nil?
1304
- print_category.call(cat)
1305
- else
1306
- cs.each { |ws, _|
1307
- if ws.include?(arg)
1308
- print_category.call(cat)
1309
- break
1310
- end
1311
- }
1312
- end
1313
-
1314
- # instructions
1315
- cs.each { |ws, desc|
1316
- if arg.nil? || ws.include?(arg)
1317
- print_instructions.call(desc.dup)
1318
- return if arg
1319
- end
1320
- }
1321
- }
1322
-
1323
- @ui.puts "not found: #{arg}" if arg
1324
- end
1325
-
1326
- def ask msg, default = 'Y'
1327
- opts = '[y/n]'.tr(default.downcase, default)
1328
- input = @ui.ask("#{msg} #{opts} ")
1329
- input = default if input.empty?
1330
- case input
1331
- when 'y', 'Y'
1332
- true
1333
- else
1334
- false
1335
- end
1336
- end
1337
-
1338
- # breakpoint management
1339
-
1340
- def iterate_bps
1341
- deleted_bps = []
1342
- i = 0
1343
- @bps.each{|key, bp|
1344
- if !bp.deleted?
1345
- yield key, bp, i
1346
- i += 1
1347
- else
1348
- deleted_bps << bp
1349
- end
1350
- }
1351
- ensure
1352
- deleted_bps.each{|bp| @bps.delete bp}
1353
- end
1354
-
1355
- def show_bps specific_bp = nil
1356
- iterate_bps do |key, bp, i|
1357
- @ui.puts "#%d %s" % [i, bp.to_s] if !specific_bp || bp == specific_bp
1358
- end
1359
- end
1360
-
1361
- def bp_index specific_bp_key
1362
- iterate_bps do |key, bp, i|
1363
- if key == specific_bp_key
1364
- return [bp, i]
1365
- end
1366
- end
1367
- nil
1368
- end
1369
-
1370
- def rehash_bps
1371
- bps = @bps.values
1372
- @bps.clear
1373
- bps.each{|bp|
1374
- add_bp bp
1375
- }
1376
- end
1377
-
1378
- def clean_bps
1379
- @bps.delete_if{|_k, bp|
1380
- bp.deleted?
1381
- }
1382
- end
1383
-
1384
- def add_bp bp
1385
- # don't repeat commands that add breakpoints
1386
- if @bps.has_key? bp.key
1387
- if bp.duplicable?
1388
- bp
1389
- else
1390
- @ui.puts "duplicated breakpoint: #{bp}"
1391
- bp.disable
1392
- nil
1393
- end
1394
- else
1395
- @bps[bp.key] = bp
1396
- end
1397
- end
1398
-
1399
- def delete_bp arg = nil
1400
- case arg
1401
- when nil
1402
- @bps.each{|key, bp| bp.delete}
1403
- @bps.clear
1404
- else
1405
- del_bp = nil
1406
- iterate_bps{|key, bp, i| del_bp = bp if i == arg}
1407
- if del_bp
1408
- del_bp.delete
1409
- @bps.delete del_bp.key
1410
- return [arg, del_bp]
1411
- end
1412
- end
1413
- end
1414
-
1415
- BREAK_KEYWORDS = %w(if: do: pre: path:).freeze
1416
-
1417
- private def parse_break type, arg
1418
- mode = :sig
1419
- expr = Hash.new{|h, k| h[k] = []}
1420
- arg.split(' ').each{|w|
1421
- if BREAK_KEYWORDS.any?{|pat| w == pat}
1422
- mode = w[0..-2].to_sym
1423
- else
1424
- expr[mode] << w
1425
- end
1426
- }
1427
- expr.default_proc = nil
1428
- expr = expr.transform_values{|v| v.join(' ')}
1429
-
1430
- if (path = expr[:path]) && path =~ /\A\/(.*)\/\z/
1431
- expr[:path] = Regexp.compile($1)
1432
- end
1433
-
1434
- if expr[:do] || expr[:pre]
1435
- check_unsafe
1436
- expr[:cmd] = [type, expr[:pre], expr[:do]]
1437
- end
1438
-
1439
- expr
1440
- end
1441
-
1442
- def repl_add_breakpoint arg
1443
- expr = parse_break 'break', arg.strip
1444
- cond = expr[:if]
1445
- cmd = expr[:cmd]
1446
- path = expr[:path]
1447
-
1448
- case expr[:sig]
1449
- when /\A(\d+)\z/
1450
- add_line_breakpoint @tc.location.path, $1.to_i, cond: cond, command: cmd
1451
- when /\A(.+)[:\s+](\d+)\z/
1452
- add_line_breakpoint $1, $2.to_i, cond: cond, command: cmd
1453
- when /\A(.+)([\.\#])(.+)\z/
1454
- request_tc [:breakpoint, :method, $1, $2, $3, cond, cmd, path]
1455
- return :noretry
1456
- when nil
1457
- add_check_breakpoint cond, path, cmd
1458
- else
1459
- @ui.puts "Unknown breakpoint format: #{arg}"
1460
- @ui.puts
1461
- show_help 'b'
1462
- end
1463
- end
1464
-
1465
- def repl_add_catch_breakpoint arg
1466
- expr = parse_break 'catch', arg.strip
1467
- cond = expr[:if]
1468
- cmd = expr[:cmd]
1469
- path = expr[:path]
1470
-
1471
- bp = CatchBreakpoint.new(expr[:sig], cond: cond, command: cmd, path: path)
1472
- add_bp bp
1473
- end
1474
-
1475
- def repl_add_watch_breakpoint arg
1476
- expr = parse_break 'watch', arg.strip
1477
- cond = expr[:if]
1478
- cmd = expr[:cmd]
1479
- path = Regexp.compile(expr[:path]) if expr[:path]
1480
-
1481
- request_tc [:breakpoint, :watch, expr[:sig], cond, cmd, path]
1482
- end
1483
-
1484
- def add_catch_breakpoint pat, cond: nil
1485
- bp = CatchBreakpoint.new(pat, cond: cond)
1486
- add_bp bp
1487
- end
1488
-
1489
- def add_check_breakpoint cond, path, command
1490
- bp = CheckBreakpoint.new(cond: cond, path: path, command: command)
1491
- add_bp bp
1492
- end
1493
-
1494
- def add_line_breakpoint file, line, **kw
1495
- file = resolve_path(file)
1496
- bp = LineBreakpoint.new(file, line, **kw)
1497
-
1498
- add_bp bp
1499
- rescue Errno::ENOENT => e
1500
- @ui.puts e.message
1501
- end
1502
-
1503
- def clear_breakpoints(&condition)
1504
- @bps.delete_if do |k, bp|
1505
- if condition.call(k, bp)
1506
- bp.delete
1507
- true
1508
- end
1509
- end
1510
- end
1511
-
1512
- def clear_line_breakpoints path
1513
- path = resolve_path(path)
1514
- clear_breakpoints do |k, bp|
1515
- bp.is_a?(LineBreakpoint) && bp.path_is?(path)
1516
- end
1517
- rescue Errno::ENOENT
1518
- # just ignore
1519
- end
1520
-
1521
- def clear_catch_breakpoints *exception_names
1522
- clear_breakpoints do |k, bp|
1523
- bp.is_a?(CatchBreakpoint) && exception_names.include?(k[1])
1524
- end
1525
- end
1526
-
1527
- def clear_all_breakpoints
1528
- clear_breakpoints{true}
1529
- end
1530
-
1531
- def add_iseq_breakpoint iseq, **kw
1532
- bp = ISeqBreakpoint.new(iseq, [:line], **kw)
1533
- add_bp bp
1534
- end
1535
-
1536
- # tracers
1537
-
1538
- def add_tracer tracer
1539
- if @tracers[tracer.key]&.enabled?
1540
- tracer.disable
1541
- @ui.puts "Duplicated tracer: #{tracer}"
1542
- else
1543
- @tracers[tracer.key] = tracer
1544
- @ui.puts "Enable #{tracer}"
1545
- end
1546
- end
1547
-
1548
- # threads
1549
-
1550
- def update_thread_list
1551
- list = Thread.list
1552
- thcs = []
1553
- unmanaged = []
1554
-
1555
- list.each{|th|
1556
- if thc = @th_clients[th]
1557
- if !thc.management?
1558
- thcs << thc
1559
- end
1560
- else
1561
- unmanaged << th
1562
- end
1563
- }
1564
-
1565
- return thcs.sort_by{|thc| thc.id}, unmanaged
1566
- end
1567
-
1568
- def thread_list
1569
- thcs, unmanaged_ths = update_thread_list
1570
- thcs.each_with_index{|thc, i|
1571
- @ui.puts "#{@tc == thc ? "--> " : " "}\##{i} #{thc}"
1572
- }
1573
-
1574
- if !unmanaged_ths.empty?
1575
- @ui.puts "The following threads are not managed yet by the debugger:"
1576
- unmanaged_ths.each{|th|
1577
- @ui.puts " " + th.to_s
1578
- }
1579
- end
1580
- end
1581
-
1582
- def managed_thread_clients
1583
- thcs, _unmanaged_ths = update_thread_list
1584
- thcs
1585
- end
1586
-
1587
- def switch_thread n
1588
- thcs, _unmanaged_ths = update_thread_list
1589
-
1590
- if tc = thcs[n]
1591
- if tc.waiting?
1592
- @tc = tc
1593
- else
1594
- @ui.puts "#{tc.thread} is not controllable yet."
1595
- end
1596
- end
1597
- thread_list
1598
- end
1599
-
1600
- def setup_threads
1601
- prev_clients = @th_clients
1602
- @th_clients = {}
1603
-
1604
- Thread.list.each{|th|
1605
- if tc = prev_clients[th]
1606
- @th_clients[th] = tc
1607
- else
1608
- create_thread_client(th)
1609
- end
1610
- }
1611
- end
1612
-
1613
- def on_thread_begin th
1614
- if @th_clients.has_key? th
1615
- # TODO: NG?
1616
- else
1617
- create_thread_client th
1618
- end
1619
- end
1620
-
1621
- private def create_thread_client th
1622
- # TODO: Ractor support
1623
- raise "Only session_server can create thread_client" unless Thread.current == @session_server
1624
- @th_clients[th] = ThreadClient.new((@tc_id += 1), @q_evt, Queue.new, th)
1625
- end
1626
-
1627
- private def ask_thread_client th
1628
- # TODO: Ractor support
1629
- q2 = Queue.new
1630
- # tc, output, ev, @internal_info, *ev_args = evt
1631
- @q_evt << [nil, [], :thread_begin, nil, th, q2]
1632
- q2.pop
1633
-
1634
- @th_clients[th] or raise "unexpected error"
1635
- end
1636
-
1637
- # can be called by other threads
1638
- def get_thread_client th = Thread.current
1639
- if @th_clients.has_key? th
1640
- @th_clients[th]
1641
- else
1642
- if Thread.current == @session_server
1643
- create_thread_client th
1644
- else
1645
- ask_thread_client th
1646
- end
1647
- end
1648
- end
1649
-
1650
- private def running_thread_clients_count
1651
- @th_clients.count{|th, tc|
1652
- next if tc.management?
1653
- next unless tc.running?
1654
- true
1655
- }
1656
- end
1657
-
1658
- private def waiting_thread_clients
1659
- @th_clients.map{|th, tc|
1660
- next if tc.management?
1661
- next unless tc.waiting?
1662
- tc
1663
- }.compact
1664
- end
1665
-
1666
- private def thread_stopper
1667
- TracePoint.new(:line) do
1668
- # run on each thread
1669
- tc = ThreadClient.current
1670
- next if tc.management?
1671
- next unless tc.running?
1672
- next if tc == @tc
1673
-
1674
- tc.on_pause
1675
- end
1676
- end
1677
-
1678
- private def stop_all_threads
1679
- return if running_thread_clients_count == 0
1680
-
1681
- stopper = @thread_stopper
1682
- stopper.enable unless stopper.enabled?
1683
- end
1684
-
1685
- private def restart_all_threads
1686
- stopper = @thread_stopper
1687
- stopper.disable if stopper.enabled?
1688
-
1689
- waiting_thread_clients.each{|tc|
1690
- next if @tc == tc
1691
- tc << :continue
1692
- }
1693
- end
1694
-
1695
- private def enter_subsession
1696
- @subsession_id += 1
1697
- if !@subsession_stack.empty?
1698
- DEBUGGER__.debug{ "Enter subsession (nested #{@subsession_stack.size})" }
1699
- else
1700
- DEBUGGER__.debug{ "Enter subsession" }
1701
- stop_all_threads
1702
- @process_group.lock
1703
- end
1704
-
1705
- @subsession_stack << true
1706
- end
1707
-
1708
- private def leave_subsession type
1709
- raise '[BUG] leave_subsession: not entered' if @subsession_stack.empty?
1710
- @subsession_stack.pop
1711
-
1712
- if @subsession_stack.empty?
1713
- DEBUGGER__.debug{ "Leave subsession" }
1714
- @process_group.unlock
1715
- restart_all_threads
1716
- else
1717
- DEBUGGER__.debug{ "Leave subsession (nested #{@subsession_stack.size})" }
1718
- end
1719
-
1720
- request_tc type if type
1721
- @tc = nil
1722
- rescue Exception => e
1723
- STDERR.puts PP.pp([e, e.backtrace], ''.dup)
1724
- raise
1725
- end
1726
-
1727
- def in_subsession?
1728
- !@subsession_stack.empty?
1729
- end
1730
-
1731
- ## event
1732
-
1733
- def on_load iseq, src
1734
- DEBUGGER__.info "Load #{iseq.absolute_path || iseq.path}"
1735
-
1736
- file_path, reloaded = @sr.add(iseq, src)
1737
- @ui.event :load, file_path, reloaded
1738
-
1739
- # check breakpoints
1740
- if file_path
1741
- @bps.find_all do |_key, bp|
1742
- LineBreakpoint === bp && bp.path_is?(file_path)
1743
- end.each do |_key, bp|
1744
- if !bp.iseq
1745
- bp.try_activate iseq
1746
- elsif reloaded
1747
- @bps.delete bp.key # to allow duplicate
1748
- if nbp = LineBreakpoint.copy(bp, iseq)
1749
- add_bp nbp
1750
- end
1751
- end
1752
- end
1753
- else # !file_path => file_path is not existing
1754
- @bps.find_all do |_key, bp|
1755
- LineBreakpoint === bp && !bp.iseq && DEBUGGER__.compare_path(bp.path, (iseq.absolute_path || iseq.path))
1756
- end.each do |_key, bp|
1757
- bp.try_activate iseq
1758
- end
1759
- end
1760
- end
1761
-
1762
- def resolve_path file
1763
- File.realpath(File.expand_path(file))
1764
- rescue Errno::ENOENT
1765
- case file
1766
- when '-e', '-'
1767
- return file
1768
- else
1769
- $LOAD_PATH.each do |lp|
1770
- libpath = File.join(lp, file)
1771
- return File.realpath(libpath)
1772
- rescue Errno::ENOENT
1773
- # next
1774
- end
1775
- end
1776
-
1777
- raise
1778
- end
1779
-
1780
- def method_added tp
1781
- b = tp.binding
1782
-
1783
- if var_name = b.local_variables.first
1784
- mid = b.local_variable_get(var_name)
1785
- resolved = true
1786
-
1787
- @bps.each{|k, bp|
1788
- case bp
1789
- when MethodBreakpoint
1790
- if bp.method.nil?
1791
- if bp.sig_method_name == mid.to_s
1792
- bp.try_enable(added: true)
1793
- end
1794
- end
1795
-
1796
- resolved = false if !bp.enabled?
1797
- end
1798
- }
1799
-
1800
- if resolved
1801
- Session.deactivate_method_added_trackers
1802
- end
1803
-
1804
- case mid
1805
- when :method_added, :singleton_method_added
1806
- Session.create_method_added_tracker(tp.self, mid)
1807
- Session.activate_method_added_trackers unless resolved
1808
- end
1809
- end
1810
- end
1811
-
1812
- class ::Module
1813
- undef method_added
1814
- def method_added mid; end
1815
- end
1816
-
1817
- class ::BasicObject
1818
- undef singleton_method_added
1819
- def singleton_method_added mid; end
1820
- end
1821
-
1822
- def self.create_method_added_tracker mod, method_added_id, method_accessor = :method
1823
- m = mod.__send__(method_accessor, method_added_id)
1824
- METHOD_ADDED_TRACKERS[m] = TracePoint.new(:call) do |tp|
1825
- SESSION.method_added tp
1826
- end
1827
- end
1828
-
1829
- def self.activate_method_added_trackers
1830
- METHOD_ADDED_TRACKERS.each do |m, tp|
1831
- tp.enable(target: m) unless tp.enabled?
1832
- rescue ArgumentError
1833
- DEBUGGER__.warn "Methods defined under #{m.owner} can not track by the debugger."
1834
- end
1835
- end
1836
-
1837
- def self.deactivate_method_added_trackers
1838
- METHOD_ADDED_TRACKERS.each do |m, tp|
1839
- tp.disable if tp.enabled?
1840
- end
1841
- end
1842
-
1843
- METHOD_ADDED_TRACKERS = Hash.new
1844
- create_method_added_tracker Module, :method_added, :instance_method
1845
- create_method_added_tracker BasicObject, :singleton_method_added, :instance_method
1846
-
1847
- def width
1848
- @ui.width
1849
- end
1850
-
1851
- def check_postmortem
1852
- if @postmortem
1853
- raise PostmortemError, "Can not use this command on postmortem mode."
1854
- end
1855
- end
1856
-
1857
- def check_unsafe
1858
- if @unsafe_context
1859
- raise RuntimeError, "#{@repl_prev_line.dump} is not allowed on unsafe context."
1860
- end
1861
- end
1862
-
1863
- def enter_postmortem_session exc
1864
- return unless exc.instance_variable_defined? :@__debugger_postmortem_frames
1865
-
1866
- frames = exc.instance_variable_get(:@__debugger_postmortem_frames)
1867
- @postmortem = true
1868
- ThreadClient.current.suspend :postmortem, postmortem_frames: frames, postmortem_exc: exc
1869
- ensure
1870
- @postmortem = false
1871
- end
1872
-
1873
- def capture_exception_frames *exclude_path
1874
- postmortem_hook = TracePoint.new(:raise){|tp|
1875
- exc = tp.raised_exception
1876
- frames = DEBUGGER__.capture_frames(__dir__)
1877
-
1878
- exclude_path.each{|ex|
1879
- if Regexp === ex
1880
- frames.delete_if{|e| ex =~ e.path}
1881
- else
1882
- frames.delete_if{|e| e.path.start_with? ex.to_s}
1883
- end
1884
- }
1885
- exc.instance_variable_set(:@__debugger_postmortem_frames, frames)
1886
- }
1887
- postmortem_hook.enable
1888
-
1889
- begin
1890
- yield
1891
- nil
1892
- rescue Exception => e
1893
- if e.instance_variable_defined? :@__debugger_postmortem_frames
1894
- e
1895
- else
1896
- raise
1897
- end
1898
- ensure
1899
- postmortem_hook.disable
1900
- end
1901
- end
1902
-
1903
- def postmortem=(is_enable)
1904
- if is_enable
1905
- unless @postmortem_hook
1906
- @postmortem_hook = TracePoint.new(:raise){|tp|
1907
- exc = tp.raised_exception
1908
- frames = DEBUGGER__.capture_frames(__dir__)
1909
- exc.instance_variable_set(:@__debugger_postmortem_frames, frames)
1910
- }
1911
- at_exit{
1912
- @postmortem_hook.disable
1913
- if CONFIG[:postmortem] && (exc = $!) != nil
1914
- exc = exc.cause while exc.cause
1915
-
1916
- begin
1917
- @ui.puts "Enter postmortem mode with #{exc.inspect}"
1918
- @ui.puts exc.backtrace.map{|e| ' ' + e}
1919
- @ui.puts "\n"
1920
-
1921
- enter_postmortem_session exc
1922
- rescue SystemExit
1923
- exit!
1924
- rescue Exception => e
1925
- @ui = STDERR unless @ui
1926
- @ui.puts "Error while postmortem console: #{e.inspect}"
1927
- end
1928
- end
1929
- }
1930
- end
1931
-
1932
- if !@postmortem_hook.enabled?
1933
- @postmortem_hook.enable
1934
- end
1935
- else
1936
- if @postmortem_hook && @postmortem_hook.enabled?
1937
- @postmortem_hook.disable
1938
- end
1939
- end
1940
- end
1941
-
1942
- def set_no_sigint_hook old, new
1943
- return unless old != new
1944
- return unless @ui.respond_to? :activate_sigint
1945
-
1946
- if old # no -> yes
1947
- @ui.activate_sigint
1948
- else
1949
- @ui.deactivate_sigint
1950
- end
1951
- end
1952
-
1953
- def save_int_trap cmd
1954
- prev, @intercepted_sigint_cmd = @intercepted_sigint_cmd, cmd
1955
- prev
1956
- end
1957
-
1958
- def intercept_trap_sigint?
1959
- @intercept_trap_sigint
1960
- end
1961
-
1962
- def intercept_trap_sigint flag, &b
1963
- prev = @intercept_trap_sigint
1964
- @intercept_trap_sigint = flag
1965
- yield
1966
- ensure
1967
- @intercept_trap_sigint = prev
1968
- end
1969
-
1970
- def intercept_trap_sigint_start prev
1971
- @intercept_trap_sigint = true
1972
- @intercepted_sigint_cmd = prev
1973
- end
1974
-
1975
- def intercept_trap_sigint_end
1976
- @intercept_trap_sigint = false
1977
- prev, @intercepted_sigint_cmd = @intercepted_sigint_cmd, nil
1978
- prev
1979
- end
1980
-
1981
- def process_info
1982
- if @process_group.multi?
1983
- "#{$0}\##{Process.pid}"
1984
- end
1985
- end
1986
-
1987
- def before_fork need_lock = true
1988
- if need_lock
1989
- @process_group.multi_process!
1990
- end
1991
- end
1992
-
1993
- def after_fork_parent
1994
- @ui.after_fork_parent
1995
- end
1996
-
1997
- # experimental API
1998
- def extend_feature session: nil, thread_client: nil, ui: nil
1999
- Session.include session if session
2000
- ThreadClient.include thread_client if thread_client
2001
- @ui.extend ui if ui
2002
- end
2003
- end
2004
-
2005
- class ProcessGroup
2006
- def initialize
2007
- @lock_file = nil
2008
- end
2009
-
2010
- def locked?
2011
- true
2012
- end
2013
-
2014
- def trylock
2015
- true
2016
- end
2017
-
2018
- def lock
2019
- true
2020
- end
2021
-
2022
- def unlock
2023
- true
2024
- end
2025
-
2026
- def sync
2027
- yield
2028
- end
2029
-
2030
- def after_fork
2031
- end
2032
-
2033
- def multi?
2034
- @lock_file
2035
- end
2036
-
2037
- def multi_process!
2038
- require 'tempfile'
2039
- @lock_tempfile = Tempfile.open("ruby-debug-lock-")
2040
- @lock_tempfile.close
2041
- extend MultiProcessGroup
2042
- end
2043
- end
2044
-
2045
- module MultiProcessGroup
2046
- def multi_process!
2047
- end
2048
-
2049
- def after_fork child: true
2050
- if child || !@lock_file
2051
- @m = Mutex.new unless @m
2052
- @m.synchronize do
2053
- @lock_level = 0
2054
- @lock_file = open(@lock_tempfile.path, 'w')
2055
- end
2056
- end
2057
- end
2058
-
2059
- def info msg
2060
- DEBUGGER__.info "#{msg} (#{@lock_level})" # #{caller.first(1).map{|bt| bt.sub(__dir__, '')}}"
2061
- end
2062
-
2063
- def locked?
2064
- # DEBUGGER__.debug{ "locked? #{@lock_level}" }
2065
- @lock_level > 0
2066
- end
2067
-
2068
- private def lock_level_up
2069
- raise unless @m.owned?
2070
- @lock_level += 1
2071
- end
2072
-
2073
- private def lock_level_down
2074
- raise unless @m.owned?
2075
- raise "@lock_level underflow: #{@lock_level}" if @lock_level < 1
2076
- @lock_level -= 1
2077
- end
2078
-
2079
- private def trylock
2080
- @m.synchronize do
2081
- if locked?
2082
- lock_level_up
2083
- info "Try lock, already locked"
2084
- true
2085
- else
2086
- case r = @lock_file.flock(File::LOCK_EX | File::LOCK_NB)
2087
- when 0
2088
- lock_level_up
2089
- info "Try lock with file: success"
2090
- true
2091
- when false
2092
- info "Try lock with file: failed"
2093
- false
2094
- else
2095
- raise "unknown flock result: #{r.inspect}"
2096
- end
2097
- end
2098
- end
2099
- end
2100
-
2101
- def lock
2102
- unless trylock
2103
- @m.synchronize do
2104
- if locked?
2105
- lock_level_up
2106
- else
2107
- info "Lock: block"
2108
- @lock_file.flock(File::LOCK_EX)
2109
- lock_level_up
2110
- end
2111
- end
2112
-
2113
- info "Lock: success"
2114
- end
2115
- end
2116
-
2117
- def unlock
2118
- @m.synchronize do
2119
- raise "lock file is not opened (#{@lock_file.inspect})" if @lock_file.closed?
2120
- lock_level_down
2121
- @lock_file.flock(File::LOCK_UN) unless locked?
2122
- info "Unlocked"
2123
- end
2124
- end
2125
-
2126
- def sync &b
2127
- info "sync"
2128
-
2129
- lock
2130
- begin
2131
- b.call if b
2132
- ensure
2133
- unlock
2134
- end
2135
- end
2136
- end
2137
-
2138
- class UI_Base
2139
- def event type, *args
2140
- case type
2141
- when :suspend_bp
2142
- i, bp = *args
2143
- puts "\nStop by \##{i} #{bp}" if bp
2144
- when :suspend_trap
2145
- puts "\nStop by #{args.first}"
2146
- end
2147
- end
2148
-
2149
- def ignore_output_on_suspend?
2150
- false
2151
- end
2152
-
2153
- def flush
2154
- end
2155
- end
2156
-
2157
- # manual configuration methods
2158
-
2159
- def self.add_line_breakpoint file, line, **kw
2160
- ::DEBUGGER__::SESSION.add_line_breakpoint file, line, **kw
2161
- end
2162
-
2163
- def self.add_catch_breakpoint pat
2164
- ::DEBUGGER__::SESSION.add_catch_breakpoint pat
2165
- end
2166
-
2167
- # String for requiring location
2168
- # nil for -r
2169
- def self.require_location
2170
- locs = caller_locations
2171
- dir_prefix = /#{Regexp.escape(__dir__)}/
2172
-
2173
- locs.each do |loc|
2174
- case loc.absolute_path
2175
- when dir_prefix
2176
- when %r{rubygems/core_ext/kernel_require\.rb}
2177
- else
2178
- return loc if loc.absolute_path
2179
- end
2180
- end
2181
- nil
2182
- end
2183
-
2184
- # start methods
2185
-
2186
- def self.start nonstop: false, **kw
2187
- CONFIG.set_config(**kw)
2188
-
2189
- if CONFIG[:open]
2190
- open nonstop: nonstop, **kw
2191
- else
2192
- unless defined? SESSION
2193
- require_relative 'local'
2194
- initialize_session{ UI_LocalConsole.new }
2195
- end
2196
- setup_initial_suspend unless nonstop
2197
- end
2198
- end
2199
-
2200
- def self.open host: nil, port: CONFIG[:port], sock_path: nil, sock_dir: nil, nonstop: false, **kw
2201
- CONFIG.set_config(**kw)
2202
- require_relative 'server'
2203
-
2204
- if port || CONFIG[:open] == 'chrome' || (!::Addrinfo.respond_to?(:unix))
2205
- open_tcp host: host, port: (port || 0), nonstop: nonstop
2206
- else
2207
- open_unix sock_path: sock_path, sock_dir: sock_dir, nonstop: nonstop
2208
- end
2209
- end
2210
-
2211
- def self.open_tcp host: nil, port:, nonstop: false, **kw
2212
- CONFIG.set_config(**kw)
2213
- require_relative 'server'
2214
-
2215
- if defined? SESSION
2216
- SESSION.reset_ui UI_TcpServer.new(host: host, port: port)
2217
- else
2218
- initialize_session{ UI_TcpServer.new(host: host, port: port) }
2219
- end
2220
-
2221
- setup_initial_suspend unless nonstop
2222
- end
2223
-
2224
- def self.open_unix sock_path: nil, sock_dir: nil, nonstop: false, **kw
2225
- CONFIG.set_config(**kw)
2226
- require_relative 'server'
2227
-
2228
- if defined? SESSION
2229
- SESSION.reset_ui UI_UnixDomainServer.new(sock_dir: sock_dir, sock_path: sock_path)
2230
- else
2231
- initialize_session{ UI_UnixDomainServer.new(sock_dir: sock_dir, sock_path: sock_path) }
2232
- end
2233
-
2234
- setup_initial_suspend unless nonstop
2235
- end
2236
-
2237
- # boot utilities
2238
-
2239
- def self.setup_initial_suspend
2240
- if !CONFIG[:nonstop]
2241
- case
2242
- when CONFIG[:stop_at_load]
2243
- add_line_breakpoint __FILE__, __LINE__ + 1, oneshot: true, hook_call: false
2244
- nil # stop here
2245
- when path = ENV['RUBY_DEBUG_INITIAL_SUSPEND_PATH']
2246
- add_line_breakpoint path, 0, oneshot: true, hook_call: false
2247
- when loc = ::DEBUGGER__.require_location
2248
- # require 'debug/start' or 'debug'
2249
- add_line_breakpoint loc.absolute_path, loc.lineno + 1, oneshot: true, hook_call: false
2250
- else
2251
- # -r
2252
- add_line_breakpoint $0, 0, oneshot: true, hook_call: false
2253
- end
2254
- end
2255
- end
2256
-
2257
- class << self
2258
- define_method :initialize_session do |&init_ui|
2259
- DEBUGGER__.info "Session start (pid: #{Process.pid})"
2260
- ::DEBUGGER__.const_set(:SESSION, Session.new)
2261
- SESSION.activate init_ui.call
2262
- load_rc
2263
- end
2264
- end
2265
-
2266
- # Exiting control
2267
-
2268
- class << self
2269
- def skip_all
2270
- @skip_all = true
2271
- end
2272
-
2273
- def skip?
2274
- @skip_all
2275
- end
2276
- end
2277
-
2278
- def self.load_rc
2279
- [[File.expand_path('~/.rdbgrc'), true],
2280
- [File.expand_path('~/.rdbgrc.rb'), true],
2281
- # ['./.rdbgrc', true], # disable because of security concern
2282
- [CONFIG[:init_script], false],
2283
- ].each{|(path, rc)|
2284
- next unless path
2285
- next if rc && CONFIG[:no_rc] # ignore rc
2286
-
2287
- if File.file? path
2288
- if path.end_with?('.rb')
2289
- load path
2290
- else
2291
- ::DEBUGGER__::SESSION.add_preset_commands path, File.readlines(path)
2292
- end
2293
- elsif !rc
2294
- warn "Not found: #{path}"
2295
- end
2296
- }
2297
-
2298
- # given debug commands
2299
- if CONFIG[:commands]
2300
- cmds = CONFIG[:commands].split(';;')
2301
- ::DEBUGGER__::SESSION.add_preset_commands "commands", cmds, kick: false, continue: false
2302
- end
2303
- end
2304
-
2305
- # Inspector
2306
-
2307
- SHORT_INSPECT_LENGTH = 40
2308
-
2309
- class LimitedPP
2310
- def self.pp(obj, max=80)
2311
- out = self.new(max)
2312
- catch out do
2313
- PP.singleline_pp(obj, out)
2314
- end
2315
- out.buf
2316
- end
2317
-
2318
- attr_reader :buf
2319
-
2320
- def initialize max
2321
- @max = max
2322
- @cnt = 0
2323
- @buf = String.new
2324
- end
2325
-
2326
- def <<(other)
2327
- @buf << other
2328
-
2329
- if @buf.size >= @max
2330
- @buf = @buf[0..@max] + '...'
2331
- throw self
2332
- end
2333
- end
2334
- end
2335
-
2336
- def self.safe_inspect obj, max_length: SHORT_INSPECT_LENGTH, short: false
2337
- if short
2338
- LimitedPP.pp(obj, max_length)
2339
- else
2340
- obj.inspect
2341
- end
2342
- rescue NoMethodError => e
2343
- klass, oid = M_CLASS.bind_call(obj), M_OBJECT_ID.bind_call(obj)
2344
- if obj == (r = e.receiver)
2345
- "<\##{klass.name}#{oid} does not have \#inspect>"
2346
- else
2347
- rklass, roid = M_CLASS.bind_call(r), M_OBJECT_ID.bind_call(r)
2348
- "<\##{klass.name}:#{roid} contains <\##{rklass}:#{roid} and it does not have #inspect>"
2349
- end
2350
- rescue Exception => e
2351
- "<#inspect raises #{e.inspect}>"
2352
- end
2353
-
2354
- def self.warn msg
2355
- log :WARN, msg
2356
- end
2357
-
2358
- def self.info msg
2359
- log :INFO, msg
2360
- end
2361
-
2362
- def self.check_loglevel level
2363
- lv = LOG_LEVELS[level]
2364
- config_lv = LOG_LEVELS[CONFIG[:log_level]]
2365
- lv <= config_lv
2366
- end
2367
-
2368
- def self.debug(&b)
2369
- if check_loglevel :DEBUG
2370
- log :DEBUG, b.call
2371
- end
2372
- end
2373
-
2374
- def self.log level, msg
2375
- if check_loglevel level
2376
- @logfile = STDERR unless defined? @logfile
2377
- return if @logfile.closed?
2378
-
2379
- if defined? SESSION
2380
- pi = SESSION.process_info
2381
- process_info = pi ? "[#{pi}]" : nil
2382
- end
2383
-
2384
- if level == :WARN
2385
- # :WARN on debugger is general information
2386
- @logfile.puts "DEBUGGER#{process_info}: #{msg}"
2387
- @logfile.flush
2388
- else
2389
- @logfile.puts "DEBUGGER#{process_info} (#{level}): #{msg}"
2390
- @logfile.flush
2391
- end
2392
- end
2393
- end
2394
-
2395
- def self.step_in &b
2396
- if defined?(SESSION) && SESSION.active?
2397
- SESSION.add_iseq_breakpoint RubyVM::InstructionSequence.of(b), oneshot: true
2398
- end
2399
-
2400
- yield
2401
- end
2402
-
2403
- if File.identical?(__FILE__.upcase, __FILE__.downcase)
2404
- # For case insensitive file system (like Windows)
2405
- # Note that this check is not enough because case sensitive/insensitive is
2406
- # depend on the file system. So this check is only roughly estimation.
2407
-
2408
- def self.compare_path(a, b)
2409
- a&.downcase == b&.downcase
2410
- end
2411
- else
2412
- def self.compare_path(a, b)
2413
- a == b
2414
- end
2415
- end
2416
-
2417
- module ForkInterceptor
2418
- if Process.respond_to? :_fork
2419
- def _fork
2420
- return super unless defined?(SESSION) && SESSION.active?
2421
-
2422
- parent_hook, child_hook = __fork_setup_for_debugger
2423
-
2424
- super.tap do |pid|
2425
- if pid != 0
2426
- # after fork: parent
2427
- parent_hook.call pid
2428
- else
2429
- # after fork: child
2430
- child_hook.call
2431
- end
2432
- end
2433
- end
2434
- else
2435
- def fork(&given_block)
2436
- return super unless defined?(SESSION) && SESSION.active?
2437
- parent_hook, child_hook = __fork_setup_for_debugger
2438
-
2439
- if given_block
2440
- new_block = proc {
2441
- # after fork: child
2442
- child_hook.call
2443
- given_block.call
2444
- }
2445
- super(&new_block).tap{|pid| parent_hook.call(pid)}
2446
- else
2447
- super.tap do |pid|
2448
- if pid
2449
- # after fork: parent
2450
- parent_hook.call pid
2451
- else
2452
- # after fork: child
2453
- child_hook.call
2454
- end
2455
- end
2456
- end
2457
- end
2458
- end
2459
-
2460
- module DaemonInterceptor
2461
- def daemon(*args)
2462
- return super unless defined?(SESSION) && SESSION.active?
2463
-
2464
- _, child_hook = __fork_setup_for_debugger(:child)
2465
-
2466
- unless SESSION.remote?
2467
- DEBUGGER__.warn "Can't debug the code after Process.daemon locally. Use the remote debugging feature."
2468
- end
2469
-
2470
- super.tap do
2471
- child_hook.call
2472
- end
2473
- end
2474
- end
2475
-
2476
- private def __fork_setup_for_debugger fork_mode = nil
2477
- fork_mode ||= CONFIG[:fork_mode]
2478
-
2479
- if fork_mode == :both && CONFIG[:parent_on_fork]
2480
- fork_mode = :parent
2481
- end
2482
-
2483
- parent_pid = Process.pid
2484
-
2485
- # before fork
2486
- case fork_mode
2487
- when :parent
2488
- parent_hook = -> child_pid {
2489
- # Do nothing
2490
- }
2491
- child_hook = -> {
2492
- DEBUGGER__.info "Detaching after fork from child process #{Process.pid}"
2493
- SESSION.deactivate
2494
- }
2495
- when :child
2496
- SESSION.before_fork false
2497
-
2498
- parent_hook = -> child_pid {
2499
- DEBUGGER__.info "Detaching after fork from parent process #{Process.pid}"
2500
- SESSION.after_fork_parent
2501
- SESSION.deactivate
2502
- }
2503
- child_hook = -> {
2504
- DEBUGGER__.info "Attaching after process #{parent_pid} fork to child process #{Process.pid}"
2505
- SESSION.activate on_fork: true
2506
- }
2507
- when :both
2508
- SESSION.before_fork
2509
-
2510
- parent_hook = -> child_pid {
2511
- SESSION.process_group.after_fork
2512
- SESSION.after_fork_parent
2513
- }
2514
- child_hook = -> {
2515
- DEBUGGER__.info "Attaching after process #{parent_pid} fork to child process #{Process.pid}"
2516
- SESSION.process_group.after_fork child: true
2517
- SESSION.activate on_fork: true
2518
- }
2519
- end
2520
-
2521
- return parent_hook, child_hook
2522
- end
2523
- end
2524
-
2525
- module TrapInterceptor
2526
- def trap sig, *command, &command_proc
2527
- sym =
2528
- case sig
2529
- when String
2530
- sig.to_sym
2531
- when Integer
2532
- Signal.signame(sig)&.to_sym
2533
- else
2534
- sig
2535
- end
2536
-
2537
- case sig&.to_s&.to_sym
2538
- when :INT, :SIGINT
2539
- if defined?(SESSION) && SESSION.active? && SESSION.intercept_trap_sigint?
2540
- return SESSION.save_int_trap(command.empty? ? command_proc : command.first)
2541
- end
2542
- end
2543
-
2544
- super
2545
- end
2546
- end
2547
-
2548
- if Process.respond_to? :_fork
2549
- module ::Process
2550
- class << self
2551
- prepend ForkInterceptor
2552
- prepend DaemonInterceptor
2553
- end
2554
- end
2555
-
2556
- # trap
2557
- module ::Kernel
2558
- prepend TrapInterceptor
2559
- end
2560
- module ::Signal
2561
- class << self
2562
- prepend TrapInterceptor
2563
- end
2564
- end
2565
- else
2566
- if RUBY_VERSION >= '3.0.0'
2567
- module ::Kernel
2568
- prepend ForkInterceptor
2569
- prepend TrapInterceptor
2570
- end
2571
- else
2572
- class ::Object
2573
- include ForkInterceptor
2574
- include TrapInterceptor
2575
- end
2576
- end
2577
-
2578
- module ::Kernel
2579
- class << self
2580
- prepend ForkInterceptor
2581
- prepend TrapInterceptor
2582
- end
2583
- end
2584
-
2585
- module ::Process
2586
- class << self
2587
- prepend ForkInterceptor
2588
- prepend DaemonInterceptor
2589
- end
2590
- end
2591
- end
2592
-
2593
- module ::Signal
2594
- class << self
2595
- prepend TrapInterceptor
2596
- end
2597
- end
2598
- end
2599
-
2600
- module Kernel
2601
- def debugger pre: nil, do: nil, up_level: 0
2602
- return if !defined?(::DEBUGGER__::SESSION) || !::DEBUGGER__::SESSION.active?
2603
-
2604
- if pre || (do_expr = binding.local_variable_get(:do))
2605
- cmds = ['#debugger', pre, do_expr]
2606
- end
2607
-
2608
- if ::DEBUGGER__::SESSION.in_subsession?
2609
- if cmds
2610
- commands = [*cmds[1], *cmds[2]].map{|c| c.split(';;').join("\n")}
2611
- ::DEBUGGER__::SESSION.add_preset_commands cmds[0], commands, kick: false, continue: false
2612
- end
2613
- else
2614
- loc = caller_locations(up_level, 1).first; ::DEBUGGER__.add_line_breakpoint loc.path, loc.lineno + 1, oneshot: true, command: cmds
2615
- end
2616
- self
2617
- end
2618
-
2619
- alias bb debugger if ENV['RUBY_DEBUG_BB']
2620
- end
2621
-
2622
- class Binding
2623
- alias break debugger
2624
- alias b debugger
2625
- end
2626
-
2627
- # for Ruby 2.6 compatibility
2628
- unless method(:p).unbind.respond_to? :bind_call
2629
- class UnboundMethod
2630
- def bind_call(obj, *args)
2631
- self.bind(obj).call(*args)
2632
- end
2633
- end
2634
- end