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,3300 +0,0 @@
1
- require 'reline/kill_ring'
2
- require 'reline/unicode'
3
-
4
- require 'tempfile'
5
-
6
- class Reline::LineEditor
7
- # TODO: undo
8
- # TODO: Use "private alias_method" idiom after drop Ruby 2.5.
9
- attr_reader :line
10
- attr_reader :byte_pointer
11
- attr_accessor :confirm_multiline_termination_proc
12
- attr_accessor :completion_proc
13
- attr_accessor :completion_append_character
14
- attr_accessor :output_modifier_proc
15
- attr_accessor :prompt_proc
16
- attr_accessor :auto_indent_proc
17
- attr_accessor :pre_input_hook
18
- attr_accessor :dig_perfect_match_proc
19
- attr_writer :output
20
-
21
- VI_MOTIONS = %i{
22
- ed_prev_char
23
- ed_next_char
24
- vi_zero
25
- ed_move_to_beg
26
- ed_move_to_end
27
- vi_to_column
28
- vi_next_char
29
- vi_prev_char
30
- vi_next_word
31
- vi_prev_word
32
- vi_to_next_char
33
- vi_to_prev_char
34
- vi_end_word
35
- vi_next_big_word
36
- vi_prev_big_word
37
- vi_end_big_word
38
- vi_repeat_next_char
39
- vi_repeat_prev_char
40
- }
41
-
42
- module CompletionState
43
- NORMAL = :normal
44
- COMPLETION = :completion
45
- MENU = :menu
46
- JOURNEY = :journey
47
- MENU_WITH_PERFECT_MATCH = :menu_with_perfect_match
48
- PERFECT_MATCH = :perfect_match
49
- end
50
-
51
- CompletionJourneyData = Struct.new(:preposing, :postposing, :list, :pointer)
52
- MenuInfo = Struct.new(:target, :list)
53
-
54
- PROMPT_LIST_CACHE_TIMEOUT = 0.5
55
- MINIMUM_SCROLLBAR_HEIGHT = 1
56
-
57
- def initialize(config, encoding)
58
- @config = config
59
- @completion_append_character = ''
60
- reset_variables(encoding: encoding)
61
- end
62
-
63
- def io_gate
64
- Reline::IOGate
65
- end
66
-
67
- def set_pasting_state(in_pasting)
68
- @in_pasting = in_pasting
69
- end
70
-
71
- def simplified_rendering?
72
- if finished?
73
- false
74
- elsif @just_cursor_moving and not @rerender_all
75
- true
76
- else
77
- not @rerender_all and not finished? and @in_pasting
78
- end
79
- end
80
-
81
- private def check_mode_string
82
- mode_string = nil
83
- if @config.show_mode_in_prompt
84
- if @config.editing_mode_is?(:vi_command)
85
- mode_string = @config.vi_cmd_mode_string
86
- elsif @config.editing_mode_is?(:vi_insert)
87
- mode_string = @config.vi_ins_mode_string
88
- elsif @config.editing_mode_is?(:emacs)
89
- mode_string = @config.emacs_mode_string
90
- else
91
- mode_string = '?'
92
- end
93
- end
94
- if mode_string != @prev_mode_string
95
- @rerender_all = true
96
- end
97
- @prev_mode_string = mode_string
98
- mode_string
99
- end
100
-
101
- private def check_multiline_prompt(buffer, force_recalc: false)
102
- if @vi_arg
103
- prompt = "(arg: #{@vi_arg}) "
104
- @rerender_all = true
105
- elsif @searching_prompt
106
- prompt = @searching_prompt
107
- @rerender_all = true
108
- else
109
- prompt = @prompt
110
- end
111
- if simplified_rendering? && !force_recalc
112
- mode_string = check_mode_string
113
- prompt = mode_string + prompt if mode_string
114
- return [prompt, calculate_width(prompt, true), [prompt] * buffer.size]
115
- end
116
- if @prompt_proc
117
- use_cached_prompt_list = false
118
- if @cached_prompt_list
119
- if @just_cursor_moving
120
- use_cached_prompt_list = true
121
- elsif Time.now.to_f < (@prompt_cache_time + PROMPT_LIST_CACHE_TIMEOUT) and buffer.size == @cached_prompt_list.size
122
- use_cached_prompt_list = true
123
- end
124
- end
125
- use_cached_prompt_list = false if @rerender_all
126
- if use_cached_prompt_list
127
- prompt_list = @cached_prompt_list
128
- else
129
- prompt_list = @cached_prompt_list = @prompt_proc.(buffer).map { |pr| pr.gsub("\n", "\\n") }
130
- @prompt_cache_time = Time.now.to_f
131
- end
132
- prompt_list.map!{ prompt } if @vi_arg or @searching_prompt
133
- prompt_list = [prompt] if prompt_list.empty?
134
- mode_string = check_mode_string
135
- prompt_list = prompt_list.map{ |pr| mode_string + pr } if mode_string
136
- prompt = prompt_list[@line_index]
137
- prompt = prompt_list[0] if prompt.nil?
138
- prompt = prompt_list.last if prompt.nil?
139
- if buffer.size > prompt_list.size
140
- (buffer.size - prompt_list.size).times do
141
- prompt_list << prompt_list.last
142
- end
143
- end
144
- prompt_width = calculate_width(prompt, true)
145
- [prompt, prompt_width, prompt_list]
146
- else
147
- mode_string = check_mode_string
148
- prompt = mode_string + prompt if mode_string
149
- prompt_width = calculate_width(prompt, true)
150
- [prompt, prompt_width, nil]
151
- end
152
- end
153
-
154
- def reset(prompt = '', encoding:)
155
- @rest_height = (Reline::IOGate.get_screen_size.first - 1) - Reline::IOGate.cursor_pos.y
156
- @screen_size = Reline::IOGate.get_screen_size
157
- @screen_height = @screen_size.first
158
- reset_variables(prompt, encoding: encoding)
159
- Reline::IOGate.set_winch_handler do
160
- @resized = true
161
- end
162
- if ENV.key?('RELINE_ALT_SCROLLBAR')
163
- @full_block = '::'
164
- @upper_half_block = "''"
165
- @lower_half_block = '..'
166
- @block_elem_width = 2
167
- elsif Reline::IOGate.win?
168
- @full_block = '█'
169
- @upper_half_block = '▀'
170
- @lower_half_block = '▄'
171
- @block_elem_width = 1
172
- elsif @encoding == Encoding::UTF_8
173
- @full_block = '█'
174
- @upper_half_block = '▀'
175
- @lower_half_block = '▄'
176
- @block_elem_width = Reline::Unicode.calculate_width('█')
177
- else
178
- @full_block = '::'
179
- @upper_half_block = "''"
180
- @lower_half_block = '..'
181
- @block_elem_width = 2
182
- end
183
- end
184
-
185
- def resize
186
- return unless @resized
187
- @resized = false
188
- @rest_height = (Reline::IOGate.get_screen_size.first - 1) - Reline::IOGate.cursor_pos.y
189
- old_screen_size = @screen_size
190
- @screen_size = Reline::IOGate.get_screen_size
191
- @screen_height = @screen_size.first
192
- if old_screen_size.last < @screen_size.last # columns increase
193
- @rerender_all = true
194
- rerender
195
- else
196
- back = 0
197
- new_buffer = whole_lines
198
- prompt, prompt_width, prompt_list = check_multiline_prompt(new_buffer)
199
- new_buffer.each_with_index do |line, index|
200
- prompt_width = calculate_width(prompt_list[index], true) if @prompt_proc
201
- width = prompt_width + calculate_width(line)
202
- height = calculate_height_by_width(width)
203
- back += height
204
- end
205
- @highest_in_all = back
206
- @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
207
- @first_line_started_from =
208
- if @line_index.zero?
209
- 0
210
- else
211
- calculate_height_by_lines(@buffer_of_lines[0..(@line_index - 1)], prompt_list || prompt)
212
- end
213
- if @prompt_proc
214
- prompt = prompt_list[@line_index]
215
- prompt_width = calculate_width(prompt, true)
216
- end
217
- calculate_nearest_cursor
218
- @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
219
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
220
- @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
221
- @rerender_all = true
222
- end
223
- end
224
-
225
- def set_signal_handlers
226
- @old_trap = Signal.trap('INT') {
227
- clear_dialog(0)
228
- if @scroll_partial_screen
229
- move_cursor_down(@screen_height - (@line_index - @scroll_partial_screen) - 1)
230
- else
231
- move_cursor_down(@highest_in_all - @line_index - 1)
232
- end
233
- Reline::IOGate.move_cursor_column(0)
234
- scroll_down(1)
235
- case @old_trap
236
- when 'DEFAULT', 'SYSTEM_DEFAULT'
237
- raise Interrupt
238
- when 'IGNORE'
239
- # Do nothing
240
- when 'EXIT'
241
- exit
242
- else
243
- @old_trap.call if @old_trap.respond_to?(:call)
244
- end
245
- }
246
- end
247
-
248
- def finalize
249
- Signal.trap('INT', @old_trap)
250
- end
251
-
252
- def eof?
253
- @eof
254
- end
255
-
256
- def reset_variables(prompt = '', encoding:)
257
- @prompt = prompt.gsub("\n", "\\n")
258
- @mark_pointer = nil
259
- @encoding = encoding
260
- @is_multiline = false
261
- @finished = false
262
- @cleared = false
263
- @rerender_all = false
264
- @history_pointer = nil
265
- @kill_ring ||= Reline::KillRing.new
266
- @vi_clipboard = ''
267
- @vi_arg = nil
268
- @waiting_proc = nil
269
- @waiting_operator_proc = nil
270
- @waiting_operator_vi_arg = nil
271
- @completion_journey_data = nil
272
- @completion_state = CompletionState::NORMAL
273
- @perfect_matched = nil
274
- @menu_info = nil
275
- @first_prompt = true
276
- @searching_prompt = nil
277
- @first_char = true
278
- @add_newline_to_end_of_buffer = false
279
- @just_cursor_moving = nil
280
- @cached_prompt_list = nil
281
- @prompt_cache_time = nil
282
- @eof = false
283
- @continuous_insertion_buffer = String.new(encoding: @encoding)
284
- @scroll_partial_screen = nil
285
- @prev_mode_string = nil
286
- @drop_terminate_spaces = false
287
- @in_pasting = false
288
- @auto_indent_proc = nil
289
- @dialogs = []
290
- @previous_rendered_dialog_y = 0
291
- @last_key = nil
292
- @resized = false
293
- reset_line
294
- end
295
-
296
- def reset_line
297
- @cursor = 0
298
- @cursor_max = 0
299
- @byte_pointer = 0
300
- @buffer_of_lines = [String.new(encoding: @encoding)]
301
- @line_index = 0
302
- @previous_line_index = nil
303
- @line = @buffer_of_lines[0]
304
- @first_line_started_from = 0
305
- @move_up = 0
306
- @started_from = 0
307
- @highest_in_this = 1
308
- @highest_in_all = 1
309
- @line_backup_in_history = nil
310
- @multibyte_buffer = String.new(encoding: 'ASCII-8BIT')
311
- @check_new_auto_indent = false
312
- end
313
-
314
- def multiline_on
315
- @is_multiline = true
316
- end
317
-
318
- def multiline_off
319
- @is_multiline = false
320
- end
321
-
322
- private def calculate_height_by_lines(lines, prompt)
323
- result = 0
324
- prompt_list = prompt.is_a?(Array) ? prompt : nil
325
- lines.each_with_index { |line, i|
326
- prompt = prompt_list[i] if prompt_list and prompt_list[i]
327
- result += calculate_height_by_width(calculate_width(prompt, true) + calculate_width(line))
328
- }
329
- result
330
- end
331
-
332
- private def insert_new_line(cursor_line, next_line)
333
- @line = cursor_line
334
- @buffer_of_lines.insert(@line_index + 1, String.new(next_line, encoding: @encoding))
335
- @previous_line_index = @line_index
336
- @line_index += 1
337
- @just_cursor_moving = false
338
- end
339
-
340
- private def calculate_height_by_width(width)
341
- width.div(@screen_size.last) + 1
342
- end
343
-
344
- private def split_by_width(str, max_width)
345
- Reline::Unicode.split_by_width(str, max_width, @encoding)
346
- end
347
-
348
- private def scroll_down(val)
349
- if val <= @rest_height
350
- Reline::IOGate.move_cursor_down(val)
351
- @rest_height -= val
352
- else
353
- Reline::IOGate.move_cursor_down(@rest_height)
354
- Reline::IOGate.scroll_down(val - @rest_height)
355
- @rest_height = 0
356
- end
357
- end
358
-
359
- private def move_cursor_up(val)
360
- if val > 0
361
- Reline::IOGate.move_cursor_up(val)
362
- @rest_height += val
363
- elsif val < 0
364
- move_cursor_down(-val)
365
- end
366
- end
367
-
368
- private def move_cursor_down(val)
369
- if val > 0
370
- Reline::IOGate.move_cursor_down(val)
371
- @rest_height -= val
372
- @rest_height = 0 if @rest_height < 0
373
- elsif val < 0
374
- move_cursor_up(-val)
375
- end
376
- end
377
-
378
- private def calculate_nearest_cursor(line_to_calc = @line, cursor = @cursor, started_from = @started_from, byte_pointer = @byte_pointer, update = true)
379
- new_cursor_max = calculate_width(line_to_calc)
380
- new_cursor = 0
381
- new_byte_pointer = 0
382
- height = 1
383
- max_width = @screen_size.last
384
- if @config.editing_mode_is?(:vi_command)
385
- last_byte_size = Reline::Unicode.get_prev_mbchar_size(line_to_calc, line_to_calc.bytesize)
386
- if last_byte_size > 0
387
- last_mbchar = line_to_calc.byteslice(line_to_calc.bytesize - last_byte_size, last_byte_size)
388
- last_width = Reline::Unicode.get_mbchar_width(last_mbchar)
389
- end_of_line_cursor = new_cursor_max - last_width
390
- else
391
- end_of_line_cursor = new_cursor_max
392
- end
393
- else
394
- end_of_line_cursor = new_cursor_max
395
- end
396
- line_to_calc.grapheme_clusters.each do |gc|
397
- mbchar = gc.encode(Encoding::UTF_8)
398
- mbchar_width = Reline::Unicode.get_mbchar_width(mbchar)
399
- now = new_cursor + mbchar_width
400
- if now > end_of_line_cursor or now > cursor
401
- break
402
- end
403
- new_cursor += mbchar_width
404
- if new_cursor > max_width * height
405
- height += 1
406
- end
407
- new_byte_pointer += gc.bytesize
408
- end
409
- new_started_from = height - 1
410
- if update
411
- @cursor = new_cursor
412
- @cursor_max = new_cursor_max
413
- @started_from = new_started_from
414
- @byte_pointer = new_byte_pointer
415
- else
416
- [new_cursor, new_cursor_max, new_started_from, new_byte_pointer]
417
- end
418
- end
419
-
420
- def rerender_all
421
- @rerender_all = true
422
- process_insert(force: true)
423
- rerender
424
- end
425
-
426
- def rerender
427
- return if @line.nil?
428
- if @menu_info
429
- scroll_down(@highest_in_all - @first_line_started_from)
430
- @rerender_all = true
431
- end
432
- if @menu_info
433
- show_menu
434
- @menu_info = nil
435
- end
436
- prompt, prompt_width, prompt_list = check_multiline_prompt(whole_lines)
437
- cursor_column = (prompt_width + @cursor) % @screen_size.last
438
- if @cleared
439
- clear_screen_buffer(prompt, prompt_list, prompt_width)
440
- @cleared = false
441
- return
442
- end
443
- if @is_multiline and finished? and @scroll_partial_screen
444
- # Re-output all code higher than the screen when finished.
445
- Reline::IOGate.move_cursor_up(@first_line_started_from + @started_from - @scroll_partial_screen)
446
- Reline::IOGate.move_cursor_column(0)
447
- @scroll_partial_screen = nil
448
- new_lines = whole_lines
449
- prompt, prompt_width, prompt_list = check_multiline_prompt(new_lines)
450
- modify_lines(new_lines).each_with_index do |line, index|
451
- @output.write "#{prompt_list ? prompt_list[index] : prompt}#{line}\r\n"
452
- Reline::IOGate.erase_after_cursor
453
- end
454
- @output.flush
455
- clear_dialog(cursor_column)
456
- return
457
- end
458
- new_highest_in_this = calculate_height_by_width(prompt_width + calculate_width(@line.nil? ? '' : @line))
459
- rendered = false
460
- if @add_newline_to_end_of_buffer
461
- clear_dialog_with_trap_key(cursor_column)
462
- rerender_added_newline(prompt, prompt_width, prompt_list)
463
- @add_newline_to_end_of_buffer = false
464
- else
465
- if @just_cursor_moving and not @rerender_all
466
- clear_dialog_with_trap_key(cursor_column)
467
- rendered = just_move_cursor
468
- @just_cursor_moving = false
469
- return
470
- elsif @previous_line_index or new_highest_in_this != @highest_in_this
471
- clear_dialog_with_trap_key(cursor_column)
472
- rerender_changed_current_line
473
- @previous_line_index = nil
474
- rendered = true
475
- elsif @rerender_all
476
- rerender_all_lines
477
- @rerender_all = false
478
- rendered = true
479
- else
480
- end
481
- end
482
- if @is_multiline
483
- if finished?
484
- # Always rerender on finish because output_modifier_proc may return a different output.
485
- new_lines = whole_lines
486
- line = modify_lines(new_lines)[@line_index]
487
- clear_dialog(cursor_column)
488
- prompt, prompt_width, prompt_list = check_multiline_prompt(new_lines)
489
- render_partial(prompt, prompt_width, line, @first_line_started_from)
490
- move_cursor_down(@highest_in_all - (@first_line_started_from + @highest_in_this - 1) - 1)
491
- scroll_down(1)
492
- Reline::IOGate.move_cursor_column(0)
493
- Reline::IOGate.erase_after_cursor
494
- else
495
- if not rendered and not @in_pasting
496
- line = modify_lines(whole_lines)[@line_index]
497
- prompt, prompt_width, prompt_list = check_multiline_prompt(whole_lines)
498
- render_partial(prompt, prompt_width, line, @first_line_started_from)
499
- end
500
- render_dialog(cursor_column)
501
- end
502
- @buffer_of_lines[@line_index] = @line
503
- @rest_height = 0 if @scroll_partial_screen
504
- else
505
- line = modify_lines(whole_lines)[@line_index]
506
- render_partial(prompt, prompt_width, line, 0)
507
- if finished?
508
- scroll_down(1)
509
- Reline::IOGate.move_cursor_column(0)
510
- Reline::IOGate.erase_after_cursor
511
- end
512
- end
513
- end
514
-
515
- class DialogProcScope
516
- def initialize(line_editor, config, proc_to_exec, context)
517
- @line_editor = line_editor
518
- @config = config
519
- @proc_to_exec = proc_to_exec
520
- @context = context
521
- @cursor_pos = Reline::CursorPos.new
522
- end
523
-
524
- def context
525
- @context
526
- end
527
-
528
- def retrieve_completion_block(set_completion_quote_character = false)
529
- @line_editor.retrieve_completion_block(set_completion_quote_character)
530
- end
531
-
532
- def call_completion_proc_with_checking_args(pre, target, post)
533
- @line_editor.call_completion_proc_with_checking_args(pre, target, post)
534
- end
535
-
536
- def set_dialog(dialog)
537
- @dialog = dialog
538
- end
539
-
540
- def dialog
541
- @dialog
542
- end
543
-
544
- def set_cursor_pos(col, row)
545
- @cursor_pos.x = col
546
- @cursor_pos.y = row
547
- end
548
-
549
- def set_key(key)
550
- @key = key
551
- end
552
-
553
- def key
554
- @key
555
- end
556
-
557
- def cursor_pos
558
- @cursor_pos
559
- end
560
-
561
- def just_cursor_moving
562
- @line_editor.instance_variable_get(:@just_cursor_moving)
563
- end
564
-
565
- def screen_width
566
- @line_editor.instance_variable_get(:@screen_size).last
567
- end
568
-
569
- def screen_height
570
- @line_editor.instance_variable_get(:@screen_size).first
571
- end
572
-
573
- def preferred_dialog_height
574
- rest_height = @line_editor.instance_variable_get(:@rest_height)
575
- scroll_partial_screen = @line_editor.instance_variable_get(:@scroll_partial_screen) || 0
576
- [cursor_pos.y - scroll_partial_screen, rest_height, (screen_height + 6) / 5].max
577
- end
578
-
579
- def completion_journey_data
580
- @line_editor.instance_variable_get(:@completion_journey_data)
581
- end
582
-
583
- def config
584
- @config
585
- end
586
-
587
- def call
588
- instance_exec(&@proc_to_exec)
589
- end
590
- end
591
-
592
- class Dialog
593
- attr_reader :name, :contents, :width
594
- attr_accessor :scroll_top, :pointer, :column, :vertical_offset, :trap_key
595
-
596
- def initialize(name, config, proc_scope)
597
- @name = name
598
- @config = config
599
- @proc_scope = proc_scope
600
- @width = nil
601
- @scroll_top = 0
602
- @trap_key = nil
603
- end
604
-
605
- def set_cursor_pos(col, row)
606
- @proc_scope.set_cursor_pos(col, row)
607
- end
608
-
609
- def width=(v)
610
- @width = v
611
- end
612
-
613
- def contents=(contents)
614
- @contents = contents
615
- if contents and @width.nil?
616
- @width = contents.map{ |line| Reline::Unicode.calculate_width(line, true) }.max
617
- end
618
- end
619
-
620
- def call(key)
621
- @proc_scope.set_dialog(self)
622
- @proc_scope.set_key(key)
623
- dialog_render_info = @proc_scope.call
624
- if @trap_key
625
- if @trap_key.any?{ |i| i.is_a?(Array) } # multiple trap
626
- @trap_key.each do |t|
627
- @config.add_oneshot_key_binding(t, @name)
628
- end
629
- elsif @trap_key.is_a?(Array)
630
- @config.add_oneshot_key_binding(@trap_key, @name)
631
- elsif @trap_key.is_a?(Integer) or @trap_key.is_a?(Reline::Key)
632
- @config.add_oneshot_key_binding([@trap_key], @name)
633
- end
634
- end
635
- dialog_render_info
636
- end
637
- end
638
-
639
- def add_dialog_proc(name, p, context = nil)
640
- dialog = Dialog.new(name, @config, DialogProcScope.new(self, @config, p, context))
641
- if index = @dialogs.find_index { |d| d.name == name }
642
- @dialogs[index] = dialog
643
- else
644
- @dialogs << dialog
645
- end
646
- end
647
-
648
- DIALOG_DEFAULT_HEIGHT = 20
649
- private def render_dialog(cursor_column)
650
- changes = @dialogs.map do |dialog|
651
- old_dialog = dialog.dup
652
- update_each_dialog(dialog, cursor_column)
653
- [old_dialog, dialog]
654
- end
655
- render_dialog_changes(changes, cursor_column)
656
- end
657
-
658
- private def padding_space_with_escape_sequences(str, width)
659
- padding_width = width - calculate_width(str, true)
660
- # padding_width should be only positive value. But macOS and Alacritty returns negative value.
661
- padding_width = 0 if padding_width < 0
662
- str + (' ' * padding_width)
663
- end
664
-
665
- private def range_subtract(base_ranges, subtract_ranges)
666
- indices = base_ranges.flat_map(&:to_a).uniq.sort - subtract_ranges.flat_map(&:to_a)
667
- chunks = indices.chunk_while { |a, b| a + 1 == b }
668
- chunks.map { |a| a.first...a.last + 1 }
669
- end
670
-
671
- private def dialog_range(dialog, dialog_y)
672
- x_range = dialog.column...dialog.column + dialog.width
673
- y_range = dialog_y + dialog.vertical_offset...dialog_y + dialog.vertical_offset + dialog.contents.size
674
- [x_range, y_range]
675
- end
676
-
677
- private def render_dialog_changes(changes, cursor_column)
678
- # Collect x-coordinate range and content of previous and current dialogs for each line
679
- old_dialog_ranges = {}
680
- new_dialog_ranges = {}
681
- new_dialog_contents = {}
682
- changes.each do |old_dialog, new_dialog|
683
- if old_dialog.contents
684
- x_range, y_range = dialog_range(old_dialog, @previous_rendered_dialog_y)
685
- y_range.each do |y|
686
- (old_dialog_ranges[y] ||= []) << x_range
687
- end
688
- end
689
- if new_dialog.contents
690
- x_range, y_range = dialog_range(new_dialog, @first_line_started_from + @started_from)
691
- y_range.each do |y|
692
- (new_dialog_ranges[y] ||= []) << x_range
693
- (new_dialog_contents[y] ||= []) << [x_range, new_dialog.contents[y - y_range.begin]]
694
- end
695
- end
696
- end
697
- return if old_dialog_ranges.empty? && new_dialog_ranges.empty?
698
-
699
- # Calculate x-coordinate ranges to restore text that was hidden behind dialogs for each line
700
- ranges_to_restore = {}
701
- subtract_cache = {}
702
- old_dialog_ranges.each do |y, old_x_ranges|
703
- new_x_ranges = new_dialog_ranges[y] || []
704
- ranges = subtract_cache[[old_x_ranges, new_x_ranges]] ||= range_subtract(old_x_ranges, new_x_ranges)
705
- ranges_to_restore[y] = ranges if ranges.any?
706
- end
707
-
708
- # Create visual_lines for restoring text hidden behind dialogs
709
- if ranges_to_restore.any?
710
- lines = whole_lines
711
- prompt, _prompt_width, prompt_list = check_multiline_prompt(lines, force_recalc: true)
712
- modified_lines = modify_lines(lines, force_recalc: true)
713
- visual_lines = []
714
- modified_lines.each_with_index { |l, i|
715
- pr = prompt_list ? prompt_list[i] : prompt
716
- vl, = split_by_width(pr + l, @screen_size.last)
717
- vl.compact!
718
- visual_lines.concat(vl)
719
- }
720
- end
721
-
722
- # Clear and rerender all dialogs line by line
723
- Reline::IOGate.hide_cursor
724
- ymin, ymax = (ranges_to_restore.keys + new_dialog_ranges.keys).minmax
725
- scroll_partial_screen = @scroll_partial_screen || 0
726
- screen_y_range = scroll_partial_screen..(scroll_partial_screen + @screen_height - 1)
727
- ymin = ymin.clamp(screen_y_range.begin, screen_y_range.end)
728
- ymax = ymax.clamp(screen_y_range.begin, screen_y_range.end)
729
- dialog_y = @first_line_started_from + @started_from
730
- cursor_y = dialog_y
731
- if @highest_in_all <= ymax
732
- scroll_down(ymax - cursor_y)
733
- move_cursor_up(ymax - cursor_y)
734
- end
735
- (ymin..ymax).each do |y|
736
- move_cursor_down(y - cursor_y)
737
- cursor_y = y
738
- new_x_ranges = new_dialog_ranges[y]
739
- restore_ranges = ranges_to_restore[y]
740
- # Restore text that was hidden behind dialogs
741
- if restore_ranges
742
- line = visual_lines[y] || ''
743
- restore_ranges.each do |range|
744
- col = range.begin
745
- width = range.end - range.begin
746
- s = padding_space_with_escape_sequences(Reline::Unicode.take_range(line, col, width), width)
747
- Reline::IOGate.move_cursor_column(col)
748
- @output.write "\e[0m#{s}\e[0m"
749
- end
750
- max_column = [calculate_width(line, true), new_x_ranges&.map(&:end)&.max || 0].max
751
- if max_column < restore_ranges.map(&:end).max
752
- Reline::IOGate.move_cursor_column(max_column)
753
- Reline::IOGate.erase_after_cursor
754
- end
755
- end
756
- # Render dialog contents
757
- new_dialog_contents[y]&.each do |x_range, content|
758
- Reline::IOGate.move_cursor_column(x_range.begin)
759
- @output.write "\e[0m#{content}\e[0m"
760
- end
761
- end
762
- move_cursor_up(cursor_y - dialog_y)
763
- Reline::IOGate.move_cursor_column(cursor_column)
764
- Reline::IOGate.show_cursor
765
-
766
- @previous_rendered_dialog_y = dialog_y
767
- end
768
-
769
- private def update_each_dialog(dialog, cursor_column)
770
- if @in_pasting
771
- dialog.contents = nil
772
- dialog.trap_key = nil
773
- return
774
- end
775
- dialog.set_cursor_pos(cursor_column, @first_line_started_from + @started_from)
776
- dialog_render_info = dialog.call(@last_key)
777
- if dialog_render_info.nil? or dialog_render_info.contents.nil? or dialog_render_info.contents.empty?
778
- dialog.contents = nil
779
- dialog.trap_key = nil
780
- return
781
- end
782
- contents = dialog_render_info.contents
783
- pointer = dialog.pointer
784
- if dialog_render_info.width
785
- dialog.width = dialog_render_info.width
786
- else
787
- dialog.width = contents.map { |l| calculate_width(l, true) }.max
788
- end
789
- height = dialog_render_info.height || DIALOG_DEFAULT_HEIGHT
790
- height = contents.size if contents.size < height
791
- if contents.size > height
792
- if dialog.pointer
793
- if dialog.pointer < 0
794
- dialog.scroll_top = 0
795
- elsif (dialog.pointer - dialog.scroll_top) >= (height - 1)
796
- dialog.scroll_top = dialog.pointer - (height - 1)
797
- elsif (dialog.pointer - dialog.scroll_top) < 0
798
- dialog.scroll_top = dialog.pointer
799
- end
800
- pointer = dialog.pointer - dialog.scroll_top
801
- else
802
- dialog.scroll_top = 0
803
- end
804
- contents = contents[dialog.scroll_top, height]
805
- end
806
- if dialog_render_info.scrollbar and dialog_render_info.contents.size > height
807
- bar_max_height = height * 2
808
- moving_distance = (dialog_render_info.contents.size - height) * 2
809
- position_ratio = dialog.scroll_top.zero? ? 0.0 : ((dialog.scroll_top * 2).to_f / moving_distance)
810
- bar_height = (bar_max_height * ((contents.size * 2).to_f / (dialog_render_info.contents.size * 2))).floor.to_i
811
- bar_height = MINIMUM_SCROLLBAR_HEIGHT if bar_height < MINIMUM_SCROLLBAR_HEIGHT
812
- scrollbar_pos = ((bar_max_height - bar_height) * position_ratio).floor.to_i
813
- else
814
- scrollbar_pos = nil
815
- end
816
- upper_space = @first_line_started_from - @started_from
817
- dialog.column = dialog_render_info.pos.x
818
- dialog.width += @block_elem_width if scrollbar_pos
819
- diff = (dialog.column + dialog.width) - (@screen_size.last)
820
- if diff > 0
821
- dialog.column -= diff
822
- end
823
- if (@rest_height - dialog_render_info.pos.y) >= height
824
- dialog.vertical_offset = dialog_render_info.pos.y + 1
825
- elsif upper_space >= height
826
- dialog.vertical_offset = dialog_render_info.pos.y - height
827
- else
828
- dialog.vertical_offset = dialog_render_info.pos.y + 1
829
- end
830
- if dialog.column < 0
831
- dialog.column = 0
832
- dialog.width = @screen_size.last
833
- end
834
- dialog.contents = contents.map.with_index do |item, i|
835
- if i == pointer
836
- fg_color = dialog_render_info.pointer_fg_color
837
- bg_color = dialog_render_info.pointer_bg_color
838
- else
839
- fg_color = dialog_render_info.fg_color
840
- bg_color = dialog_render_info.bg_color
841
- end
842
- str_width = dialog.width - (scrollbar_pos.nil? ? 0 : @block_elem_width)
843
- str = padding_space_with_escape_sequences(Reline::Unicode.take_range(item, 0, str_width), str_width)
844
- colored_content = "\e[#{bg_color}m\e[#{fg_color}m#{str}"
845
- if scrollbar_pos
846
- color_seq = "\e[37m"
847
- if scrollbar_pos <= (i * 2) and (i * 2 + 1) < (scrollbar_pos + bar_height)
848
- colored_content + color_seq + @full_block
849
- elsif scrollbar_pos <= (i * 2) and (i * 2) < (scrollbar_pos + bar_height)
850
- colored_content + color_seq + @upper_half_block
851
- elsif scrollbar_pos <= (i * 2 + 1) and (i * 2) < (scrollbar_pos + bar_height)
852
- colored_content + color_seq + @lower_half_block
853
- else
854
- colored_content + color_seq + ' ' * @block_elem_width
855
- end
856
- else
857
- colored_content
858
- end
859
- end
860
- end
861
-
862
- private def clear_dialog(cursor_column)
863
- changes = @dialogs.map do |dialog|
864
- old_dialog = dialog.dup
865
- dialog.contents = nil
866
- [old_dialog, dialog]
867
- end
868
- render_dialog_changes(changes, cursor_column)
869
- end
870
-
871
- private def clear_dialog_with_trap_key(cursor_column)
872
- clear_dialog(cursor_column)
873
- @dialogs.each do |dialog|
874
- dialog.trap_key = nil
875
- end
876
- end
877
-
878
- private def calculate_scroll_partial_screen(highest_in_all, cursor_y)
879
- if @screen_height < highest_in_all
880
- old_scroll_partial_screen = @scroll_partial_screen
881
- if cursor_y == 0
882
- @scroll_partial_screen = 0
883
- elsif cursor_y == (highest_in_all - 1)
884
- @scroll_partial_screen = highest_in_all - @screen_height
885
- else
886
- if @scroll_partial_screen
887
- if cursor_y <= @scroll_partial_screen
888
- @scroll_partial_screen = cursor_y
889
- elsif (@scroll_partial_screen + @screen_height - 1) < cursor_y
890
- @scroll_partial_screen = cursor_y - (@screen_height - 1)
891
- end
892
- else
893
- if cursor_y > (@screen_height - 1)
894
- @scroll_partial_screen = cursor_y - (@screen_height - 1)
895
- else
896
- @scroll_partial_screen = 0
897
- end
898
- end
899
- end
900
- if @scroll_partial_screen != old_scroll_partial_screen
901
- @rerender_all = true
902
- end
903
- else
904
- if @scroll_partial_screen
905
- @rerender_all = true
906
- end
907
- @scroll_partial_screen = nil
908
- end
909
- end
910
-
911
- private def rerender_added_newline(prompt, prompt_width, prompt_list)
912
- @buffer_of_lines[@previous_line_index] = @line
913
- @line = @buffer_of_lines[@line_index]
914
- @previous_line_index = nil
915
- if @in_pasting
916
- scroll_down(1)
917
- else
918
- lines = whole_lines
919
- prev_line_prompt = @prompt_proc ? prompt_list[@line_index - 1] : prompt
920
- prev_line_prompt_width = @prompt_proc ? calculate_width(prev_line_prompt, true) : prompt_width
921
- prev_line = modify_lines(lines)[@line_index - 1]
922
- move_cursor_up(@started_from)
923
- render_partial(prev_line_prompt, prev_line_prompt_width, prev_line, @first_line_started_from + @started_from, with_control: false)
924
- scroll_down(1)
925
- render_partial(prompt, prompt_width, @line, @first_line_started_from + @started_from + 1, with_control: false)
926
- end
927
- @cursor = @cursor_max = calculate_width(@line)
928
- @byte_pointer = @line.bytesize
929
- @highest_in_all += @highest_in_this
930
- @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
931
- @first_line_started_from += @started_from + 1
932
- @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
933
- end
934
-
935
- def just_move_cursor
936
- prompt, prompt_width, prompt_list = check_multiline_prompt(@buffer_of_lines)
937
- move_cursor_up(@started_from)
938
- new_first_line_started_from =
939
- if @line_index.zero?
940
- 0
941
- else
942
- calculate_height_by_lines(@buffer_of_lines[0..(@line_index - 1)], prompt_list || prompt)
943
- end
944
- first_line_diff = new_first_line_started_from - @first_line_started_from
945
- @cursor, @cursor_max, _, @byte_pointer = calculate_nearest_cursor(@buffer_of_lines[@line_index], @cursor, @started_from, @byte_pointer, false)
946
- new_started_from = calculate_height_by_width(prompt_width + @cursor) - 1
947
- calculate_scroll_partial_screen(@highest_in_all, new_first_line_started_from + new_started_from)
948
- @previous_line_index = nil
949
- @line = @buffer_of_lines[@line_index]
950
- if @rerender_all
951
- rerender_all_lines
952
- @rerender_all = false
953
- true
954
- else
955
- @first_line_started_from = new_first_line_started_from
956
- @started_from = new_started_from
957
- move_cursor_down(first_line_diff + @started_from)
958
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
959
- false
960
- end
961
- end
962
-
963
- private def rerender_changed_current_line
964
- new_lines = whole_lines
965
- prompt, prompt_width, prompt_list = check_multiline_prompt(new_lines)
966
- all_height = calculate_height_by_lines(new_lines, prompt_list || prompt)
967
- diff = all_height - @highest_in_all
968
- move_cursor_down(@highest_in_all - @first_line_started_from - @started_from - 1)
969
- if diff > 0
970
- scroll_down(diff)
971
- move_cursor_up(all_height - 1)
972
- elsif diff < 0
973
- (-diff).times do
974
- Reline::IOGate.move_cursor_column(0)
975
- Reline::IOGate.erase_after_cursor
976
- move_cursor_up(1)
977
- end
978
- move_cursor_up(all_height - 1)
979
- else
980
- move_cursor_up(all_height - 1)
981
- end
982
- @highest_in_all = all_height
983
- back = render_whole_lines(new_lines, prompt_list || prompt, prompt_width)
984
- move_cursor_up(back)
985
- if @previous_line_index
986
- @buffer_of_lines[@previous_line_index] = @line
987
- @line = @buffer_of_lines[@line_index]
988
- end
989
- @first_line_started_from =
990
- if @line_index.zero?
991
- 0
992
- else
993
- calculate_height_by_lines(@buffer_of_lines[0..(@line_index - 1)], prompt_list || prompt)
994
- end
995
- if @prompt_proc
996
- prompt = prompt_list[@line_index]
997
- prompt_width = calculate_width(prompt, true)
998
- end
999
- move_cursor_down(@first_line_started_from)
1000
- calculate_nearest_cursor
1001
- @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
1002
- move_cursor_down(@started_from)
1003
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
1004
- @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
1005
- end
1006
-
1007
- private def rerender_all_lines
1008
- move_cursor_up(@first_line_started_from + @started_from)
1009
- Reline::IOGate.move_cursor_column(0)
1010
- back = 0
1011
- new_buffer = whole_lines
1012
- prompt, prompt_width, prompt_list = check_multiline_prompt(new_buffer)
1013
- new_buffer.each_with_index do |line, index|
1014
- prompt_width = calculate_width(prompt_list[index], true) if @prompt_proc
1015
- width = prompt_width + calculate_width(line)
1016
- height = calculate_height_by_width(width)
1017
- back += height
1018
- end
1019
- old_highest_in_all = @highest_in_all
1020
- if @line_index.zero?
1021
- new_first_line_started_from = 0
1022
- else
1023
- new_first_line_started_from = calculate_height_by_lines(new_buffer[0..(@line_index - 1)], prompt_list || prompt)
1024
- end
1025
- new_started_from = calculate_height_by_width(prompt_width + @cursor) - 1
1026
- calculate_scroll_partial_screen(back, new_first_line_started_from + new_started_from)
1027
- if @scroll_partial_screen
1028
- move_cursor_up(@first_line_started_from + @started_from)
1029
- scroll_down(@screen_height - 1)
1030
- move_cursor_up(@screen_height)
1031
- Reline::IOGate.move_cursor_column(0)
1032
- elsif back > old_highest_in_all
1033
- scroll_down(back - 1)
1034
- move_cursor_up(back - 1)
1035
- elsif back < old_highest_in_all
1036
- scroll_down(back)
1037
- Reline::IOGate.erase_after_cursor
1038
- (old_highest_in_all - back - 1).times do
1039
- scroll_down(1)
1040
- Reline::IOGate.erase_after_cursor
1041
- end
1042
- move_cursor_up(old_highest_in_all - 1)
1043
- end
1044
- render_whole_lines(new_buffer, prompt_list || prompt, prompt_width)
1045
- if @prompt_proc
1046
- prompt = prompt_list[@line_index]
1047
- prompt_width = calculate_width(prompt, true)
1048
- end
1049
- @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
1050
- @highest_in_all = back
1051
- @first_line_started_from = new_first_line_started_from
1052
- @started_from = new_started_from
1053
- if @scroll_partial_screen
1054
- Reline::IOGate.move_cursor_up(@screen_height - (@first_line_started_from + @started_from - @scroll_partial_screen) - 1)
1055
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
1056
- else
1057
- move_cursor_down(@first_line_started_from + @started_from - back + 1)
1058
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
1059
- end
1060
- end
1061
-
1062
- private def render_whole_lines(lines, prompt, prompt_width)
1063
- rendered_height = 0
1064
- modify_lines(lines).each_with_index do |line, index|
1065
- if prompt.is_a?(Array)
1066
- line_prompt = prompt[index]
1067
- prompt_width = calculate_width(line_prompt, true)
1068
- else
1069
- line_prompt = prompt
1070
- end
1071
- height = render_partial(line_prompt, prompt_width, line, rendered_height, with_control: false)
1072
- if index < (lines.size - 1)
1073
- if @scroll_partial_screen
1074
- if (@scroll_partial_screen - height) < rendered_height and (@scroll_partial_screen + @screen_height - 1) >= (rendered_height + height)
1075
- move_cursor_down(1)
1076
- end
1077
- else
1078
- scroll_down(1)
1079
- end
1080
- rendered_height += height
1081
- else
1082
- rendered_height += height - 1
1083
- end
1084
- end
1085
- rendered_height
1086
- end
1087
-
1088
- private def render_partial(prompt, prompt_width, line_to_render, this_started_from, with_control: true)
1089
- visual_lines, height = split_by_width(line_to_render.nil? ? prompt : prompt + line_to_render, @screen_size.last)
1090
- cursor_up_from_last_line = 0
1091
- if @scroll_partial_screen
1092
- last_visual_line = this_started_from + (height - 1)
1093
- last_screen_line = @scroll_partial_screen + (@screen_height - 1)
1094
- if (@scroll_partial_screen - this_started_from) >= height
1095
- # Render nothing because this line is before the screen.
1096
- visual_lines = []
1097
- elsif this_started_from > last_screen_line
1098
- # Render nothing because this line is after the screen.
1099
- visual_lines = []
1100
- else
1101
- deleted_lines_before_screen = []
1102
- if @scroll_partial_screen > this_started_from and last_visual_line >= @scroll_partial_screen
1103
- # A part of visual lines are before the screen.
1104
- deleted_lines_before_screen = visual_lines.shift((@scroll_partial_screen - this_started_from) * 2)
1105
- deleted_lines_before_screen.compact!
1106
- end
1107
- if this_started_from <= last_screen_line and last_screen_line < last_visual_line
1108
- # A part of visual lines are after the screen.
1109
- visual_lines.pop((last_visual_line - last_screen_line) * 2)
1110
- end
1111
- move_cursor_up(deleted_lines_before_screen.size - @started_from)
1112
- cursor_up_from_last_line = @started_from - deleted_lines_before_screen.size
1113
- end
1114
- end
1115
- if with_control
1116
- if height > @highest_in_this
1117
- diff = height - @highest_in_this
1118
- scroll_down(diff)
1119
- @highest_in_all += diff
1120
- @highest_in_this = height
1121
- move_cursor_up(diff)
1122
- elsif height < @highest_in_this
1123
- diff = @highest_in_this - height
1124
- @highest_in_all -= diff
1125
- @highest_in_this = height
1126
- end
1127
- move_cursor_up(@started_from)
1128
- @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
1129
- cursor_up_from_last_line = height - 1 - @started_from
1130
- end
1131
- if Reline::Unicode::CSI_REGEXP.match?(prompt + line_to_render)
1132
- @output.write "\e[0m" # clear character decorations
1133
- end
1134
- visual_lines.each_with_index do |line, index|
1135
- Reline::IOGate.move_cursor_column(0)
1136
- if line.nil?
1137
- if calculate_width(visual_lines[index - 1], true) == Reline::IOGate.get_screen_size.last
1138
- # reaches the end of line
1139
- if Reline::IOGate.win? and Reline::IOGate.win_legacy_console?
1140
- # A newline is automatically inserted if a character is rendered at
1141
- # eol on command prompt.
1142
- else
1143
- # When the cursor is at the end of the line and erases characters
1144
- # after the cursor, some terminals delete the character at the
1145
- # cursor position.
1146
- move_cursor_down(1)
1147
- Reline::IOGate.move_cursor_column(0)
1148
- end
1149
- else
1150
- Reline::IOGate.erase_after_cursor
1151
- move_cursor_down(1)
1152
- Reline::IOGate.move_cursor_column(0)
1153
- end
1154
- next
1155
- end
1156
- @output.write line
1157
- if Reline::IOGate.win? and Reline::IOGate.win_legacy_console? and calculate_width(line, true) == Reline::IOGate.get_screen_size.last
1158
- # A newline is automatically inserted if a character is rendered at eol on command prompt.
1159
- @rest_height -= 1 if @rest_height > 0
1160
- end
1161
- @output.flush
1162
- if @first_prompt
1163
- @first_prompt = false
1164
- @pre_input_hook&.call
1165
- end
1166
- end
1167
- unless visual_lines.empty?
1168
- Reline::IOGate.erase_after_cursor
1169
- Reline::IOGate.move_cursor_column(0)
1170
- end
1171
- if with_control
1172
- # Just after rendring, so the cursor is on the last line.
1173
- if finished?
1174
- Reline::IOGate.move_cursor_column(0)
1175
- else
1176
- # Moves up from bottom of lines to the cursor position.
1177
- move_cursor_up(cursor_up_from_last_line)
1178
- # This logic is buggy if a fullwidth char is wrapped because there is only one halfwidth at end of a line.
1179
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
1180
- end
1181
- end
1182
- height
1183
- end
1184
-
1185
- private def modify_lines(before, force_recalc: false)
1186
- return before if !force_recalc && (before.nil? || before.empty? || simplified_rendering?)
1187
-
1188
- if after = @output_modifier_proc&.call("#{before.join("\n")}\n", complete: finished?)
1189
- after.lines("\n").map { |l| l.chomp('') }
1190
- else
1191
- before
1192
- end
1193
- end
1194
-
1195
- private def show_menu
1196
- scroll_down(@highest_in_all - @first_line_started_from)
1197
- @rerender_all = true
1198
- @menu_info.list.sort!.each do |item|
1199
- Reline::IOGate.move_cursor_column(0)
1200
- @output.write item
1201
- @output.flush
1202
- scroll_down(1)
1203
- end
1204
- scroll_down(@highest_in_all - 1)
1205
- move_cursor_up(@highest_in_all - 1 - @first_line_started_from)
1206
- end
1207
-
1208
- private def clear_screen_buffer(prompt, prompt_list, prompt_width)
1209
- Reline::IOGate.clear_screen
1210
- back = 0
1211
- modify_lines(whole_lines).each_with_index do |line, index|
1212
- if @prompt_proc
1213
- pr = prompt_list[index]
1214
- height = render_partial(pr, calculate_width(pr), line, back, with_control: false)
1215
- else
1216
- height = render_partial(prompt, prompt_width, line, back, with_control: false)
1217
- end
1218
- if index < (@buffer_of_lines.size - 1)
1219
- move_cursor_down(1)
1220
- back += height
1221
- end
1222
- end
1223
- move_cursor_up(back)
1224
- move_cursor_down(@first_line_started_from + @started_from)
1225
- @rest_height = (Reline::IOGate.get_screen_size.first - 1) - Reline::IOGate.cursor_pos.y
1226
- Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
1227
- end
1228
-
1229
- def editing_mode
1230
- @config.editing_mode
1231
- end
1232
-
1233
- private def menu(target, list)
1234
- @menu_info = MenuInfo.new(target, list)
1235
- end
1236
-
1237
- private def complete_internal_proc(list, is_menu)
1238
- preposing, target, postposing = retrieve_completion_block
1239
- list = list.select { |i|
1240
- if i and not Encoding.compatible?(target.encoding, i.encoding)
1241
- raise Encoding::CompatibilityError, "#{target.encoding.name} is not compatible with #{i.encoding.name}"
1242
- end
1243
- if @config.completion_ignore_case
1244
- i&.downcase&.start_with?(target.downcase)
1245
- else
1246
- i&.start_with?(target)
1247
- end
1248
- }.uniq
1249
- if is_menu
1250
- menu(target, list)
1251
- return nil
1252
- end
1253
- completed = list.inject { |memo, item|
1254
- begin
1255
- memo_mbchars = memo.unicode_normalize.grapheme_clusters
1256
- item_mbchars = item.unicode_normalize.grapheme_clusters
1257
- rescue Encoding::CompatibilityError
1258
- memo_mbchars = memo.grapheme_clusters
1259
- item_mbchars = item.grapheme_clusters
1260
- end
1261
- size = [memo_mbchars.size, item_mbchars.size].min
1262
- result = ''
1263
- size.times do |i|
1264
- if @config.completion_ignore_case
1265
- if memo_mbchars[i].casecmp?(item_mbchars[i])
1266
- result << memo_mbchars[i]
1267
- else
1268
- break
1269
- end
1270
- else
1271
- if memo_mbchars[i] == item_mbchars[i]
1272
- result << memo_mbchars[i]
1273
- else
1274
- break
1275
- end
1276
- end
1277
- end
1278
- result
1279
- }
1280
- [target, preposing, completed, postposing]
1281
- end
1282
-
1283
- private def complete(list, just_show_list = false)
1284
- case @completion_state
1285
- when CompletionState::NORMAL, CompletionState::JOURNEY
1286
- @completion_state = CompletionState::COMPLETION
1287
- when CompletionState::PERFECT_MATCH
1288
- @dig_perfect_match_proc&.(@perfect_matched)
1289
- end
1290
- if just_show_list
1291
- is_menu = true
1292
- elsif @completion_state == CompletionState::MENU
1293
- is_menu = true
1294
- elsif @completion_state == CompletionState::MENU_WITH_PERFECT_MATCH
1295
- is_menu = true
1296
- else
1297
- is_menu = false
1298
- end
1299
- result = complete_internal_proc(list, is_menu)
1300
- if @completion_state == CompletionState::MENU_WITH_PERFECT_MATCH
1301
- @completion_state = CompletionState::PERFECT_MATCH
1302
- end
1303
- return if result.nil?
1304
- target, preposing, completed, postposing = result
1305
- return if completed.nil?
1306
- if target <= completed and (@completion_state == CompletionState::COMPLETION)
1307
- if list.include?(completed)
1308
- if list.one?
1309
- @completion_state = CompletionState::PERFECT_MATCH
1310
- else
1311
- @completion_state = CompletionState::MENU_WITH_PERFECT_MATCH
1312
- end
1313
- @perfect_matched = completed
1314
- else
1315
- @completion_state = CompletionState::MENU
1316
- end
1317
- if not just_show_list and target < completed
1318
- @line = (preposing + completed + completion_append_character.to_s + postposing).split("\n")[@line_index] || String.new(encoding: @encoding)
1319
- line_to_pointer = (preposing + completed + completion_append_character.to_s).split("\n").last || String.new(encoding: @encoding)
1320
- @cursor_max = calculate_width(@line)
1321
- @cursor = calculate_width(line_to_pointer)
1322
- @byte_pointer = line_to_pointer.bytesize
1323
- end
1324
- end
1325
- end
1326
-
1327
- private def move_completed_list(list, direction)
1328
- case @completion_state
1329
- when CompletionState::NORMAL, CompletionState::COMPLETION,
1330
- CompletionState::MENU, CompletionState::MENU_WITH_PERFECT_MATCH
1331
- @completion_state = CompletionState::JOURNEY
1332
- result = retrieve_completion_block
1333
- return if result.nil?
1334
- preposing, target, postposing = result
1335
- @completion_journey_data = CompletionJourneyData.new(
1336
- preposing, postposing,
1337
- [target] + list.select{ |item| item.start_with?(target) }, 0)
1338
- if @completion_journey_data.list.size == 1
1339
- @completion_journey_data.pointer = 0
1340
- else
1341
- case direction
1342
- when :up
1343
- @completion_journey_data.pointer = @completion_journey_data.list.size - 1
1344
- when :down
1345
- @completion_journey_data.pointer = 1
1346
- end
1347
- end
1348
- @completion_state = CompletionState::JOURNEY
1349
- else
1350
- case direction
1351
- when :up
1352
- @completion_journey_data.pointer -= 1
1353
- if @completion_journey_data.pointer < 0
1354
- @completion_journey_data.pointer = @completion_journey_data.list.size - 1
1355
- end
1356
- when :down
1357
- @completion_journey_data.pointer += 1
1358
- if @completion_journey_data.pointer >= @completion_journey_data.list.size
1359
- @completion_journey_data.pointer = 0
1360
- end
1361
- end
1362
- end
1363
- completed = @completion_journey_data.list[@completion_journey_data.pointer]
1364
- new_line = (@completion_journey_data.preposing + completed + @completion_journey_data.postposing).split("\n")[@line_index]
1365
- @line = new_line.nil? ? String.new(encoding: @encoding) : new_line
1366
- line_to_pointer = (@completion_journey_data.preposing + completed).split("\n").last
1367
- line_to_pointer = String.new(encoding: @encoding) if line_to_pointer.nil?
1368
- @cursor_max = calculate_width(@line)
1369
- @cursor = calculate_width(line_to_pointer)
1370
- @byte_pointer = line_to_pointer.bytesize
1371
- end
1372
-
1373
- private def run_for_operators(key, method_symbol, &block)
1374
- if @waiting_operator_proc
1375
- if VI_MOTIONS.include?(method_symbol)
1376
- old_cursor, old_byte_pointer = @cursor, @byte_pointer
1377
- @vi_arg = @waiting_operator_vi_arg if @waiting_operator_vi_arg&.> 1
1378
- block.(true)
1379
- unless @waiting_proc
1380
- cursor_diff, byte_pointer_diff = @cursor - old_cursor, @byte_pointer - old_byte_pointer
1381
- @cursor, @byte_pointer = old_cursor, old_byte_pointer
1382
- @waiting_operator_proc.(cursor_diff, byte_pointer_diff)
1383
- else
1384
- old_waiting_proc = @waiting_proc
1385
- old_waiting_operator_proc = @waiting_operator_proc
1386
- current_waiting_operator_proc = @waiting_operator_proc
1387
- @waiting_proc = proc { |k|
1388
- old_cursor, old_byte_pointer = @cursor, @byte_pointer
1389
- old_waiting_proc.(k)
1390
- cursor_diff, byte_pointer_diff = @cursor - old_cursor, @byte_pointer - old_byte_pointer
1391
- @cursor, @byte_pointer = old_cursor, old_byte_pointer
1392
- current_waiting_operator_proc.(cursor_diff, byte_pointer_diff)
1393
- @waiting_operator_proc = old_waiting_operator_proc
1394
- }
1395
- end
1396
- else
1397
- # Ignores operator when not motion is given.
1398
- block.(false)
1399
- end
1400
- @waiting_operator_proc = nil
1401
- @waiting_operator_vi_arg = nil
1402
- if @vi_arg
1403
- @rerender_all = true
1404
- @vi_arg = nil
1405
- end
1406
- else
1407
- block.(false)
1408
- end
1409
- end
1410
-
1411
- private def argumentable?(method_obj)
1412
- method_obj and method_obj.parameters.any? { |param| param[0] == :key and param[1] == :arg }
1413
- end
1414
-
1415
- private def inclusive?(method_obj)
1416
- # If a motion method with the keyword argument "inclusive" follows the
1417
- # operator, it must contain the character at the cursor position.
1418
- method_obj and method_obj.parameters.any? { |param| param[0] == :key and param[1] == :inclusive }
1419
- end
1420
-
1421
- def wrap_method_call(method_symbol, method_obj, key, with_operator = false)
1422
- if @config.editing_mode_is?(:emacs, :vi_insert) and @waiting_proc.nil? and @waiting_operator_proc.nil?
1423
- not_insertion = method_symbol != :ed_insert
1424
- process_insert(force: not_insertion)
1425
- end
1426
- if @vi_arg and argumentable?(method_obj)
1427
- if with_operator and inclusive?(method_obj)
1428
- method_obj.(key, arg: @vi_arg, inclusive: true)
1429
- else
1430
- method_obj.(key, arg: @vi_arg)
1431
- end
1432
- else
1433
- if with_operator and inclusive?(method_obj)
1434
- method_obj.(key, inclusive: true)
1435
- else
1436
- method_obj.(key)
1437
- end
1438
- end
1439
- end
1440
-
1441
- private def process_key(key, method_symbol)
1442
- if method_symbol and respond_to?(method_symbol, true)
1443
- method_obj = method(method_symbol)
1444
- else
1445
- method_obj = nil
1446
- end
1447
- if method_symbol and key.is_a?(Symbol)
1448
- if @vi_arg and argumentable?(method_obj)
1449
- run_for_operators(key, method_symbol) do |with_operator|
1450
- wrap_method_call(method_symbol, method_obj, key, with_operator)
1451
- end
1452
- else
1453
- wrap_method_call(method_symbol, method_obj, key) if method_obj
1454
- end
1455
- @kill_ring.process
1456
- if @vi_arg
1457
- @rerender_al = true
1458
- @vi_arg = nil
1459
- end
1460
- elsif @vi_arg
1461
- if key.chr =~ /[0-9]/
1462
- ed_argument_digit(key)
1463
- else
1464
- if argumentable?(method_obj)
1465
- run_for_operators(key, method_symbol) do |with_operator|
1466
- wrap_method_call(method_symbol, method_obj, key, with_operator)
1467
- end
1468
- elsif @waiting_proc
1469
- @waiting_proc.(key)
1470
- elsif method_obj
1471
- wrap_method_call(method_symbol, method_obj, key)
1472
- else
1473
- ed_insert(key) unless @config.editing_mode_is?(:vi_command)
1474
- end
1475
- @kill_ring.process
1476
- if @vi_arg
1477
- @rerender_all = true
1478
- @vi_arg = nil
1479
- end
1480
- end
1481
- elsif @waiting_proc
1482
- @waiting_proc.(key)
1483
- @kill_ring.process
1484
- elsif method_obj
1485
- if method_symbol == :ed_argument_digit
1486
- wrap_method_call(method_symbol, method_obj, key)
1487
- else
1488
- run_for_operators(key, method_symbol) do |with_operator|
1489
- wrap_method_call(method_symbol, method_obj, key, with_operator)
1490
- end
1491
- end
1492
- @kill_ring.process
1493
- else
1494
- ed_insert(key) unless @config.editing_mode_is?(:vi_command)
1495
- end
1496
- end
1497
-
1498
- private def normal_char(key)
1499
- method_symbol = method_obj = nil
1500
- if key.combined_char.is_a?(Symbol)
1501
- process_key(key.combined_char, key.combined_char)
1502
- return
1503
- end
1504
- @multibyte_buffer << key.combined_char
1505
- if @multibyte_buffer.size > 1
1506
- if @multibyte_buffer.dup.force_encoding(@encoding).valid_encoding?
1507
- process_key(@multibyte_buffer.dup.force_encoding(@encoding), nil)
1508
- @multibyte_buffer.clear
1509
- else
1510
- # invalid
1511
- return
1512
- end
1513
- else # single byte
1514
- return if key.char >= 128 # maybe, first byte of multi byte
1515
- method_symbol = @config.editing_mode.get_method(key.combined_char)
1516
- if key.with_meta and method_symbol == :ed_unassigned
1517
- if @config.editing_mode_is?(:vi_command, :vi_insert)
1518
- # split ESC + key in vi mode
1519
- method_symbol = @config.editing_mode.get_method("\e".ord)
1520
- process_key("\e".ord, method_symbol)
1521
- method_symbol = @config.editing_mode.get_method(key.char)
1522
- process_key(key.char, method_symbol)
1523
- end
1524
- else
1525
- process_key(key.combined_char, method_symbol)
1526
- end
1527
- @multibyte_buffer.clear
1528
- end
1529
- if @config.editing_mode_is?(:vi_command) and @cursor > 0 and @cursor == @cursor_max
1530
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
1531
- @byte_pointer -= byte_size
1532
- mbchar = @line.byteslice(@byte_pointer, byte_size)
1533
- width = Reline::Unicode.get_mbchar_width(mbchar)
1534
- @cursor -= width
1535
- end
1536
- end
1537
-
1538
- def input_key(key)
1539
- @last_key = key
1540
- @config.reset_oneshot_key_bindings
1541
- @dialogs.each do |dialog|
1542
- if key.char.instance_of?(Symbol) and key.char == dialog.name
1543
- return
1544
- end
1545
- end
1546
- @just_cursor_moving = nil
1547
- if key.char.nil?
1548
- if @first_char
1549
- @line = nil
1550
- end
1551
- finish
1552
- return
1553
- end
1554
- old_line = @line.dup
1555
- @first_char = false
1556
- completion_occurs = false
1557
- if @config.editing_mode_is?(:emacs, :vi_insert) and key.char == "\C-i".ord
1558
- unless @config.disable_completion
1559
- result = call_completion_proc
1560
- if result.is_a?(Array)
1561
- completion_occurs = true
1562
- process_insert
1563
- if @config.autocompletion
1564
- move_completed_list(result, :down)
1565
- else
1566
- complete(result)
1567
- end
1568
- end
1569
- end
1570
- elsif @config.editing_mode_is?(:emacs, :vi_insert) and key.char == :completion_journey_up
1571
- if not @config.disable_completion and @config.autocompletion
1572
- result = call_completion_proc
1573
- if result.is_a?(Array)
1574
- completion_occurs = true
1575
- process_insert
1576
- move_completed_list(result, :up)
1577
- end
1578
- end
1579
- elsif not @config.disable_completion and @config.editing_mode_is?(:vi_insert) and ["\C-p".ord, "\C-n".ord].include?(key.char)
1580
- unless @config.disable_completion
1581
- result = call_completion_proc
1582
- if result.is_a?(Array)
1583
- completion_occurs = true
1584
- process_insert
1585
- move_completed_list(result, "\C-p".ord == key.char ? :up : :down)
1586
- end
1587
- end
1588
- elsif Symbol === key.char and respond_to?(key.char, true)
1589
- process_key(key.char, key.char)
1590
- else
1591
- normal_char(key)
1592
- end
1593
- unless completion_occurs
1594
- @completion_state = CompletionState::NORMAL
1595
- @completion_journey_data = nil
1596
- end
1597
- if not @in_pasting and @just_cursor_moving.nil?
1598
- if @previous_line_index and @buffer_of_lines[@previous_line_index] == @line
1599
- @just_cursor_moving = true
1600
- elsif @previous_line_index.nil? and @buffer_of_lines[@line_index] == @line and old_line == @line
1601
- @just_cursor_moving = true
1602
- else
1603
- @just_cursor_moving = false
1604
- end
1605
- else
1606
- @just_cursor_moving = false
1607
- end
1608
- if @is_multiline and @auto_indent_proc and not simplified_rendering? and @line
1609
- process_auto_indent
1610
- end
1611
- end
1612
-
1613
- def call_completion_proc
1614
- result = retrieve_completion_block(true)
1615
- pre, target, post = result
1616
- result = call_completion_proc_with_checking_args(pre, target, post)
1617
- Reline.core.instance_variable_set(:@completion_quote_character, nil)
1618
- result
1619
- end
1620
-
1621
- def call_completion_proc_with_checking_args(pre, target, post)
1622
- if @completion_proc and target
1623
- argnum = @completion_proc.parameters.inject(0) { |result, item|
1624
- case item.first
1625
- when :req, :opt
1626
- result + 1
1627
- when :rest
1628
- break 3
1629
- end
1630
- }
1631
- case argnum
1632
- when 1
1633
- result = @completion_proc.(target)
1634
- when 2
1635
- result = @completion_proc.(target, pre)
1636
- when 3..Float::INFINITY
1637
- result = @completion_proc.(target, pre, post)
1638
- end
1639
- end
1640
- result
1641
- end
1642
-
1643
- private def process_auto_indent
1644
- return if not @check_new_auto_indent and @previous_line_index # move cursor up or down
1645
- if @check_new_auto_indent and @previous_line_index and @previous_line_index > 0 and @line_index > @previous_line_index
1646
- # Fix indent of a line when a newline is inserted to the next
1647
- new_lines = whole_lines
1648
- new_indent = @auto_indent_proc.(new_lines[0..-3].push(''), @line_index - 1, 0, true)
1649
- md = @line.match(/\A */)
1650
- prev_indent = md[0].count(' ')
1651
- @line = ' ' * new_indent + @line.lstrip
1652
-
1653
- new_indent = nil
1654
- result = @auto_indent_proc.(new_lines[0..-2], @line_index - 1, (new_lines[@line_index - 1].bytesize + 1), false)
1655
- if result
1656
- new_indent = result
1657
- end
1658
- if new_indent&.>= 0
1659
- @line = ' ' * new_indent + @line.lstrip
1660
- end
1661
- end
1662
- new_lines = whole_lines
1663
- new_indent = @auto_indent_proc.(new_lines, @line_index, @byte_pointer, @check_new_auto_indent)
1664
- if new_indent&.>= 0
1665
- md = new_lines[@line_index].match(/\A */)
1666
- prev_indent = md[0].count(' ')
1667
- if @check_new_auto_indent
1668
- line = @buffer_of_lines[@line_index] = ' ' * new_indent + @buffer_of_lines[@line_index].lstrip
1669
- @cursor = new_indent
1670
- @cursor_max = calculate_width(line)
1671
- @byte_pointer = new_indent
1672
- else
1673
- @line = ' ' * new_indent + @line.lstrip
1674
- @cursor += new_indent - prev_indent
1675
- @cursor_max = calculate_width(@line)
1676
- @byte_pointer += new_indent - prev_indent
1677
- end
1678
- end
1679
- @check_new_auto_indent = false
1680
- end
1681
-
1682
- def retrieve_completion_block(set_completion_quote_character = false)
1683
- if Reline.completer_word_break_characters.empty?
1684
- word_break_regexp = nil
1685
- else
1686
- word_break_regexp = /\A[#{Regexp.escape(Reline.completer_word_break_characters)}]/
1687
- end
1688
- if Reline.completer_quote_characters.empty?
1689
- quote_characters_regexp = nil
1690
- else
1691
- quote_characters_regexp = /\A[#{Regexp.escape(Reline.completer_quote_characters)}]/
1692
- end
1693
- before = @line.byteslice(0, @byte_pointer)
1694
- rest = nil
1695
- break_pointer = nil
1696
- quote = nil
1697
- closing_quote = nil
1698
- escaped_quote = nil
1699
- i = 0
1700
- while i < @byte_pointer do
1701
- slice = @line.byteslice(i, @byte_pointer - i)
1702
- unless slice.valid_encoding?
1703
- i += 1
1704
- next
1705
- end
1706
- if quote and slice.start_with?(closing_quote)
1707
- quote = nil
1708
- i += 1
1709
- rest = nil
1710
- elsif quote and slice.start_with?(escaped_quote)
1711
- # skip
1712
- i += 2
1713
- elsif quote_characters_regexp and slice =~ quote_characters_regexp # find new "
1714
- rest = $'
1715
- quote = $&
1716
- closing_quote = /(?!\\)#{Regexp.escape(quote)}/
1717
- escaped_quote = /\\#{Regexp.escape(quote)}/
1718
- i += 1
1719
- break_pointer = i - 1
1720
- elsif word_break_regexp and not quote and slice =~ word_break_regexp
1721
- rest = $'
1722
- i += 1
1723
- before = @line.byteslice(i, @byte_pointer - i)
1724
- break_pointer = i
1725
- else
1726
- i += 1
1727
- end
1728
- end
1729
- postposing = @line.byteslice(@byte_pointer, @line.bytesize - @byte_pointer)
1730
- if rest
1731
- preposing = @line.byteslice(0, break_pointer)
1732
- target = rest
1733
- if set_completion_quote_character and quote
1734
- Reline.core.instance_variable_set(:@completion_quote_character, quote)
1735
- if postposing !~ /(?!\\)#{Regexp.escape(quote)}/ # closing quote
1736
- insert_text(quote)
1737
- end
1738
- end
1739
- else
1740
- preposing = ''
1741
- if break_pointer
1742
- preposing = @line.byteslice(0, break_pointer)
1743
- else
1744
- preposing = ''
1745
- end
1746
- target = before
1747
- end
1748
- if @is_multiline
1749
- lines = whole_lines
1750
- if @line_index > 0
1751
- preposing = lines[0..(@line_index - 1)].join("\n") + "\n" + preposing
1752
- end
1753
- if (lines.size - 1) > @line_index
1754
- postposing = postposing + "\n" + lines[(@line_index + 1)..-1].join("\n")
1755
- end
1756
- end
1757
- [preposing.encode(@encoding), target.encode(@encoding), postposing.encode(@encoding)]
1758
- end
1759
-
1760
- def confirm_multiline_termination
1761
- temp_buffer = @buffer_of_lines.dup
1762
- if @previous_line_index and @line_index == (@buffer_of_lines.size - 1)
1763
- temp_buffer[@previous_line_index] = @line
1764
- else
1765
- temp_buffer[@line_index] = @line
1766
- end
1767
- @confirm_multiline_termination_proc.(temp_buffer.join("\n") + "\n")
1768
- end
1769
-
1770
- def insert_text(text)
1771
- width = calculate_width(text)
1772
- if @cursor == @cursor_max
1773
- @line += text
1774
- else
1775
- @line = byteinsert(@line, @byte_pointer, text)
1776
- end
1777
- @byte_pointer += text.bytesize
1778
- @cursor += width
1779
- @cursor_max += width
1780
- end
1781
-
1782
- def delete_text(start = nil, length = nil)
1783
- if start.nil? and length.nil?
1784
- if @is_multiline
1785
- if @buffer_of_lines.size == 1
1786
- @line&.clear
1787
- @byte_pointer = 0
1788
- @cursor = 0
1789
- @cursor_max = 0
1790
- elsif @line_index == (@buffer_of_lines.size - 1) and @line_index > 0
1791
- @buffer_of_lines.pop
1792
- @line_index -= 1
1793
- @line = @buffer_of_lines[@line_index]
1794
- @byte_pointer = 0
1795
- @cursor = 0
1796
- @cursor_max = calculate_width(@line)
1797
- elsif @line_index < (@buffer_of_lines.size - 1)
1798
- @buffer_of_lines.delete_at(@line_index)
1799
- @line = @buffer_of_lines[@line_index]
1800
- @byte_pointer = 0
1801
- @cursor = 0
1802
- @cursor_max = calculate_width(@line)
1803
- end
1804
- else
1805
- @line&.clear
1806
- @byte_pointer = 0
1807
- @cursor = 0
1808
- @cursor_max = 0
1809
- end
1810
- elsif not start.nil? and not length.nil?
1811
- if @line
1812
- before = @line.byteslice(0, start)
1813
- after = @line.byteslice(start + length, @line.bytesize)
1814
- @line = before + after
1815
- @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
1816
- str = @line.byteslice(0, @byte_pointer)
1817
- @cursor = calculate_width(str)
1818
- @cursor_max = calculate_width(@line)
1819
- end
1820
- elsif start.is_a?(Range)
1821
- range = start
1822
- first = range.first
1823
- last = range.last
1824
- last = @line.bytesize - 1 if last > @line.bytesize
1825
- last += @line.bytesize if last < 0
1826
- first += @line.bytesize if first < 0
1827
- range = range.exclude_end? ? first...last : first..last
1828
- @line = @line.bytes.reject.with_index{ |c, i| range.include?(i) }.map{ |c| c.chr(Encoding::ASCII_8BIT) }.join.force_encoding(@encoding)
1829
- @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
1830
- str = @line.byteslice(0, @byte_pointer)
1831
- @cursor = calculate_width(str)
1832
- @cursor_max = calculate_width(@line)
1833
- else
1834
- @line = @line.byteslice(0, start)
1835
- @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
1836
- str = @line.byteslice(0, @byte_pointer)
1837
- @cursor = calculate_width(str)
1838
- @cursor_max = calculate_width(@line)
1839
- end
1840
- end
1841
-
1842
- def byte_pointer=(val)
1843
- @byte_pointer = val
1844
- str = @line.byteslice(0, @byte_pointer)
1845
- @cursor = calculate_width(str)
1846
- @cursor_max = calculate_width(@line)
1847
- end
1848
-
1849
- def whole_lines
1850
- index = @previous_line_index || @line_index
1851
- temp_lines = @buffer_of_lines.dup
1852
- temp_lines[index] = @line
1853
- temp_lines
1854
- end
1855
-
1856
- def whole_buffer
1857
- if @buffer_of_lines.size == 1 and @line.nil?
1858
- nil
1859
- else
1860
- whole_lines.join("\n")
1861
- end
1862
- end
1863
-
1864
- def finished?
1865
- @finished
1866
- end
1867
-
1868
- def finish
1869
- @finished = true
1870
- @rerender_all = true
1871
- @config.reset
1872
- end
1873
-
1874
- private def byteslice!(str, byte_pointer, size)
1875
- new_str = str.byteslice(0, byte_pointer)
1876
- new_str << str.byteslice(byte_pointer + size, str.bytesize)
1877
- [new_str, str.byteslice(byte_pointer, size)]
1878
- end
1879
-
1880
- private def byteinsert(str, byte_pointer, other)
1881
- new_str = str.byteslice(0, byte_pointer)
1882
- new_str << other
1883
- new_str << str.byteslice(byte_pointer, str.bytesize)
1884
- new_str
1885
- end
1886
-
1887
- private def calculate_width(str, allow_escape_code = false)
1888
- Reline::Unicode.calculate_width(str, allow_escape_code)
1889
- end
1890
-
1891
- private def key_delete(key)
1892
- if @config.editing_mode_is?(:vi_insert)
1893
- ed_delete_next_char(key)
1894
- elsif @config.editing_mode_is?(:emacs)
1895
- em_delete(key)
1896
- end
1897
- end
1898
-
1899
- private def key_newline(key)
1900
- if @is_multiline
1901
- if (@buffer_of_lines.size - 1) == @line_index and @line.bytesize == @byte_pointer
1902
- @add_newline_to_end_of_buffer = true
1903
- end
1904
- next_line = @line.byteslice(@byte_pointer, @line.bytesize - @byte_pointer)
1905
- cursor_line = @line.byteslice(0, @byte_pointer)
1906
- insert_new_line(cursor_line, next_line)
1907
- @cursor = 0
1908
- @check_new_auto_indent = true unless @in_pasting
1909
- end
1910
- end
1911
-
1912
- # Editline:: +ed-unassigned+ This editor command always results in an error.
1913
- # GNU Readline:: There is no corresponding macro.
1914
- private def ed_unassigned(key) end # do nothing
1915
-
1916
- private def process_insert(force: false)
1917
- return if @continuous_insertion_buffer.empty? or (@in_pasting and not force)
1918
- width = Reline::Unicode.calculate_width(@continuous_insertion_buffer)
1919
- bytesize = @continuous_insertion_buffer.bytesize
1920
- if @cursor == @cursor_max
1921
- @line += @continuous_insertion_buffer
1922
- else
1923
- @line = byteinsert(@line, @byte_pointer, @continuous_insertion_buffer)
1924
- end
1925
- @byte_pointer += bytesize
1926
- @cursor += width
1927
- @cursor_max += width
1928
- @continuous_insertion_buffer.clear
1929
- end
1930
-
1931
- # Editline:: +ed-insert+ (vi input: almost all; emacs: printable characters)
1932
- # In insert mode, insert the input character left of the cursor
1933
- # position. In replace mode, overwrite the character at the
1934
- # cursor and move the cursor to the right by one character
1935
- # position. Accept an argument to do this repeatedly. It is an
1936
- # error if the input character is the NUL character (+Ctrl-@+).
1937
- # Failure to enlarge the edit buffer also results in an error.
1938
- # Editline:: +ed-digit+ (emacs: 0 to 9) If in argument input mode, append
1939
- # the input digit to the argument being read. Otherwise, call
1940
- # +ed-insert+. It is an error if the input character is not a
1941
- # digit or if the existing argument is already greater than a
1942
- # million.
1943
- # GNU Readline:: +self-insert+ (a, b, A, 1, !, …) Insert yourself.
1944
- private def ed_insert(key)
1945
- str = nil
1946
- width = nil
1947
- bytesize = nil
1948
- if key.instance_of?(String)
1949
- begin
1950
- key.encode(Encoding::UTF_8)
1951
- rescue Encoding::UndefinedConversionError
1952
- return
1953
- end
1954
- str = key
1955
- bytesize = key.bytesize
1956
- else
1957
- begin
1958
- key.chr.encode(Encoding::UTF_8)
1959
- rescue Encoding::UndefinedConversionError
1960
- return
1961
- end
1962
- str = key.chr
1963
- bytesize = 1
1964
- end
1965
- if @in_pasting
1966
- @continuous_insertion_buffer << str
1967
- return
1968
- elsif not @continuous_insertion_buffer.empty?
1969
- process_insert
1970
- end
1971
- width = Reline::Unicode.get_mbchar_width(str)
1972
- if @cursor == @cursor_max
1973
- @line += str
1974
- else
1975
- @line = byteinsert(@line, @byte_pointer, str)
1976
- end
1977
- last_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
1978
- @byte_pointer += bytesize
1979
- last_mbchar = @line.byteslice((@byte_pointer - bytesize - last_byte_size), last_byte_size)
1980
- combined_char = last_mbchar + str
1981
- if last_byte_size != 0 and combined_char.grapheme_clusters.size == 1
1982
- # combined char
1983
- last_mbchar_width = Reline::Unicode.get_mbchar_width(last_mbchar)
1984
- combined_char_width = Reline::Unicode.get_mbchar_width(combined_char)
1985
- if combined_char_width > last_mbchar_width
1986
- width = combined_char_width - last_mbchar_width
1987
- else
1988
- width = 0
1989
- end
1990
- end
1991
- @cursor += width
1992
- @cursor_max += width
1993
- end
1994
- alias_method :ed_digit, :ed_insert
1995
- alias_method :self_insert, :ed_insert
1996
-
1997
- private def ed_quoted_insert(str, arg: 1)
1998
- @waiting_proc = proc { |key|
1999
- arg.times do
2000
- if key == "\C-j".ord or key == "\C-m".ord
2001
- key_newline(key)
2002
- elsif key == 0
2003
- # Ignore NUL.
2004
- else
2005
- ed_insert(key)
2006
- end
2007
- end
2008
- @waiting_proc = nil
2009
- }
2010
- end
2011
- alias_method :quoted_insert, :ed_quoted_insert
2012
-
2013
- private def ed_next_char(key, arg: 1)
2014
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
2015
- if (@byte_pointer < @line.bytesize)
2016
- mbchar = @line.byteslice(@byte_pointer, byte_size)
2017
- width = Reline::Unicode.get_mbchar_width(mbchar)
2018
- @cursor += width if width
2019
- @byte_pointer += byte_size
2020
- elsif @is_multiline and @config.editing_mode_is?(:emacs) and @byte_pointer == @line.bytesize and @line_index < @buffer_of_lines.size - 1
2021
- next_line = @buffer_of_lines[@line_index + 1]
2022
- @cursor = 0
2023
- @byte_pointer = 0
2024
- @cursor_max = calculate_width(next_line)
2025
- @previous_line_index = @line_index
2026
- @line_index += 1
2027
- end
2028
- arg -= 1
2029
- ed_next_char(key, arg: arg) if arg > 0
2030
- end
2031
- alias_method :forward_char, :ed_next_char
2032
-
2033
- private def ed_prev_char(key, arg: 1)
2034
- if @cursor > 0
2035
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
2036
- @byte_pointer -= byte_size
2037
- mbchar = @line.byteslice(@byte_pointer, byte_size)
2038
- width = Reline::Unicode.get_mbchar_width(mbchar)
2039
- @cursor -= width
2040
- elsif @is_multiline and @config.editing_mode_is?(:emacs) and @byte_pointer == 0 and @line_index > 0
2041
- prev_line = @buffer_of_lines[@line_index - 1]
2042
- @cursor = calculate_width(prev_line)
2043
- @byte_pointer = prev_line.bytesize
2044
- @cursor_max = calculate_width(prev_line)
2045
- @previous_line_index = @line_index
2046
- @line_index -= 1
2047
- end
2048
- arg -= 1
2049
- ed_prev_char(key, arg: arg) if arg > 0
2050
- end
2051
- alias_method :backward_char, :ed_prev_char
2052
-
2053
- private def vi_first_print(key)
2054
- @byte_pointer, @cursor = Reline::Unicode.vi_first_print(@line)
2055
- end
2056
-
2057
- private def ed_move_to_beg(key)
2058
- @byte_pointer = @cursor = 0
2059
- end
2060
- alias_method :beginning_of_line, :ed_move_to_beg
2061
-
2062
- private def ed_move_to_end(key)
2063
- @byte_pointer = 0
2064
- @cursor = 0
2065
- byte_size = 0
2066
- while @byte_pointer < @line.bytesize
2067
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
2068
- if byte_size > 0
2069
- mbchar = @line.byteslice(@byte_pointer, byte_size)
2070
- @cursor += Reline::Unicode.get_mbchar_width(mbchar)
2071
- end
2072
- @byte_pointer += byte_size
2073
- end
2074
- end
2075
- alias_method :end_of_line, :ed_move_to_end
2076
-
2077
- private def generate_searcher
2078
- Fiber.new do |first_key|
2079
- prev_search_key = first_key
2080
- search_word = String.new(encoding: @encoding)
2081
- multibyte_buf = String.new(encoding: 'ASCII-8BIT')
2082
- last_hit = nil
2083
- case first_key
2084
- when "\C-r".ord
2085
- prompt_name = 'reverse-i-search'
2086
- when "\C-s".ord
2087
- prompt_name = 'i-search'
2088
- end
2089
- loop do
2090
- key = Fiber.yield(search_word)
2091
- search_again = false
2092
- case key
2093
- when -1 # determined
2094
- Reline.last_incremental_search = search_word
2095
- break
2096
- when "\C-h".ord, "\C-?".ord
2097
- grapheme_clusters = search_word.grapheme_clusters
2098
- if grapheme_clusters.size > 0
2099
- grapheme_clusters.pop
2100
- search_word = grapheme_clusters.join
2101
- end
2102
- when "\C-r".ord, "\C-s".ord
2103
- search_again = true if prev_search_key == key
2104
- prev_search_key = key
2105
- else
2106
- multibyte_buf << key
2107
- if multibyte_buf.dup.force_encoding(@encoding).valid_encoding?
2108
- search_word << multibyte_buf.dup.force_encoding(@encoding)
2109
- multibyte_buf.clear
2110
- end
2111
- end
2112
- hit = nil
2113
- if not search_word.empty? and @line_backup_in_history&.include?(search_word)
2114
- @history_pointer = nil
2115
- hit = @line_backup_in_history
2116
- else
2117
- if search_again
2118
- if search_word.empty? and Reline.last_incremental_search
2119
- search_word = Reline.last_incremental_search
2120
- end
2121
- if @history_pointer
2122
- case prev_search_key
2123
- when "\C-r".ord
2124
- history_pointer_base = 0
2125
- history = Reline::HISTORY[0..(@history_pointer - 1)]
2126
- when "\C-s".ord
2127
- history_pointer_base = @history_pointer + 1
2128
- history = Reline::HISTORY[(@history_pointer + 1)..-1]
2129
- end
2130
- else
2131
- history_pointer_base = 0
2132
- history = Reline::HISTORY
2133
- end
2134
- elsif @history_pointer
2135
- case prev_search_key
2136
- when "\C-r".ord
2137
- history_pointer_base = 0
2138
- history = Reline::HISTORY[0..@history_pointer]
2139
- when "\C-s".ord
2140
- history_pointer_base = @history_pointer
2141
- history = Reline::HISTORY[@history_pointer..-1]
2142
- end
2143
- else
2144
- history_pointer_base = 0
2145
- history = Reline::HISTORY
2146
- end
2147
- case prev_search_key
2148
- when "\C-r".ord
2149
- hit_index = history.rindex { |item|
2150
- item.include?(search_word)
2151
- }
2152
- when "\C-s".ord
2153
- hit_index = history.index { |item|
2154
- item.include?(search_word)
2155
- }
2156
- end
2157
- if hit_index
2158
- @history_pointer = history_pointer_base + hit_index
2159
- hit = Reline::HISTORY[@history_pointer]
2160
- end
2161
- end
2162
- case prev_search_key
2163
- when "\C-r".ord
2164
- prompt_name = 'reverse-i-search'
2165
- when "\C-s".ord
2166
- prompt_name = 'i-search'
2167
- end
2168
- if hit
2169
- if @is_multiline
2170
- @buffer_of_lines = hit.split("\n")
2171
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2172
- @line_index = @buffer_of_lines.size - 1
2173
- @line = @buffer_of_lines.last
2174
- @byte_pointer = @line.bytesize
2175
- @cursor = @cursor_max = calculate_width(@line)
2176
- @rerender_all = true
2177
- @searching_prompt = "(%s)`%s'" % [prompt_name, search_word]
2178
- else
2179
- @line = hit
2180
- @searching_prompt = "(%s)`%s': %s" % [prompt_name, search_word, hit]
2181
- end
2182
- last_hit = hit
2183
- else
2184
- if @is_multiline
2185
- @rerender_all = true
2186
- @searching_prompt = "(failed %s)`%s'" % [prompt_name, search_word]
2187
- else
2188
- @searching_prompt = "(failed %s)`%s': %s" % [prompt_name, search_word, last_hit]
2189
- end
2190
- end
2191
- end
2192
- end
2193
- end
2194
-
2195
- private def incremental_search_history(key)
2196
- unless @history_pointer
2197
- if @is_multiline
2198
- @line_backup_in_history = whole_buffer
2199
- else
2200
- @line_backup_in_history = @line
2201
- end
2202
- end
2203
- searcher = generate_searcher
2204
- searcher.resume(key)
2205
- @searching_prompt = "(reverse-i-search)`': "
2206
- termination_keys = ["\C-j".ord]
2207
- termination_keys.concat(@config.isearch_terminators&.chars&.map(&:ord)) if @config.isearch_terminators
2208
- @waiting_proc = ->(k) {
2209
- case k
2210
- when *termination_keys
2211
- if @history_pointer
2212
- buffer = Reline::HISTORY[@history_pointer]
2213
- else
2214
- buffer = @line_backup_in_history
2215
- end
2216
- if @is_multiline
2217
- @buffer_of_lines = buffer.split("\n")
2218
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2219
- @line_index = @buffer_of_lines.size - 1
2220
- @line = @buffer_of_lines.last
2221
- @rerender_all = true
2222
- else
2223
- @line = buffer
2224
- end
2225
- @searching_prompt = nil
2226
- @waiting_proc = nil
2227
- @cursor_max = calculate_width(@line)
2228
- @cursor = @byte_pointer = 0
2229
- @rerender_all = true
2230
- @cached_prompt_list = nil
2231
- searcher.resume(-1)
2232
- when "\C-g".ord
2233
- if @is_multiline
2234
- @buffer_of_lines = @line_backup_in_history.split("\n")
2235
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2236
- @line_index = @buffer_of_lines.size - 1
2237
- @line = @buffer_of_lines.last
2238
- @rerender_all = true
2239
- else
2240
- @line = @line_backup_in_history
2241
- end
2242
- @history_pointer = nil
2243
- @searching_prompt = nil
2244
- @waiting_proc = nil
2245
- @line_backup_in_history = nil
2246
- @cursor_max = calculate_width(@line)
2247
- @cursor = @byte_pointer = 0
2248
- @rerender_all = true
2249
- else
2250
- chr = k.is_a?(String) ? k : k.chr(Encoding::ASCII_8BIT)
2251
- if chr.match?(/[[:print:]]/) or k == "\C-h".ord or k == "\C-?".ord or k == "\C-r".ord or k == "\C-s".ord
2252
- searcher.resume(k)
2253
- else
2254
- if @history_pointer
2255
- line = Reline::HISTORY[@history_pointer]
2256
- else
2257
- line = @line_backup_in_history
2258
- end
2259
- if @is_multiline
2260
- @line_backup_in_history = whole_buffer
2261
- @buffer_of_lines = line.split("\n")
2262
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2263
- @line_index = @buffer_of_lines.size - 1
2264
- @line = @buffer_of_lines.last
2265
- @rerender_all = true
2266
- else
2267
- @line_backup_in_history = @line
2268
- @line = line
2269
- end
2270
- @searching_prompt = nil
2271
- @waiting_proc = nil
2272
- @cursor_max = calculate_width(@line)
2273
- @cursor = @byte_pointer = 0
2274
- @rerender_all = true
2275
- @cached_prompt_list = nil
2276
- searcher.resume(-1)
2277
- end
2278
- end
2279
- }
2280
- end
2281
-
2282
- private def vi_search_prev(key)
2283
- incremental_search_history(key)
2284
- end
2285
- alias_method :reverse_search_history, :vi_search_prev
2286
-
2287
- private def vi_search_next(key)
2288
- incremental_search_history(key)
2289
- end
2290
- alias_method :forward_search_history, :vi_search_next
2291
-
2292
- private def ed_search_prev_history(key, arg: 1)
2293
- history = nil
2294
- h_pointer = nil
2295
- line_no = nil
2296
- substr = @line.slice(0, @byte_pointer)
2297
- if @history_pointer.nil?
2298
- return if not @line.empty? and substr.empty?
2299
- history = Reline::HISTORY
2300
- elsif @history_pointer.zero?
2301
- history = nil
2302
- h_pointer = nil
2303
- else
2304
- history = Reline::HISTORY.slice(0, @history_pointer)
2305
- end
2306
- return if history.nil?
2307
- if @is_multiline
2308
- h_pointer = history.rindex { |h|
2309
- h.split("\n").each_with_index { |l, i|
2310
- if l.start_with?(substr)
2311
- line_no = i
2312
- break
2313
- end
2314
- }
2315
- not line_no.nil?
2316
- }
2317
- else
2318
- h_pointer = history.rindex { |l|
2319
- l.start_with?(substr)
2320
- }
2321
- end
2322
- return if h_pointer.nil?
2323
- @history_pointer = h_pointer
2324
- if @is_multiline
2325
- @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
2326
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2327
- @line_index = line_no
2328
- @line = @buffer_of_lines[@line_index]
2329
- @rerender_all = true
2330
- else
2331
- @line = Reline::HISTORY[@history_pointer]
2332
- end
2333
- @cursor_max = calculate_width(@line)
2334
- arg -= 1
2335
- ed_search_prev_history(key, arg: arg) if arg > 0
2336
- end
2337
- alias_method :history_search_backward, :ed_search_prev_history
2338
-
2339
- private def ed_search_next_history(key, arg: 1)
2340
- substr = @line.slice(0, @byte_pointer)
2341
- if @history_pointer.nil?
2342
- return
2343
- elsif @history_pointer == (Reline::HISTORY.size - 1) and not substr.empty?
2344
- return
2345
- end
2346
- history = Reline::HISTORY.slice((@history_pointer + 1)..-1)
2347
- h_pointer = nil
2348
- line_no = nil
2349
- if @is_multiline
2350
- h_pointer = history.index { |h|
2351
- h.split("\n").each_with_index { |l, i|
2352
- if l.start_with?(substr)
2353
- line_no = i
2354
- break
2355
- end
2356
- }
2357
- not line_no.nil?
2358
- }
2359
- else
2360
- h_pointer = history.index { |l|
2361
- l.start_with?(substr)
2362
- }
2363
- end
2364
- h_pointer += @history_pointer + 1 if h_pointer and @history_pointer
2365
- return if h_pointer.nil? and not substr.empty?
2366
- @history_pointer = h_pointer
2367
- if @is_multiline
2368
- if @history_pointer.nil? and substr.empty?
2369
- @buffer_of_lines = []
2370
- @line_index = 0
2371
- else
2372
- @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
2373
- @line_index = line_no
2374
- end
2375
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2376
- @line = @buffer_of_lines[@line_index]
2377
- @rerender_all = true
2378
- else
2379
- if @history_pointer.nil? and substr.empty?
2380
- @line = ''
2381
- else
2382
- @line = Reline::HISTORY[@history_pointer]
2383
- end
2384
- end
2385
- @cursor_max = calculate_width(@line)
2386
- arg -= 1
2387
- ed_search_next_history(key, arg: arg) if arg > 0
2388
- end
2389
- alias_method :history_search_forward, :ed_search_next_history
2390
-
2391
- private def ed_prev_history(key, arg: 1)
2392
- if @is_multiline and @line_index > 0
2393
- @previous_line_index = @line_index
2394
- @line_index -= 1
2395
- return
2396
- end
2397
- if Reline::HISTORY.empty?
2398
- return
2399
- end
2400
- if @history_pointer.nil?
2401
- @history_pointer = Reline::HISTORY.size - 1
2402
- if @is_multiline
2403
- @line_backup_in_history = whole_buffer
2404
- @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
2405
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2406
- @line_index = @buffer_of_lines.size - 1
2407
- @line = @buffer_of_lines.last
2408
- @rerender_all = true
2409
- else
2410
- @line_backup_in_history = @line
2411
- @line = Reline::HISTORY[@history_pointer]
2412
- end
2413
- elsif @history_pointer.zero?
2414
- return
2415
- else
2416
- if @is_multiline
2417
- Reline::HISTORY[@history_pointer] = whole_buffer
2418
- @history_pointer -= 1
2419
- @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
2420
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2421
- @line_index = @buffer_of_lines.size - 1
2422
- @line = @buffer_of_lines.last
2423
- @rerender_all = true
2424
- else
2425
- Reline::HISTORY[@history_pointer] = @line
2426
- @history_pointer -= 1
2427
- @line = Reline::HISTORY[@history_pointer]
2428
- end
2429
- end
2430
- if @config.editing_mode_is?(:emacs, :vi_insert)
2431
- @cursor_max = @cursor = calculate_width(@line)
2432
- @byte_pointer = @line.bytesize
2433
- elsif @config.editing_mode_is?(:vi_command)
2434
- @byte_pointer = @cursor = 0
2435
- @cursor_max = calculate_width(@line)
2436
- end
2437
- arg -= 1
2438
- ed_prev_history(key, arg: arg) if arg > 0
2439
- end
2440
- alias_method :previous_history, :ed_prev_history
2441
-
2442
- private def ed_next_history(key, arg: 1)
2443
- if @is_multiline and @line_index < (@buffer_of_lines.size - 1)
2444
- @previous_line_index = @line_index
2445
- @line_index += 1
2446
- return
2447
- end
2448
- if @history_pointer.nil?
2449
- return
2450
- elsif @history_pointer == (Reline::HISTORY.size - 1)
2451
- if @is_multiline
2452
- @history_pointer = nil
2453
- @buffer_of_lines = @line_backup_in_history.split("\n")
2454
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2455
- @line_index = 0
2456
- @line = @buffer_of_lines.first
2457
- @rerender_all = true
2458
- else
2459
- @history_pointer = nil
2460
- @line = @line_backup_in_history
2461
- end
2462
- else
2463
- if @is_multiline
2464
- Reline::HISTORY[@history_pointer] = whole_buffer
2465
- @history_pointer += 1
2466
- @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
2467
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
2468
- @line_index = 0
2469
- @line = @buffer_of_lines.first
2470
- @rerender_all = true
2471
- else
2472
- Reline::HISTORY[@history_pointer] = @line
2473
- @history_pointer += 1
2474
- @line = Reline::HISTORY[@history_pointer]
2475
- end
2476
- end
2477
- @line = '' unless @line
2478
- if @config.editing_mode_is?(:emacs, :vi_insert)
2479
- @cursor_max = @cursor = calculate_width(@line)
2480
- @byte_pointer = @line.bytesize
2481
- elsif @config.editing_mode_is?(:vi_command)
2482
- @byte_pointer = @cursor = 0
2483
- @cursor_max = calculate_width(@line)
2484
- end
2485
- arg -= 1
2486
- ed_next_history(key, arg: arg) if arg > 0
2487
- end
2488
- alias_method :next_history, :ed_next_history
2489
-
2490
- private def ed_newline(key)
2491
- process_insert(force: true)
2492
- if @is_multiline
2493
- if @config.editing_mode_is?(:vi_command)
2494
- if @line_index < (@buffer_of_lines.size - 1)
2495
- ed_next_history(key) # means cursor down
2496
- else
2497
- # should check confirm_multiline_termination to finish?
2498
- finish
2499
- end
2500
- else
2501
- if @line_index == (@buffer_of_lines.size - 1)
2502
- if confirm_multiline_termination
2503
- finish
2504
- else
2505
- key_newline(key)
2506
- end
2507
- else
2508
- # should check confirm_multiline_termination to finish?
2509
- @previous_line_index = @line_index
2510
- @line_index = @buffer_of_lines.size - 1
2511
- finish
2512
- end
2513
- end
2514
- else
2515
- if @history_pointer
2516
- Reline::HISTORY[@history_pointer] = @line
2517
- @history_pointer = nil
2518
- end
2519
- finish
2520
- end
2521
- end
2522
-
2523
- private def em_delete_prev_char(key, arg: 1)
2524
- if @is_multiline and @cursor == 0 and @line_index > 0
2525
- @buffer_of_lines[@line_index] = @line
2526
- @cursor = calculate_width(@buffer_of_lines[@line_index - 1])
2527
- @byte_pointer = @buffer_of_lines[@line_index - 1].bytesize
2528
- @buffer_of_lines[@line_index - 1] += @buffer_of_lines.delete_at(@line_index)
2529
- @line_index -= 1
2530
- @line = @buffer_of_lines[@line_index]
2531
- @cursor_max = calculate_width(@line)
2532
- @rerender_all = true
2533
- elsif @cursor > 0
2534
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
2535
- @byte_pointer -= byte_size
2536
- @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
2537
- width = Reline::Unicode.get_mbchar_width(mbchar)
2538
- @cursor -= width
2539
- @cursor_max -= width
2540
- end
2541
- arg -= 1
2542
- em_delete_prev_char(key, arg: arg) if arg > 0
2543
- end
2544
- alias_method :backward_delete_char, :em_delete_prev_char
2545
-
2546
- # Editline:: +ed-kill-line+ (vi command: +D+, +Ctrl-K+; emacs: +Ctrl-K+,
2547
- # +Ctrl-U+) + Kill from the cursor to the end of the line.
2548
- # GNU Readline:: +kill-line+ (+C-k+) Kill the text from point to the end of
2549
- # the line. With a negative numeric argument, kill backward
2550
- # from the cursor to the beginning of the current line.
2551
- private def ed_kill_line(key)
2552
- if @line.bytesize > @byte_pointer
2553
- @line, deleted = byteslice!(@line, @byte_pointer, @line.bytesize - @byte_pointer)
2554
- @byte_pointer = @line.bytesize
2555
- @cursor = @cursor_max = calculate_width(@line)
2556
- @kill_ring.append(deleted)
2557
- elsif @is_multiline and @byte_pointer == @line.bytesize and @buffer_of_lines.size > @line_index + 1
2558
- @cursor = calculate_width(@line)
2559
- @byte_pointer = @line.bytesize
2560
- @line += @buffer_of_lines.delete_at(@line_index + 1)
2561
- @cursor_max = calculate_width(@line)
2562
- @buffer_of_lines[@line_index] = @line
2563
- @rerender_all = true
2564
- @rest_height += 1
2565
- end
2566
- end
2567
- alias_method :kill_line, :ed_kill_line
2568
-
2569
- # Editline:: +vi-kill-line-prev+ (vi: +Ctrl-U+) Delete the string from the
2570
- # beginning of the edit buffer to the cursor and save it to the
2571
- # cut buffer.
2572
- # GNU Readline:: +unix-line-discard+ (+C-u+) Kill backward from the cursor
2573
- # to the beginning of the current line.
2574
- private def vi_kill_line_prev(key)
2575
- if @byte_pointer > 0
2576
- @line, deleted = byteslice!(@line, 0, @byte_pointer)
2577
- @byte_pointer = 0
2578
- @kill_ring.append(deleted, true)
2579
- @cursor_max = calculate_width(@line)
2580
- @cursor = 0
2581
- end
2582
- end
2583
- alias_method :unix_line_discard, :vi_kill_line_prev
2584
-
2585
- # Editline:: +em-kill-line+ (not bound) Delete the entire contents of the
2586
- # edit buffer and save it to the cut buffer. +vi-kill-line-prev+
2587
- # GNU Readline:: +kill-whole-line+ (not bound) Kill all characters on the
2588
- # current line, no matter where point is.
2589
- private def em_kill_line(key)
2590
- if @line.size > 0
2591
- @kill_ring.append(@line.dup, true)
2592
- @line.clear
2593
- @byte_pointer = 0
2594
- @cursor_max = 0
2595
- @cursor = 0
2596
- end
2597
- end
2598
- alias_method :kill_whole_line, :em_kill_line
2599
-
2600
- private def em_delete(key)
2601
- if @line.empty? and (not @is_multiline or @buffer_of_lines.size == 1) and key == "\C-d".ord
2602
- @line = nil
2603
- if @buffer_of_lines.size > 1
2604
- scroll_down(@highest_in_all - @first_line_started_from)
2605
- end
2606
- Reline::IOGate.move_cursor_column(0)
2607
- @eof = true
2608
- finish
2609
- elsif @byte_pointer < @line.bytesize
2610
- splitted_last = @line.byteslice(@byte_pointer, @line.bytesize)
2611
- mbchar = splitted_last.grapheme_clusters.first
2612
- width = Reline::Unicode.get_mbchar_width(mbchar)
2613
- @cursor_max -= width
2614
- @line, = byteslice!(@line, @byte_pointer, mbchar.bytesize)
2615
- elsif @is_multiline and @byte_pointer == @line.bytesize and @buffer_of_lines.size > @line_index + 1
2616
- @cursor = calculate_width(@line)
2617
- @byte_pointer = @line.bytesize
2618
- @line += @buffer_of_lines.delete_at(@line_index + 1)
2619
- @cursor_max = calculate_width(@line)
2620
- @buffer_of_lines[@line_index] = @line
2621
- @rerender_all = true
2622
- @rest_height += 1
2623
- end
2624
- end
2625
- alias_method :delete_char, :em_delete
2626
-
2627
- private def em_delete_or_list(key)
2628
- if @line.empty? or @byte_pointer < @line.bytesize
2629
- em_delete(key)
2630
- else # show completed list
2631
- result = call_completion_proc
2632
- if result.is_a?(Array)
2633
- complete(result, true)
2634
- end
2635
- end
2636
- end
2637
- alias_method :delete_char_or_list, :em_delete_or_list
2638
-
2639
- private def em_yank(key)
2640
- yanked = @kill_ring.yank
2641
- if yanked
2642
- @line = byteinsert(@line, @byte_pointer, yanked)
2643
- yanked_width = calculate_width(yanked)
2644
- @cursor += yanked_width
2645
- @cursor_max += yanked_width
2646
- @byte_pointer += yanked.bytesize
2647
- end
2648
- end
2649
- alias_method :yank, :em_yank
2650
-
2651
- private def em_yank_pop(key)
2652
- yanked, prev_yank = @kill_ring.yank_pop
2653
- if yanked
2654
- prev_yank_width = calculate_width(prev_yank)
2655
- @cursor -= prev_yank_width
2656
- @cursor_max -= prev_yank_width
2657
- @byte_pointer -= prev_yank.bytesize
2658
- @line, = byteslice!(@line, @byte_pointer, prev_yank.bytesize)
2659
- @line = byteinsert(@line, @byte_pointer, yanked)
2660
- yanked_width = calculate_width(yanked)
2661
- @cursor += yanked_width
2662
- @cursor_max += yanked_width
2663
- @byte_pointer += yanked.bytesize
2664
- end
2665
- end
2666
- alias_method :yank_pop, :em_yank_pop
2667
-
2668
- private def ed_clear_screen(key)
2669
- @cleared = true
2670
- end
2671
- alias_method :clear_screen, :ed_clear_screen
2672
-
2673
- private def em_next_word(key)
2674
- if @line.bytesize > @byte_pointer
2675
- byte_size, width = Reline::Unicode.em_forward_word(@line, @byte_pointer)
2676
- @byte_pointer += byte_size
2677
- @cursor += width
2678
- end
2679
- end
2680
- alias_method :forward_word, :em_next_word
2681
-
2682
- private def ed_prev_word(key)
2683
- if @byte_pointer > 0
2684
- byte_size, width = Reline::Unicode.em_backward_word(@line, @byte_pointer)
2685
- @byte_pointer -= byte_size
2686
- @cursor -= width
2687
- end
2688
- end
2689
- alias_method :backward_word, :ed_prev_word
2690
-
2691
- private def em_delete_next_word(key)
2692
- if @line.bytesize > @byte_pointer
2693
- byte_size, width = Reline::Unicode.em_forward_word(@line, @byte_pointer)
2694
- @line, word = byteslice!(@line, @byte_pointer, byte_size)
2695
- @kill_ring.append(word)
2696
- @cursor_max -= width
2697
- end
2698
- end
2699
- alias_method :kill_word, :em_delete_next_word
2700
-
2701
- private def ed_delete_prev_word(key)
2702
- if @byte_pointer > 0
2703
- byte_size, width = Reline::Unicode.em_backward_word(@line, @byte_pointer)
2704
- @line, word = byteslice!(@line, @byte_pointer - byte_size, byte_size)
2705
- @kill_ring.append(word, true)
2706
- @byte_pointer -= byte_size
2707
- @cursor -= width
2708
- @cursor_max -= width
2709
- end
2710
- end
2711
- alias_method :backward_kill_word, :ed_delete_prev_word
2712
-
2713
- private def ed_transpose_chars(key)
2714
- if @byte_pointer > 0
2715
- if @cursor_max > @cursor
2716
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
2717
- mbchar = @line.byteslice(@byte_pointer, byte_size)
2718
- width = Reline::Unicode.get_mbchar_width(mbchar)
2719
- @cursor += width
2720
- @byte_pointer += byte_size
2721
- end
2722
- back1_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
2723
- if (@byte_pointer - back1_byte_size) > 0
2724
- back2_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer - back1_byte_size)
2725
- back2_pointer = @byte_pointer - back1_byte_size - back2_byte_size
2726
- @line, back2_mbchar = byteslice!(@line, back2_pointer, back2_byte_size)
2727
- @line = byteinsert(@line, @byte_pointer - back2_byte_size, back2_mbchar)
2728
- end
2729
- end
2730
- end
2731
- alias_method :transpose_chars, :ed_transpose_chars
2732
-
2733
- private def ed_transpose_words(key)
2734
- left_word_start, middle_start, right_word_start, after_start = Reline::Unicode.ed_transpose_words(@line, @byte_pointer)
2735
- before = @line.byteslice(0, left_word_start)
2736
- left_word = @line.byteslice(left_word_start, middle_start - left_word_start)
2737
- middle = @line.byteslice(middle_start, right_word_start - middle_start)
2738
- right_word = @line.byteslice(right_word_start, after_start - right_word_start)
2739
- after = @line.byteslice(after_start, @line.bytesize - after_start)
2740
- return if left_word.empty? or right_word.empty?
2741
- @line = before + right_word + middle + left_word + after
2742
- from_head_to_left_word = before + right_word + middle + left_word
2743
- @byte_pointer = from_head_to_left_word.bytesize
2744
- @cursor = calculate_width(from_head_to_left_word)
2745
- end
2746
- alias_method :transpose_words, :ed_transpose_words
2747
-
2748
- private def em_capitol_case(key)
2749
- if @line.bytesize > @byte_pointer
2750
- byte_size, _, new_str = Reline::Unicode.em_forward_word_with_capitalization(@line, @byte_pointer)
2751
- before = @line.byteslice(0, @byte_pointer)
2752
- after = @line.byteslice((@byte_pointer + byte_size)..-1)
2753
- @line = before + new_str + after
2754
- @byte_pointer += new_str.bytesize
2755
- @cursor += calculate_width(new_str)
2756
- end
2757
- end
2758
- alias_method :capitalize_word, :em_capitol_case
2759
-
2760
- private def em_lower_case(key)
2761
- if @line.bytesize > @byte_pointer
2762
- byte_size, = Reline::Unicode.em_forward_word(@line, @byte_pointer)
2763
- part = @line.byteslice(@byte_pointer, byte_size).grapheme_clusters.map { |mbchar|
2764
- mbchar =~ /[A-Z]/ ? mbchar.downcase : mbchar
2765
- }.join
2766
- rest = @line.byteslice((@byte_pointer + byte_size)..-1)
2767
- @line = @line.byteslice(0, @byte_pointer) + part
2768
- @byte_pointer = @line.bytesize
2769
- @cursor = calculate_width(@line)
2770
- @cursor_max = @cursor + calculate_width(rest)
2771
- @line += rest
2772
- end
2773
- end
2774
- alias_method :downcase_word, :em_lower_case
2775
-
2776
- private def em_upper_case(key)
2777
- if @line.bytesize > @byte_pointer
2778
- byte_size, = Reline::Unicode.em_forward_word(@line, @byte_pointer)
2779
- part = @line.byteslice(@byte_pointer, byte_size).grapheme_clusters.map { |mbchar|
2780
- mbchar =~ /[a-z]/ ? mbchar.upcase : mbchar
2781
- }.join
2782
- rest = @line.byteslice((@byte_pointer + byte_size)..-1)
2783
- @line = @line.byteslice(0, @byte_pointer) + part
2784
- @byte_pointer = @line.bytesize
2785
- @cursor = calculate_width(@line)
2786
- @cursor_max = @cursor + calculate_width(rest)
2787
- @line += rest
2788
- end
2789
- end
2790
- alias_method :upcase_word, :em_upper_case
2791
-
2792
- private def em_kill_region(key)
2793
- if @byte_pointer > 0
2794
- byte_size, width = Reline::Unicode.em_big_backward_word(@line, @byte_pointer)
2795
- @line, deleted = byteslice!(@line, @byte_pointer - byte_size, byte_size)
2796
- @byte_pointer -= byte_size
2797
- @cursor -= width
2798
- @cursor_max -= width
2799
- @kill_ring.append(deleted, true)
2800
- end
2801
- end
2802
- alias_method :unix_word_rubout, :em_kill_region
2803
-
2804
- private def copy_for_vi(text)
2805
- if @config.editing_mode_is?(:vi_insert) or @config.editing_mode_is?(:vi_command)
2806
- @vi_clipboard = text
2807
- end
2808
- end
2809
-
2810
- private def vi_insert(key)
2811
- @config.editing_mode = :vi_insert
2812
- end
2813
-
2814
- private def vi_add(key)
2815
- @config.editing_mode = :vi_insert
2816
- ed_next_char(key)
2817
- end
2818
-
2819
- private def vi_command_mode(key)
2820
- ed_prev_char(key)
2821
- @config.editing_mode = :vi_command
2822
- end
2823
- alias_method :vi_movement_mode, :vi_command_mode
2824
-
2825
- private def vi_next_word(key, arg: 1)
2826
- if @line.bytesize > @byte_pointer
2827
- byte_size, width = Reline::Unicode.vi_forward_word(@line, @byte_pointer, @drop_terminate_spaces)
2828
- @byte_pointer += byte_size
2829
- @cursor += width
2830
- end
2831
- arg -= 1
2832
- vi_next_word(key, arg: arg) if arg > 0
2833
- end
2834
-
2835
- private def vi_prev_word(key, arg: 1)
2836
- if @byte_pointer > 0
2837
- byte_size, width = Reline::Unicode.vi_backward_word(@line, @byte_pointer)
2838
- @byte_pointer -= byte_size
2839
- @cursor -= width
2840
- end
2841
- arg -= 1
2842
- vi_prev_word(key, arg: arg) if arg > 0
2843
- end
2844
-
2845
- private def vi_end_word(key, arg: 1, inclusive: false)
2846
- if @line.bytesize > @byte_pointer
2847
- byte_size, width = Reline::Unicode.vi_forward_end_word(@line, @byte_pointer)
2848
- @byte_pointer += byte_size
2849
- @cursor += width
2850
- end
2851
- arg -= 1
2852
- if inclusive and arg.zero?
2853
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
2854
- if byte_size > 0
2855
- c = @line.byteslice(@byte_pointer, byte_size)
2856
- width = Reline::Unicode.get_mbchar_width(c)
2857
- @byte_pointer += byte_size
2858
- @cursor += width
2859
- end
2860
- end
2861
- vi_end_word(key, arg: arg) if arg > 0
2862
- end
2863
-
2864
- private def vi_next_big_word(key, arg: 1)
2865
- if @line.bytesize > @byte_pointer
2866
- byte_size, width = Reline::Unicode.vi_big_forward_word(@line, @byte_pointer)
2867
- @byte_pointer += byte_size
2868
- @cursor += width
2869
- end
2870
- arg -= 1
2871
- vi_next_big_word(key, arg: arg) if arg > 0
2872
- end
2873
-
2874
- private def vi_prev_big_word(key, arg: 1)
2875
- if @byte_pointer > 0
2876
- byte_size, width = Reline::Unicode.vi_big_backward_word(@line, @byte_pointer)
2877
- @byte_pointer -= byte_size
2878
- @cursor -= width
2879
- end
2880
- arg -= 1
2881
- vi_prev_big_word(key, arg: arg) if arg > 0
2882
- end
2883
-
2884
- private def vi_end_big_word(key, arg: 1, inclusive: false)
2885
- if @line.bytesize > @byte_pointer
2886
- byte_size, width = Reline::Unicode.vi_big_forward_end_word(@line, @byte_pointer)
2887
- @byte_pointer += byte_size
2888
- @cursor += width
2889
- end
2890
- arg -= 1
2891
- if inclusive and arg.zero?
2892
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
2893
- if byte_size > 0
2894
- c = @line.byteslice(@byte_pointer, byte_size)
2895
- width = Reline::Unicode.get_mbchar_width(c)
2896
- @byte_pointer += byte_size
2897
- @cursor += width
2898
- end
2899
- end
2900
- vi_end_big_word(key, arg: arg) if arg > 0
2901
- end
2902
-
2903
- private def vi_delete_prev_char(key)
2904
- if @is_multiline and @cursor == 0 and @line_index > 0
2905
- @buffer_of_lines[@line_index] = @line
2906
- @cursor = calculate_width(@buffer_of_lines[@line_index - 1])
2907
- @byte_pointer = @buffer_of_lines[@line_index - 1].bytesize
2908
- @buffer_of_lines[@line_index - 1] += @buffer_of_lines.delete_at(@line_index)
2909
- @line_index -= 1
2910
- @line = @buffer_of_lines[@line_index]
2911
- @cursor_max = calculate_width(@line)
2912
- @rerender_all = true
2913
- elsif @cursor > 0
2914
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
2915
- @byte_pointer -= byte_size
2916
- @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
2917
- width = Reline::Unicode.get_mbchar_width(mbchar)
2918
- @cursor -= width
2919
- @cursor_max -= width
2920
- end
2921
- end
2922
-
2923
- private def vi_insert_at_bol(key)
2924
- ed_move_to_beg(key)
2925
- @config.editing_mode = :vi_insert
2926
- end
2927
-
2928
- private def vi_add_at_eol(key)
2929
- ed_move_to_end(key)
2930
- @config.editing_mode = :vi_insert
2931
- end
2932
-
2933
- private def ed_delete_prev_char(key, arg: 1)
2934
- deleted = ''
2935
- arg.times do
2936
- if @cursor > 0
2937
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
2938
- @byte_pointer -= byte_size
2939
- @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
2940
- deleted.prepend(mbchar)
2941
- width = Reline::Unicode.get_mbchar_width(mbchar)
2942
- @cursor -= width
2943
- @cursor_max -= width
2944
- end
2945
- end
2946
- copy_for_vi(deleted)
2947
- end
2948
-
2949
- private def vi_zero(key)
2950
- @byte_pointer = 0
2951
- @cursor = 0
2952
- end
2953
-
2954
- private def vi_change_meta(key, arg: 1)
2955
- @drop_terminate_spaces = true
2956
- @waiting_operator_proc = proc { |cursor_diff, byte_pointer_diff|
2957
- if byte_pointer_diff > 0
2958
- @line, cut = byteslice!(@line, @byte_pointer, byte_pointer_diff)
2959
- elsif byte_pointer_diff < 0
2960
- @line, cut = byteslice!(@line, @byte_pointer + byte_pointer_diff, -byte_pointer_diff)
2961
- end
2962
- copy_for_vi(cut)
2963
- @cursor += cursor_diff if cursor_diff < 0
2964
- @cursor_max -= cursor_diff.abs
2965
- @byte_pointer += byte_pointer_diff if byte_pointer_diff < 0
2966
- @config.editing_mode = :vi_insert
2967
- @drop_terminate_spaces = false
2968
- }
2969
- @waiting_operator_vi_arg = arg
2970
- end
2971
-
2972
- private def vi_delete_meta(key, arg: 1)
2973
- @waiting_operator_proc = proc { |cursor_diff, byte_pointer_diff|
2974
- if byte_pointer_diff > 0
2975
- @line, cut = byteslice!(@line, @byte_pointer, byte_pointer_diff)
2976
- elsif byte_pointer_diff < 0
2977
- @line, cut = byteslice!(@line, @byte_pointer + byte_pointer_diff, -byte_pointer_diff)
2978
- end
2979
- copy_for_vi(cut)
2980
- @cursor += cursor_diff if cursor_diff < 0
2981
- @cursor_max -= cursor_diff.abs
2982
- @byte_pointer += byte_pointer_diff if byte_pointer_diff < 0
2983
- }
2984
- @waiting_operator_vi_arg = arg
2985
- end
2986
-
2987
- private def vi_yank(key, arg: 1)
2988
- @waiting_operator_proc = proc { |cursor_diff, byte_pointer_diff|
2989
- if byte_pointer_diff > 0
2990
- cut = @line.byteslice(@byte_pointer, byte_pointer_diff)
2991
- elsif byte_pointer_diff < 0
2992
- cut = @line.byteslice(@byte_pointer + byte_pointer_diff, -byte_pointer_diff)
2993
- end
2994
- copy_for_vi(cut)
2995
- }
2996
- @waiting_operator_vi_arg = arg
2997
- end
2998
-
2999
- private def vi_list_or_eof(key)
3000
- if (not @is_multiline and @line.empty?) or (@is_multiline and @line.empty? and @buffer_of_lines.size == 1)
3001
- @line = nil
3002
- if @buffer_of_lines.size > 1
3003
- scroll_down(@highest_in_all - @first_line_started_from)
3004
- end
3005
- Reline::IOGate.move_cursor_column(0)
3006
- @eof = true
3007
- finish
3008
- else
3009
- ed_newline(key)
3010
- end
3011
- end
3012
- alias_method :vi_end_of_transmission, :vi_list_or_eof
3013
- alias_method :vi_eof_maybe, :vi_list_or_eof
3014
-
3015
- private def ed_delete_next_char(key, arg: 1)
3016
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
3017
- unless @line.empty? || byte_size == 0
3018
- @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
3019
- copy_for_vi(mbchar)
3020
- width = Reline::Unicode.get_mbchar_width(mbchar)
3021
- @cursor_max -= width
3022
- if @cursor > 0 and @cursor >= @cursor_max
3023
- byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
3024
- mbchar = @line.byteslice(@byte_pointer - byte_size, byte_size)
3025
- width = Reline::Unicode.get_mbchar_width(mbchar)
3026
- @byte_pointer -= byte_size
3027
- @cursor -= width
3028
- end
3029
- end
3030
- arg -= 1
3031
- ed_delete_next_char(key, arg: arg) if arg > 0
3032
- end
3033
-
3034
- private def vi_to_history_line(key)
3035
- if Reline::HISTORY.empty?
3036
- return
3037
- end
3038
- if @history_pointer.nil?
3039
- @history_pointer = 0
3040
- @line_backup_in_history = @line
3041
- @line = Reline::HISTORY[@history_pointer]
3042
- @cursor_max = calculate_width(@line)
3043
- @cursor = 0
3044
- @byte_pointer = 0
3045
- elsif @history_pointer.zero?
3046
- return
3047
- else
3048
- Reline::HISTORY[@history_pointer] = @line
3049
- @history_pointer = 0
3050
- @line = Reline::HISTORY[@history_pointer]
3051
- @cursor_max = calculate_width(@line)
3052
- @cursor = 0
3053
- @byte_pointer = 0
3054
- end
3055
- end
3056
-
3057
- private def vi_histedit(key)
3058
- path = Tempfile.open { |fp|
3059
- if @is_multiline
3060
- fp.write whole_lines.join("\n")
3061
- else
3062
- fp.write @line
3063
- end
3064
- fp.path
3065
- }
3066
- system("#{ENV['EDITOR']} #{path}")
3067
- if @is_multiline
3068
- @buffer_of_lines = File.read(path).split("\n")
3069
- @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
3070
- @line_index = 0
3071
- @line = @buffer_of_lines[@line_index]
3072
- @rerender_all = true
3073
- else
3074
- @line = File.read(path)
3075
- end
3076
- finish
3077
- end
3078
-
3079
- private def vi_paste_prev(key, arg: 1)
3080
- if @vi_clipboard.size > 0
3081
- @line = byteinsert(@line, @byte_pointer, @vi_clipboard)
3082
- @cursor_max += calculate_width(@vi_clipboard)
3083
- cursor_point = @vi_clipboard.grapheme_clusters[0..-2].join
3084
- @cursor += calculate_width(cursor_point)
3085
- @byte_pointer += cursor_point.bytesize
3086
- end
3087
- arg -= 1
3088
- vi_paste_prev(key, arg: arg) if arg > 0
3089
- end
3090
-
3091
- private def vi_paste_next(key, arg: 1)
3092
- if @vi_clipboard.size > 0
3093
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
3094
- @line = byteinsert(@line, @byte_pointer + byte_size, @vi_clipboard)
3095
- @cursor_max += calculate_width(@vi_clipboard)
3096
- @cursor += calculate_width(@vi_clipboard)
3097
- @byte_pointer += @vi_clipboard.bytesize
3098
- end
3099
- arg -= 1
3100
- vi_paste_next(key, arg: arg) if arg > 0
3101
- end
3102
-
3103
- private def ed_argument_digit(key)
3104
- if @vi_arg.nil?
3105
- if key.chr.to_i.zero?
3106
- if key.anybits?(0b10000000)
3107
- unescaped_key = key ^ 0b10000000
3108
- unless unescaped_key.chr.to_i.zero?
3109
- @vi_arg = unescaped_key.chr.to_i
3110
- end
3111
- end
3112
- else
3113
- @vi_arg = key.chr.to_i
3114
- end
3115
- else
3116
- @vi_arg = @vi_arg * 10 + key.chr.to_i
3117
- end
3118
- end
3119
-
3120
- private def vi_to_column(key, arg: 0)
3121
- @byte_pointer, @cursor = @line.grapheme_clusters.inject([0, 0]) { |total, gc|
3122
- # total has [byte_size, cursor]
3123
- mbchar_width = Reline::Unicode.get_mbchar_width(gc)
3124
- if (total.last + mbchar_width) >= arg
3125
- break total
3126
- elsif (total.last + mbchar_width) >= @cursor_max
3127
- break total
3128
- else
3129
- total = [total.first + gc.bytesize, total.last + mbchar_width]
3130
- total
3131
- end
3132
- }
3133
- end
3134
-
3135
- private def vi_replace_char(key, arg: 1)
3136
- @waiting_proc = ->(k) {
3137
- if arg == 1
3138
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
3139
- before = @line.byteslice(0, @byte_pointer)
3140
- remaining_point = @byte_pointer + byte_size
3141
- after = @line.byteslice(remaining_point, @line.bytesize - remaining_point)
3142
- @line = before + k.chr + after
3143
- @cursor_max = calculate_width(@line)
3144
- @waiting_proc = nil
3145
- elsif arg > 1
3146
- byte_size = 0
3147
- arg.times do
3148
- byte_size += Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer + byte_size)
3149
- end
3150
- before = @line.byteslice(0, @byte_pointer)
3151
- remaining_point = @byte_pointer + byte_size
3152
- after = @line.byteslice(remaining_point, @line.bytesize - remaining_point)
3153
- replaced = k.chr * arg
3154
- @line = before + replaced + after
3155
- @byte_pointer += replaced.bytesize
3156
- @cursor += calculate_width(replaced)
3157
- @cursor_max = calculate_width(@line)
3158
- @waiting_proc = nil
3159
- end
3160
- }
3161
- end
3162
-
3163
- private def vi_next_char(key, arg: 1, inclusive: false)
3164
- @waiting_proc = ->(key_for_proc) { search_next_char(key_for_proc, arg, inclusive: inclusive) }
3165
- end
3166
-
3167
- private def vi_to_next_char(key, arg: 1, inclusive: false)
3168
- @waiting_proc = ->(key_for_proc) { search_next_char(key_for_proc, arg, need_prev_char: true, inclusive: inclusive) }
3169
- end
3170
-
3171
- private def search_next_char(key, arg, need_prev_char: false, inclusive: false)
3172
- if key.instance_of?(String)
3173
- inputed_char = key
3174
- else
3175
- inputed_char = key.chr
3176
- end
3177
- prev_total = nil
3178
- total = nil
3179
- found = false
3180
- @line.byteslice(@byte_pointer..-1).grapheme_clusters.each do |mbchar|
3181
- # total has [byte_size, cursor]
3182
- unless total
3183
- # skip cursor point
3184
- width = Reline::Unicode.get_mbchar_width(mbchar)
3185
- total = [mbchar.bytesize, width]
3186
- else
3187
- if inputed_char == mbchar
3188
- arg -= 1
3189
- if arg.zero?
3190
- found = true
3191
- break
3192
- end
3193
- end
3194
- width = Reline::Unicode.get_mbchar_width(mbchar)
3195
- prev_total = total
3196
- total = [total.first + mbchar.bytesize, total.last + width]
3197
- end
3198
- end
3199
- if not need_prev_char and found and total
3200
- byte_size, width = total
3201
- @byte_pointer += byte_size
3202
- @cursor += width
3203
- elsif need_prev_char and found and prev_total
3204
- byte_size, width = prev_total
3205
- @byte_pointer += byte_size
3206
- @cursor += width
3207
- end
3208
- if inclusive
3209
- byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
3210
- if byte_size > 0
3211
- c = @line.byteslice(@byte_pointer, byte_size)
3212
- width = Reline::Unicode.get_mbchar_width(c)
3213
- @byte_pointer += byte_size
3214
- @cursor += width
3215
- end
3216
- end
3217
- @waiting_proc = nil
3218
- end
3219
-
3220
- private def vi_prev_char(key, arg: 1)
3221
- @waiting_proc = ->(key_for_proc) { search_prev_char(key_for_proc, arg) }
3222
- end
3223
-
3224
- private def vi_to_prev_char(key, arg: 1)
3225
- @waiting_proc = ->(key_for_proc) { search_prev_char(key_for_proc, arg, true) }
3226
- end
3227
-
3228
- private def search_prev_char(key, arg, need_next_char = false)
3229
- if key.instance_of?(String)
3230
- inputed_char = key
3231
- else
3232
- inputed_char = key.chr
3233
- end
3234
- prev_total = nil
3235
- total = nil
3236
- found = false
3237
- @line.byteslice(0..@byte_pointer).grapheme_clusters.reverse_each do |mbchar|
3238
- # total has [byte_size, cursor]
3239
- unless total
3240
- # skip cursor point
3241
- width = Reline::Unicode.get_mbchar_width(mbchar)
3242
- total = [mbchar.bytesize, width]
3243
- else
3244
- if inputed_char == mbchar
3245
- arg -= 1
3246
- if arg.zero?
3247
- found = true
3248
- break
3249
- end
3250
- end
3251
- width = Reline::Unicode.get_mbchar_width(mbchar)
3252
- prev_total = total
3253
- total = [total.first + mbchar.bytesize, total.last + width]
3254
- end
3255
- end
3256
- if not need_next_char and found and total
3257
- byte_size, width = total
3258
- @byte_pointer -= byte_size
3259
- @cursor -= width
3260
- elsif need_next_char and found and prev_total
3261
- byte_size, width = prev_total
3262
- @byte_pointer -= byte_size
3263
- @cursor -= width
3264
- end
3265
- @waiting_proc = nil
3266
- end
3267
-
3268
- private def vi_join_lines(key, arg: 1)
3269
- if @is_multiline and @buffer_of_lines.size > @line_index + 1
3270
- @cursor = calculate_width(@line)
3271
- @byte_pointer = @line.bytesize
3272
- @line += ' ' + @buffer_of_lines.delete_at(@line_index + 1).lstrip
3273
- @cursor_max = calculate_width(@line)
3274
- @buffer_of_lines[@line_index] = @line
3275
- @rerender_all = true
3276
- @rest_height += 1
3277
- end
3278
- arg -= 1
3279
- vi_join_lines(key, arg: arg) if arg > 0
3280
- end
3281
-
3282
- private def em_set_mark(key)
3283
- @mark_pointer = [@byte_pointer, @line_index]
3284
- end
3285
- alias_method :set_mark, :em_set_mark
3286
-
3287
- private def em_exchange_mark(key)
3288
- return unless @mark_pointer
3289
- new_pointer = [@byte_pointer, @line_index]
3290
- @previous_line_index = @line_index
3291
- @byte_pointer, @line_index = @mark_pointer
3292
- @cursor = calculate_width(@line.byteslice(0, @byte_pointer))
3293
- @cursor_max = calculate_width(@line)
3294
- @mark_pointer = new_pointer
3295
- end
3296
- alias_method :exchange_point_and_mark, :em_exchange_mark
3297
-
3298
- private def em_meta_next(key)
3299
- end
3300
- end