study_line 0.1.6 → 0.2.1

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 (2047) 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-0.2.0.gem +0 -0
  6. data/study_line.gemspec +15 -27
  7. data/vendor/bundle/ruby/3.2.0/bin/dotenv +29 -0
  8. data/vendor/bundle/ruby/3.2.0/bin/httparty +29 -0
  9. data/vendor/bundle/ruby/3.2.0/cache/ast-2.4.2.gem +0 -0
  10. data/vendor/bundle/ruby/3.2.0/cache/diff-lcs-1.5.0.gem +0 -0
  11. data/vendor/bundle/ruby/3.2.0/cache/dotenv-2.8.1.gem +0 -0
  12. data/vendor/bundle/ruby/3.2.0/cache/httparty-0.21.0.gem +0 -0
  13. data/vendor/bundle/ruby/3.2.0/cache/json-2.7.1.gem +0 -0
  14. data/vendor/bundle/ruby/3.2.0/cache/language_server-protocol-3.17.0.3.gem +0 -0
  15. data/vendor/bundle/ruby/3.2.0/cache/mini_mime-1.1.5.gem +0 -0
  16. data/vendor/bundle/ruby/3.2.0/cache/multi_xml-0.6.0.gem +0 -0
  17. data/vendor/bundle/ruby/3.2.0/cache/parallel-1.24.0.gem +0 -0
  18. data/vendor/bundle/ruby/3.2.0/cache/parser-3.3.0.4.gem +0 -0
  19. data/vendor/bundle/ruby/3.2.0/cache/racc-1.7.3.gem +0 -0
  20. data/vendor/bundle/ruby/3.2.0/cache/rainbow-3.1.1.gem +0 -0
  21. data/vendor/bundle/ruby/3.2.0/cache/rake-13.1.0.gem +0 -0
  22. data/vendor/bundle/ruby/3.2.0/cache/regexp_parser-2.9.0.gem +0 -0
  23. data/vendor/bundle/ruby/3.2.0/cache/rexml-3.2.6.gem +0 -0
  24. data/vendor/bundle/ruby/3.2.0/cache/rspec-3.12.0.gem +0 -0
  25. data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.12.2.gem +0 -0
  26. data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.12.3.gem +0 -0
  27. data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.12.6.gem +0 -0
  28. data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.12.1.gem +0 -0
  29. data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.60.0.gem +0 -0
  30. data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.30.0.gem +0 -0
  31. data/vendor/bundle/ruby/3.2.0/cache/ruby-progressbar-1.13.0.gem +0 -0
  32. data/vendor/bundle/ruby/3.2.0/cache/unicode-display_width-2.5.0.gem +0 -0
  33. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/gem_make.out +16 -0
  34. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/json/ext/generator.bundle +0 -0
  35. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/json/ext/parser.bundle +0 -0
  36. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/json-2.7.1/mkmf.log +113 -0
  37. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.3/gem_make.out +20 -0
  38. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.3/racc/cparse.bundle +0 -0
  39. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/LICENSE +22 -0
  40. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/README.md +266 -0
  41. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/bin/dotenv +4 -0
  42. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb +57 -0
  43. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/environment.rb +28 -0
  44. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/load.rb +2 -0
  45. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/missing_keys.rb +10 -0
  46. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/parser.rb +109 -0
  47. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/substitutions/command.rb +41 -0
  48. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/substitutions/variable.rb +43 -0
  49. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/tasks.rb +7 -0
  50. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/template.rb +26 -0
  51. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/version.rb +3 -0
  52. data/vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv.rb +86 -0
  53. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.editorconfig +18 -0
  54. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.github/workflows/ci.yml +26 -0
  55. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.gitignore +14 -0
  56. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.rubocop.yml +92 -0
  57. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/.rubocop_todo.yml +124 -0
  58. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/CONTRIBUTING.md +23 -0
  59. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Changelog.md +557 -0
  60. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Gemfile +26 -0
  61. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Guardfile +17 -0
  62. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/MIT-LICENSE +20 -0
  63. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/README.md +79 -0
  64. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/Rakefile +10 -0
  65. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/bin/httparty +123 -0
  66. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/cucumber.yml +1 -0
  67. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/docs/README.md +191 -0
  68. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/README.md +89 -0
  69. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/aaws.rb +36 -0
  70. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/basic.rb +28 -0
  71. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/body_stream.rb +14 -0
  72. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/crack.rb +19 -0
  73. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/custom_parsers.rb +68 -0
  74. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/delicious.rb +37 -0
  75. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/google.rb +16 -0
  76. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/headers_and_user_agents.rb +10 -0
  77. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/idn.rb +10 -0
  78. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/logging.rb +36 -0
  79. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/microsoft_graph.rb +52 -0
  80. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/multipart.rb +22 -0
  81. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/nokogiri_html_parser.rb +19 -0
  82. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/peer_cert.rb +9 -0
  83. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/rescue_json.rb +17 -0
  84. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/rubyurl.rb +14 -0
  85. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/stackexchange.rb +24 -0
  86. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/stream_download.rb +26 -0
  87. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/tripit_sign_in.rb +44 -0
  88. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/twitter.rb +31 -0
  89. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/examples/whoismyrep.rb +10 -0
  90. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/httparty.gemspec +30 -0
  91. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/connection_adapter.rb +256 -0
  92. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/cookie_hash.rb +23 -0
  93. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/decompressor.rb +102 -0
  94. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/exceptions.rb +35 -0
  95. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/hash_conversions.rb +71 -0
  96. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/headers_processor.rb +32 -0
  97. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/apache_formatter.rb +47 -0
  98. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/curl_formatter.rb +93 -0
  99. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/logger.rb +30 -0
  100. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/logger/logstash_formatter.rb +61 -0
  101. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/module_inheritable_attributes.rb +58 -0
  102. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/net_digest_auth.rb +135 -0
  103. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/parser.rb +154 -0
  104. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request/body.rb +105 -0
  105. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request/multipart_boundary.rb +13 -0
  106. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/request.rb +418 -0
  107. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response/headers.rb +35 -0
  108. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response.rb +156 -0
  109. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/response_fragment.rb +21 -0
  110. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/text_encoder.rb +72 -0
  111. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/utils.rb +13 -0
  112. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty/version.rb +5 -0
  113. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/lib/httparty.rb +686 -0
  114. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/script/release +42 -0
  115. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/website/css/common.css +47 -0
  116. data/vendor/bundle/ruby/3.2.0/gems/httparty-0.21.0/website/index.html +73 -0
  117. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/CHANGES.md +503 -0
  118. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/README.md +425 -0
  119. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/Makefile +205 -0
  120. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/fbuffer/fbuffer.h +187 -0
  121. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/Makefile +271 -0
  122. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/depend +1 -0
  123. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/extconf.rb +4 -0
  124. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/generator.c +1673 -0
  125. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/generator/generator.h +177 -0
  126. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/Makefile +271 -0
  127. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/depend +1 -0
  128. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/extconf.rb +32 -0
  129. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.c +2211 -0
  130. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.h +96 -0
  131. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/ext/parser/parser.rl +971 -0
  132. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/ext/json/extconf.rb +3 -0
  133. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/json.gemspec +68 -0
  134. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/bigdecimal.rb +58 -0
  135. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/complex.rb +51 -0
  136. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/core.rb +12 -0
  137. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/date.rb +54 -0
  138. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/date_time.rb +67 -0
  139. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/exception.rb +49 -0
  140. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/ostruct.rb +51 -0
  141. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/range.rb +54 -0
  142. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/rational.rb +49 -0
  143. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/regexp.rb +48 -0
  144. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/set.rb +48 -0
  145. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/struct.rb +52 -0
  146. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/symbol.rb +48 -0
  147. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/add/time.rb +59 -0
  148. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/common.rb +697 -0
  149. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext/generator.bundle +0 -0
  150. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext/parser.bundle +0 -0
  151. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/ext.rb +15 -0
  152. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/generic_object.rb +71 -0
  153. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure/generator.rb +513 -0
  154. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure/parser.rb +337 -0
  155. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/pure.rb +15 -0
  156. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json/version.rb +9 -0
  157. data/vendor/bundle/ruby/3.2.0/gems/json-2.7.1/lib/json.rb +592 -0
  158. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.github/workflows/ci.yml +51 -0
  159. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.github/workflows/db.yml +26 -0
  160. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.gitignore +9 -0
  161. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/.rubocop.yml +5 -0
  162. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/CHANGELOG +65 -0
  163. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/CODE_OF_CONDUCT.md +74 -0
  164. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/Gemfile +9 -0
  165. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/LICENSE.txt +21 -0
  166. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/README.md +114 -0
  167. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/Rakefile +97 -0
  168. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb +51 -0
  169. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin/console +15 -0
  170. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin/db_pull_request +20 -0
  171. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/db/content_type_mime.db +880 -0
  172. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/db/ext_mime.db +1201 -0
  173. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/mini_mime/version.rb +4 -0
  174. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/lib/mini_mime.rb +186 -0
  175. data/vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/mini_mime.gemspec +31 -0
  176. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/.yardopts +8 -0
  177. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/CHANGELOG.md +93 -0
  178. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/CONTRIBUTING.md +51 -0
  179. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/LICENSE.md +20 -0
  180. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/README.md +95 -0
  181. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml.rb +33 -0
  182. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml2_parser.rb +72 -0
  183. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/nokogiri.rb +35 -0
  184. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/oga.rb +73 -0
  185. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/ox.rb +91 -0
  186. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/rexml.rb +113 -0
  187. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml/version.rb +45 -0
  188. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/lib/multi_xml.rb +305 -0
  189. data/vendor/bundle/ruby/3.2.0/gems/multi_xml-0.6.0/multi_xml.gemspec +19 -0
  190. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.24.0/lib/parallel/version.rb +4 -0
  191. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.24.0/lib/parallel.rb +676 -0
  192. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/all.rb +17 -0
  193. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/builders/default.rb +2338 -0
  194. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/current.rb +137 -0
  195. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer/literal.rb +284 -0
  196. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer-F0.rb +12922 -0
  197. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/lexer-F1.rb +14875 -0
  198. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/macruby.rb +9634 -0
  199. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/messages.rb +125 -0
  200. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby18.rb +9272 -0
  201. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby19.rb +9558 -0
  202. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby20.rb +10229 -0
  203. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby21.rb +10203 -0
  204. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby22.rb +10302 -0
  205. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby23.rb +10322 -0
  206. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby24.rb +10454 -0
  207. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby25.rb +10374 -0
  208. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby26.rb +10352 -0
  209. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby27.rb +11947 -0
  210. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby30.rb +12243 -0
  211. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby31.rb +12716 -0
  212. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby32.rb +12704 -0
  213. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby33.rb +12589 -0
  214. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/ruby34.rb +12589 -0
  215. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/rubymotion.rb +9515 -0
  216. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/runner.rb +298 -0
  217. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/static_environment.rb +99 -0
  218. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.0.4/lib/parser/version.rb +5 -0
  219. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/README.ja.rdoc +66 -0
  220. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/README.rdoc +60 -0
  221. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/TODO +5 -0
  222. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/bin/racc +326 -0
  223. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/en/grammar.en.rdoc +226 -0
  224. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/en/grammar2.en.rdoc +219 -0
  225. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/command.ja.html +99 -0
  226. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/grammar.ja.rdoc +348 -0
  227. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/doc/ja/parser.ja.rdoc +125 -0
  228. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/Makefile +270 -0
  229. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/cparse.c +840 -0
  230. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse/extconf.rb +8 -0
  231. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/cparse.bundle +0 -0
  232. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/info.rb +18 -0
  233. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parser-text.rb +648 -0
  234. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parser.rb +634 -0
  235. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/lib/racc/parserfilegenerator.rb +473 -0
  236. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/Gemfile +15 -0
  237. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/LICENSE +22 -0
  238. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/character_set.rb +23 -0
  239. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/posix_class.rb +11 -0
  240. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/classes/unicode_property.rb +119 -0
  241. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression/methods/negative.rb +20 -0
  242. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/expression.rb +37 -0
  243. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/parser.rb +596 -0
  244. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/properties/long.csv +651 -0
  245. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/properties/short.csv +249 -0
  246. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner/scanner.rl +828 -0
  247. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/scanner.rb +2514 -0
  248. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/syntax/token/unicode_property.rb +751 -0
  249. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.9.0/lib/regexp_parser/version.rb +5 -0
  250. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/LICENSE.txt +20 -0
  251. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/README.md +252 -0
  252. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/config/default.yml +5672 -0
  253. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config.rb +328 -0
  254. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_loader.rb +258 -0
  255. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion.rb +111 -0
  256. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_validator.rb +270 -0
  257. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/base.rb +492 -0
  258. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  259. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/exclude_limit.rb +26 -0
  260. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
  261. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs/method_name_equal.rb +49 -0
  262. 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
  263. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +147 -0
  264. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/internal_affairs.rb +32 -0
  265. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/argument_alignment.rb +158 -0
  266. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/end_alignment.rb +208 -0
  267. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/extra_spacing.rb +185 -0
  268. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/first_array_element_indentation.rb +195 -0
  269. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  270. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +311 -0
  271. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/heredoc_indentation.rb +165 -0
  272. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/line_continuation_leading_space.rb +144 -0
  273. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/redundant_line_break.rb +149 -0
  274. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +211 -0
  275. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/single_line_block_chain.rb +69 -0
  276. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/layout/space_around_operators.rb +290 -0
  277. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/assignment_in_condition.rb +109 -0
  278. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +68 -0
  279. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
  280. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/debugger.rb +125 -0
  281. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/duplicate_methods.rb +268 -0
  282. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/erb_new_arguments.rb +161 -0
  283. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/float_comparison.rb +103 -0
  284. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/hash_compare_by_identity.rb +48 -0
  285. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +56 -0
  286. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +85 -0
  287. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/next_without_accumulator.rb +55 -0
  288. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/non_deterministic_require_order.rb +183 -0
  289. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/number_conversion.rb +201 -0
  290. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +150 -0
  291. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_with_index.rb +80 -0
  292. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/redundant_with_object.rb +79 -0
  293. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +104 -0
  294. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/self_assignment.rb +116 -0
  295. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/shadowed_argument.rb +177 -0
  296. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/symbol_conversion.rb +184 -0
  297. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/syntax.rb +46 -0
  298. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  299. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  300. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/useless_access_modifier.rb +295 -0
  301. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/useless_times.rb +114 -0
  302. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/lint/void.rb +236 -0
  303. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/abc_size.rb +56 -0
  304. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/check_line_breakable.rb +227 -0
  305. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/configurable_formatting.rb +41 -0
  306. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/preceding_following_alignment.rb +181 -0
  307. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  308. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/block_forwarding.rb +133 -0
  309. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/constant_name.rb +83 -0
  310. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +295 -0
  311. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/registry.rb +315 -0
  312. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/security/open.rb +89 -0
  313. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/access_modifier_declarations.rb +225 -0
  314. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/accessor_grouping.rb +180 -0
  315. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/arguments_forwarding.rb +447 -0
  316. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/array_first_last.rb +64 -0
  317. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/auto_resource_cleanup.rb +55 -0
  318. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  319. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/case_like_if.rb +280 -0
  320. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/class_check.rb +55 -0
  321. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/collection_compact.rb +134 -0
  322. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/combinable_loops.rb +123 -0
  323. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/concat_array_literals.rb +95 -0
  324. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/conditional_assignment.rb +663 -0
  325. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/date_time.rb +94 -0
  326. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/each_for_simple_loop.rb +90 -0
  327. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/each_with_object.rb +139 -0
  328. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/empty_literal.rb +138 -0
  329. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/eval_with_location.rb +226 -0
  330. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/exact_regexp_match.rb +69 -0
  331. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/explicit_block_argument.rb +153 -0
  332. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/hash_each_methods.rb +196 -0
  333. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/hash_except.rb +189 -0
  334. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/identical_conditional_branches.rb +254 -0
  335. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/inverse_methods.rb +197 -0
  336. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/invertible_unless_condition.rb +155 -0
  337. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +137 -0
  338. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/map_to_hash.rb +81 -0
  339. 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
  340. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +246 -0
  341. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +123 -0
  342. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/method_def_parentheses.rb +180 -0
  343. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
  344. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/multiline_ternary_operator.rb +98 -0
  345. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/next.rb +233 -0
  346. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/numeric_literal_prefix.rb +119 -0
  347. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/operator_method_call.rb +73 -0
  348. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/parallel_assignment.rb +300 -0
  349. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/parentheses_around_condition.rb +136 -0
  350. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_argument.rb +104 -0
  351. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +133 -0
  352. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_each.rb +119 -0
  353. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_fetch_block.rb +121 -0
  354. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_line_continuation.rb +192 -0
  355. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_parentheses.rb +284 -0
  356. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_return.rb +183 -0
  357. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_self.rb +218 -0
  358. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_sort.rb +209 -0
  359. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_sort_by.rb +63 -0
  360. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/redundant_string_escape.rb +185 -0
  361. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/sample.rb +146 -0
  362. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/select_by_regexp.rb +163 -0
  363. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/self_assignment.rb +101 -0
  364. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/semicolon.rb +172 -0
  365. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/single_argument_dig.rb +69 -0
  366. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/slicing_with_range.rb +117 -0
  367. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/string_chars.rb +42 -0
  368. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/strip.rb +45 -0
  369. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/super_with_args_parentheses.rb +35 -0
  370. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/symbol_proc.rb +246 -0
  371. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/style/unpack_first.rb +59 -0
  372. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cops_documentation_generator.rb +339 -0
  373. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/ext/regexp_node.rb +92 -0
  374. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/disabled_config_formatter.rb +278 -0
  375. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/html_formatter.rb +133 -0
  376. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter/json_formatter.rb +79 -0
  377. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/formatter.rb +34 -0
  378. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/lsp/routes.rb +246 -0
  379. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/options.rb +633 -0
  380. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/result_cache.rb +240 -0
  381. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/rspec/shared_contexts.rb +183 -0
  382. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/rspec/support.rb +30 -0
  383. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/runner.rb +498 -0
  384. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/server/cache.rb +155 -0
  385. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/version.rb +102 -0
  386. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop.rb +771 -0
  387. data/vendor/bundle/ruby/3.2.0/specifications/ast-2.4.2.gemspec +2 -2
  388. data/vendor/bundle/ruby/3.2.0/specifications/diff-lcs-1.5.0.gemspec +2 -2
  389. data/vendor/bundle/ruby/3.2.0/specifications/dotenv-2.8.1.gemspec +28 -0
  390. data/vendor/bundle/ruby/3.2.0/specifications/httparty-0.21.0.gemspec +29 -0
  391. data/vendor/bundle/ruby/3.2.0/specifications/json-2.7.1.gemspec +0 -0
  392. data/vendor/bundle/ruby/3.2.0/specifications/language_server-protocol-3.17.0.3.gemspec +2 -2
  393. data/vendor/bundle/ruby/3.2.0/specifications/mini_mime-1.1.5.gemspec +30 -0
  394. data/vendor/bundle/ruby/3.2.0/specifications/multi_xml-0.6.0.gemspec +24 -0
  395. data/vendor/bundle/ruby/3.2.0/specifications/parallel-1.24.0.gemspec +21 -0
  396. data/vendor/bundle/ruby/3.2.0/specifications/parser-3.3.0.4.gemspec +37 -0
  397. data/vendor/bundle/ruby/3.2.0/specifications/racc-1.7.3.gemspec +27 -0
  398. data/vendor/bundle/ruby/3.2.0/specifications/rainbow-3.1.1.gemspec +2 -2
  399. data/vendor/bundle/ruby/3.2.0/specifications/rake-13.1.0.gemspec +2 -2
  400. data/vendor/bundle/ruby/3.2.0/specifications/regexp_parser-2.9.0.gemspec +22 -0
  401. data/vendor/bundle/ruby/3.2.0/specifications/rexml-3.2.6.gemspec +2 -2
  402. data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.12.0.gemspec +2 -2
  403. data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.12.2.gemspec +2 -2
  404. data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.12.3.gemspec +2 -2
  405. data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.12.6.gemspec +2 -2
  406. data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.12.1.gemspec +2 -2
  407. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.60.0.gemspec +39 -0
  408. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.30.0.gemspec +2 -2
  409. data/vendor/bundle/ruby/3.2.0/specifications/ruby-progressbar-1.13.0.gemspec +2 -2
  410. data/vendor/bundle/ruby/3.2.0/specifications/unicode-display_width-2.5.0.gemspec +2 -2
  411. metadata +1251 -1657
  412. data/.DS_Store +0 -0
  413. data/.gitignore +0 -11
  414. data/Gemfile +0 -13
  415. data/Gemfile.lock +0 -61
  416. data/bin/console +0 -11
  417. data/bin/stl +0 -5
  418. data/lib/.DS_Store +0 -0
  419. data/lib/study_line/.DS_Store +0 -0
  420. data/spec/spec_helper.rb +0 -15
  421. data/spec/study_line_spec.rb +0 -11
  422. data/vendor/bundle/ruby/3.2.0/bin/irb +0 -29
  423. data/vendor/bundle/ruby/3.2.0/bin/rdbg +0 -29
  424. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp +0 -29
  425. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp-check +0 -29
  426. data/vendor/bundle/ruby/3.2.0/bin/ruby-lsp-doctor +0 -29
  427. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/debug-1.8.0/debug/debug.bundle +0 -0
  428. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/debug-1.8.0/gem_make.out +0 -19
  429. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/gem_make.out +0 -51
  430. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/mkmf.log +0 -74
  431. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/prism-0.15.1/prism/prism.bundle +0 -0
  432. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/gem.build_complete +0 -0
  433. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/gem_make.out +0 -30
  434. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/mkmf.log +0 -96
  435. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/psych-5.1.1.1/psych.bundle +0 -0
  436. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/gem.build_complete +0 -0
  437. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/gem_make.out +0 -20
  438. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/mkmf.log +0 -57
  439. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/racc-1.7.1/racc/cparse.bundle +0 -0
  440. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/gem.build_complete +0 -0
  441. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/gem_make.out +0 -18
  442. data/vendor/bundle/ruby/3.2.0/extensions/arm64-darwin-22/3.2.0/stringio-3.0.8/stringio.bundle +0 -0
  443. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/CONTRIBUTING.md +0 -573
  444. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/Gemfile +0 -9
  445. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/LICENSE.txt +0 -22
  446. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/README.md +0 -939
  447. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/Rakefile +0 -57
  448. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/TODO.md +0 -23
  449. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/debug.gemspec +0 -32
  450. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/exe/rdbg +0 -53
  451. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/Makefile +0 -270
  452. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/debug.c +0 -214
  453. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/debug_version.h +0 -1
  454. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/extconf.rb +0 -26
  455. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/ext/debug/iseq_collector.c +0 -91
  456. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/abbrev_command.rb +0 -77
  457. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/breakpoint.rb +0 -556
  458. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/client.rb +0 -262
  459. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/color.rb +0 -123
  460. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/config.rb +0 -564
  461. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/console.rb +0 -234
  462. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/dap_custom/traceInspector.rb +0 -336
  463. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/debug.bundle +0 -0
  464. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/frame_info.rb +0 -188
  465. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/local.rb +0 -115
  466. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/open.rb +0 -13
  467. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/open_nonstop.rb +0 -15
  468. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/prelude.rb +0 -50
  469. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server.rb +0 -523
  470. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server_cdp.rb +0 -1349
  471. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/server_dap.rb +0 -1106
  472. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/session.rb +0 -2634
  473. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/source_repository.rb +0 -150
  474. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/start.rb +0 -5
  475. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/thread_client.rb +0 -1454
  476. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/tracer.rb +0 -241
  477. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug/version.rb +0 -5
  478. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/lib/debug.rb +0 -9
  479. data/vendor/bundle/ruby/3.2.0/gems/debug-1.8.0/misc/README.md.erb +0 -610
  480. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/.document +0 -4
  481. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/Gemfile +0 -19
  482. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/LICENSE.txt +0 -22
  483. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/README.md +0 -281
  484. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/Rakefile +0 -44
  485. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/bin/console +0 -6
  486. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/bin/setup +0 -6
  487. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/doc/irb/irb-tools.rd.ja +0 -184
  488. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/doc/irb/irb.rd.ja +0 -425
  489. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/exe/irb +0 -9
  490. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/irb.gemspec +0 -46
  491. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/backtrace.rb +0 -21
  492. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/break.rb +0 -21
  493. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/catch.rb +0 -21
  494. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/chws.rb +0 -36
  495. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/continue.rb +0 -17
  496. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/debug.rb +0 -80
  497. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/delete.rb +0 -17
  498. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/edit.rb +0 -60
  499. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/finish.rb +0 -17
  500. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/help.rb +0 -23
  501. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/info.rb +0 -21
  502. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/irb_info.rb +0 -33
  503. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/load.rb +0 -76
  504. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/ls.rb +0 -139
  505. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/measure.rb +0 -48
  506. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/next.rb +0 -17
  507. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/nop.rb +0 -53
  508. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/pushws.rb +0 -45
  509. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_cmds.rb +0 -53
  510. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_doc.rb +0 -48
  511. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/show_source.rb +0 -61
  512. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/step.rb +0 -17
  513. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/subirb.rb +0 -109
  514. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/cmd/whereami.rb +0 -25
  515. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/color.rb +0 -262
  516. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/color_printer.rb +0 -55
  517. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/completion.rb +0 -434
  518. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/context.rb +0 -586
  519. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/debug/ui.rb +0 -103
  520. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/debug.rb +0 -112
  521. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/easter-egg.rb +0 -138
  522. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/change-ws.rb +0 -39
  523. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/eval_history.rb +0 -149
  524. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/loader.rb +0 -127
  525. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/multi-irb.rb +0 -258
  526. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/tracer.rb +0 -78
  527. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/use-loader.rb +0 -69
  528. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ext/workspaces.rb +0 -60
  529. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/extend-command.rb +0 -354
  530. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/frame.rb +0 -80
  531. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/help.rb +0 -28
  532. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/history.rb +0 -76
  533. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/init.rb +0 -436
  534. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/input-method.rb +0 -463
  535. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/inspector.rb +0 -130
  536. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/error.rb +0 -62
  537. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/help-message +0 -51
  538. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/ja/error.rb +0 -63
  539. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/lc/ja/help-message +0 -45
  540. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/locale.rb +0 -153
  541. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/nesting_parser.rb +0 -227
  542. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/notifier.rb +0 -230
  543. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/output-method.rb +0 -86
  544. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/pager.rb +0 -86
  545. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ruby-lex.rb +0 -474
  546. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ruby_logo.aa +0 -37
  547. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/source_finder.rb +0 -64
  548. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/statement.rb +0 -80
  549. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/version.rb +0 -11
  550. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/workspace.rb +0 -173
  551. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/ws-for-case-2.rb +0 -9
  552. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb/xmp.rb +0 -164
  553. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/lib/irb.rb +0 -1093
  554. data/vendor/bundle/ruby/3.2.0/gems/irb-1.8.3/man/irb.1 +0 -250
  555. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.23.0/lib/parallel/version.rb +0 -4
  556. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.23.0/lib/parallel.rb +0 -652
  557. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/all.rb +0 -16
  558. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/builders/default.rb +0 -2321
  559. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/current.rb +0 -128
  560. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer/literal.rb +0 -269
  561. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer-F0.rb +0 -12870
  562. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/lexer-F1.rb +0 -14814
  563. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/macruby.rb +0 -9634
  564. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/messages.rb +0 -120
  565. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby18.rb +0 -9272
  566. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby19.rb +0 -9558
  567. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby20.rb +0 -10229
  568. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby21.rb +0 -10203
  569. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby22.rb +0 -10302
  570. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby23.rb +0 -10322
  571. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby24.rb +0 -10454
  572. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby25.rb +0 -10374
  573. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby26.rb +0 -10352
  574. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby27.rb +0 -11947
  575. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby30.rb +0 -12243
  576. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby31.rb +0 -12716
  577. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby32.rb +0 -12704
  578. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/ruby33.rb +0 -12704
  579. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/rubymotion.rb +0 -9515
  580. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/runner.rb +0 -293
  581. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/static_environment.rb +0 -87
  582. data/vendor/bundle/ruby/3.2.0/gems/parser-3.2.2.4/lib/parser/version.rb +0 -5
  583. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CHANGELOG.md +0 -215
  584. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CODE_OF_CONDUCT.md +0 -76
  585. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/CONTRIBUTING.md +0 -62
  586. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/LICENSE.md +0 -7
  587. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/Makefile +0 -84
  588. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/README.md +0 -92
  589. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/librubyparser.a +0 -0
  590. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/diagnostic.o +0 -0
  591. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_big5.o +0 -0
  592. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_euc_jp.o +0 -0
  593. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_gbk.o +0 -0
  594. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_shift_jis.o +0 -0
  595. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_tables.o +0 -0
  596. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_unicode.o +0 -0
  597. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/enc/pm_windows_31j.o +0 -0
  598. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/node.o +0 -0
  599. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/pack.o +0 -0
  600. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/prettyprint.o +0 -0
  601. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/prism.o +0 -0
  602. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/regexp.o +0 -0
  603. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/serialize.o +0 -0
  604. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/token_type.o +0 -0
  605. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_buffer.o +0 -0
  606. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_char.o +0 -0
  607. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_constant_pool.o +0 -0
  608. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_list.o +0 -0
  609. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_memchr.o +0 -0
  610. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_newline_list.o +0 -0
  611. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_state_stack.o +0 -0
  612. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_string.o +0 -0
  613. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_string_list.o +0 -0
  614. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_strncasecmp.o +0 -0
  615. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/build/static/util/pm_strpbrk.o +0 -0
  616. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/config.yml +0 -2542
  617. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/build_system.md +0 -74
  618. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/building.md +0 -22
  619. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/configuration.md +0 -60
  620. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/design.md +0 -53
  621. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/encoding.md +0 -117
  622. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/fuzzing.md +0 -88
  623. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/heredocs.md +0 -36
  624. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/mapping.md +0 -117
  625. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/prism.png +0 -0
  626. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/ripper.md +0 -36
  627. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/ruby_api.md +0 -25
  628. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/serialization.md +0 -191
  629. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/docs/testing.md +0 -55
  630. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/Makefile +0 -273
  631. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/api_node.c +0 -4878
  632. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/api_pack.c +0 -256
  633. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extconf.rb +0 -136
  634. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extension.c +0 -613
  635. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/ext/prism/extension.h +0 -18
  636. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/ast.h +0 -1984
  637. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/defines.h +0 -45
  638. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/diagnostic.h +0 -232
  639. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/enc/pm_encoding.h +0 -95
  640. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/node.h +0 -49
  641. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/pack.h +0 -141
  642. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/parser.h +0 -444
  643. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/regexp.h +0 -19
  644. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_buffer.h +0 -54
  645. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_char.h +0 -91
  646. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_constant_pool.h +0 -97
  647. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_list.h +0 -67
  648. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_memchr.h +0 -14
  649. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_newline_list.h +0 -61
  650. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_state_stack.h +0 -24
  651. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_string.h +0 -62
  652. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_string_list.h +0 -25
  653. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/util/pm_strpbrk.h +0 -29
  654. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism/version.h +0 -4
  655. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/include/prism.h +0 -81
  656. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/compiler.rb +0 -474
  657. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/debug.rb +0 -161
  658. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/desugar_compiler.rb +0 -206
  659. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/dispatcher.rb +0 -2093
  660. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/dsl.rb +0 -765
  661. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/ffi.rb +0 -251
  662. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/lex_compat.rb +0 -872
  663. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/mutation_compiler.rb +0 -733
  664. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node.rb +0 -16410
  665. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node_ext.rb +0 -99
  666. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/node_inspector.rb +0 -68
  667. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/pack.rb +0 -185
  668. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result/comments.rb +0 -172
  669. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result/newlines.rb +0 -60
  670. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/parse_result.rb +0 -293
  671. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/pattern.rb +0 -239
  672. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/prism.bundle +0 -0
  673. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/ripper_compat.rb +0 -174
  674. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/serialize.rb +0 -670
  675. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism/visitor.rb +0 -479
  676. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/lib/prism.rb +0 -64
  677. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/prism.gemspec +0 -112
  678. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/diagnostic.c +0 -288
  679. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_big5.c +0 -52
  680. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_euc_jp.c +0 -58
  681. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_gbk.c +0 -61
  682. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_shift_jis.c +0 -56
  683. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_tables.c +0 -507
  684. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_unicode.c +0 -2324
  685. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/enc/pm_windows_31j.c +0 -56
  686. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/node.c +0 -2700
  687. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/pack.c +0 -493
  688. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/prettyprint.c +0 -2193
  689. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/prism.c +0 -15704
  690. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/regexp.c +0 -580
  691. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/serialize.c +0 -1960
  692. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/token_type.c +0 -349
  693. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_buffer.c +0 -105
  694. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_char.c +0 -272
  695. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_constant_pool.c +0 -266
  696. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_list.c +0 -41
  697. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_memchr.c +0 -33
  698. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_newline_list.c +0 -134
  699. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_state_stack.c +0 -19
  700. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_string.c +0 -200
  701. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_string_list.c +0 -29
  702. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_strncasecmp.c +0 -17
  703. data/vendor/bundle/ruby/3.2.0/gems/prism-0.15.1/src/util/pm_strpbrk.c +0 -66
  704. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/CONTRIBUTING.md +0 -24
  705. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/LICENSE +0 -21
  706. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/README.md +0 -73
  707. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/Makefile +0 -292
  708. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/depend +0 -17
  709. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/extconf.rb +0 -53
  710. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych.c +0 -37
  711. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych.h +0 -17
  712. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_emitter.c +0 -555
  713. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_emitter.h +0 -8
  714. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_parser.c +0 -565
  715. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_parser.h +0 -6
  716. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_to_ruby.c +0 -39
  717. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_to_ruby.h +0 -8
  718. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_yaml_tree.c +0 -12
  719. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych/psych_yaml_tree.h +0 -8
  720. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/class_loader.rb +0 -104
  721. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/coder.rb +0 -95
  722. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/core_ext.rb +0 -19
  723. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/exception.rb +0 -28
  724. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handler.rb +0 -255
  725. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handlers/document_stream.rb +0 -23
  726. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/handlers/recorder.rb +0 -40
  727. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/ruby_events.rb +0 -20
  728. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/stream.rb +0 -17
  729. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/tree_builder.rb +0 -13
  730. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/json/yaml_events.rb +0 -30
  731. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/alias.rb +0 -21
  732. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/document.rb +0 -63
  733. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/mapping.rb +0 -59
  734. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/node.rb +0 -75
  735. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/scalar.rb +0 -70
  736. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/sequence.rb +0 -84
  737. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes/stream.rb +0 -40
  738. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/nodes.rb +0 -78
  739. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/omap.rb +0 -5
  740. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/parser.rb +0 -65
  741. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/scalar_scanner.rb +0 -142
  742. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/set.rb +0 -5
  743. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/stream.rb +0 -38
  744. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/streaming.rb +0 -28
  745. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/syntax_error.rb +0 -22
  746. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/tree_builder.rb +0 -137
  747. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/versions.rb +0 -10
  748. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/depth_first.rb +0 -27
  749. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/emitter.rb +0 -52
  750. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/json_tree.rb +0 -25
  751. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/to_ruby.rb +0 -436
  752. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/visitor.rb +0 -34
  753. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors/yaml_tree.rb +0 -587
  754. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/visitors.rb +0 -7
  755. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych/y.rb +0 -10
  756. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych.bundle +0 -0
  757. data/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/lib/psych.rb +0 -745
  758. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.ja.rdoc +0 -94
  759. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.rdoc +0 -79
  760. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/TODO +0 -5
  761. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/bin/racc +0 -320
  762. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/NEWS.en.rdoc +0 -282
  763. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar.en.rdoc +0 -226
  764. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar2.en.rdoc +0 -219
  765. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/NEWS.ja.rdoc +0 -307
  766. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/command.ja.html +0 -94
  767. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/grammar.ja.rdoc +0 -348
  768. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/parser.ja.rdoc +0 -125
  769. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/MANIFEST +0 -4
  770. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/Makefile +0 -270
  771. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/cparse.c +0 -861
  772. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/extconf.rb +0 -9
  773. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/cparse.bundle +0 -0
  774. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/info.rb +0 -17
  775. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser-text.rb +0 -658
  776. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser.rb +0 -632
  777. data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parserfilegenerator.rb +0 -470
  778. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/Gemfile +0 -15
  779. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/LICENSE +0 -22
  780. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/character_set.rb +0 -26
  781. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/posix_class.rb +0 -15
  782. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression/classes/unicode_property.rb +0 -122
  783. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/expression.rb +0 -36
  784. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/parser.rb +0 -595
  785. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/properties/long.csv +0 -633
  786. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/properties/short.csv +0 -248
  787. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner/scanner.rl +0 -827
  788. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/scanner.rb +0 -2513
  789. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/syntax/token/unicode_property.rb +0 -733
  790. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.8.2/lib/regexp_parser/version.rb +0 -5
  791. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/BSDL +0 -22
  792. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/README.md +0 -87
  793. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/ansi.rb +0 -363
  794. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/config.rb +0 -401
  795. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/general_io.rb +0 -116
  796. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/history.rb +0 -76
  797. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/base.rb +0 -19
  798. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/emacs.rb +0 -517
  799. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/vi_command.rb +0 -518
  800. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor/vi_insert.rb +0 -517
  801. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_actor.rb +0 -7
  802. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/key_stroke.rb +0 -148
  803. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/kill_ring.rb +0 -125
  804. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/line_editor.rb +0 -3300
  805. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/terminfo.rb +0 -160
  806. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/unicode/east_asian_width.rb +0 -1196
  807. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/unicode.rb +0 -642
  808. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/version.rb +0 -3
  809. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline/windows.rb +0 -501
  810. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/lib/reline.rb +0 -609
  811. data/vendor/bundle/ruby/3.2.0/gems/reline-0.3.9/license_of_rb-readline +0 -25
  812. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/LICENSE.txt +0 -20
  813. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/README.md +0 -252
  814. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/config/default.yml +0 -5629
  815. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config.rb +0 -330
  816. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_loader.rb +0 -259
  817. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion.rb +0 -108
  818. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_validator.rb +0 -272
  819. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/base.rb +0 -486
  820. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/bundler/gem_comment.rb +0 -171
  821. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/exclude_limit.rb +0 -26
  822. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -92
  823. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -50
  824. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -147
  825. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs.rb +0 -31
  826. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/argument_alignment.rb +0 -158
  827. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/end_alignment.rb +0 -204
  828. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/extra_spacing.rb +0 -191
  829. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -180
  830. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -101
  831. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -311
  832. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -165
  833. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -144
  834. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/redundant_line_break.rb +0 -148
  835. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -211
  836. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -64
  837. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/space_around_operators.rb +0 -260
  838. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -109
  839. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -68
  840. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -51
  841. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/debugger.rb +0 -124
  842. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/duplicate_methods.rb +0 -268
  843. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -161
  844. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/float_comparison.rb +0 -93
  845. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -47
  846. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -70
  847. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -185
  848. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/number_conversion.rb +0 -196
  849. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -107
  850. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_with_index.rb +0 -80
  851. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/redundant_with_object.rb +0 -79
  852. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -105
  853. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/self_assignment.rb +0 -78
  854. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/shadowed_argument.rb +0 -176
  855. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/symbol_conversion.rb +0 -179
  856. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/syntax.rb +0 -43
  857. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -55
  858. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -204
  859. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -295
  860. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/useless_times.rb +0 -114
  861. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/void.rb +0 -223
  862. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/metrics/abc_size.rb +0 -56
  863. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -227
  864. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -40
  865. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -181
  866. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -49
  867. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/block_forwarding.rb +0 -125
  868. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/constant_name.rb +0 -84
  869. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -295
  870. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/registry.rb +0 -315
  871. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/security/open.rb +0 -89
  872. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -225
  873. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/accessor_grouping.rb +0 -180
  874. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/arguments_forwarding.rb +0 -372
  875. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -48
  876. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -125
  877. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/case_like_if.rb +0 -280
  878. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/class_check.rb +0 -54
  879. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/collection_compact.rb +0 -133
  880. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/combinable_loops.rb +0 -117
  881. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/concat_array_literals.rb +0 -94
  882. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/conditional_assignment.rb +0 -663
  883. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/date_time.rb +0 -93
  884. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -90
  885. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/each_with_object.rb +0 -139
  886. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/empty_literal.rb +0 -138
  887. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/eval_with_location.rb +0 -237
  888. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/exact_regexp_match.rb +0 -68
  889. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/explicit_block_argument.rb +0 -153
  890. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/hash_each_methods.rb +0 -123
  891. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/hash_except.rb +0 -188
  892. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -251
  893. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/inverse_methods.rb +0 -196
  894. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -118
  895. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -136
  896. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/map_to_hash.rb +0 -71
  897. 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
  898. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -248
  899. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -103
  900. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
  901. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -52
  902. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -100
  903. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/next.rb +0 -233
  904. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -119
  905. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/operator_method_call.rb +0 -73
  906. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/parallel_assignment.rb +0 -300
  907. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -128
  908. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_argument.rb +0 -103
  909. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -133
  910. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_each.rb +0 -116
  911. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -121
  912. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -183
  913. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_parentheses.rb +0 -268
  914. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_return.rb +0 -183
  915. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_self.rb +0 -203
  916. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_sort.rb +0 -208
  917. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_sort_by.rb +0 -63
  918. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/redundant_string_escape.rb +0 -185
  919. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/sample.rb +0 -145
  920. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/select_by_regexp.rb +0 -162
  921. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/self_assignment.rb +0 -101
  922. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/semicolon.rb +0 -164
  923. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/single_argument_dig.rb +0 -66
  924. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/slicing_with_range.rb +0 -51
  925. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/string_chars.rb +0 -41
  926. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/strip.rb +0 -42
  927. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/symbol_proc.rb +0 -210
  928. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/unpack_first.rb +0 -62
  929. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cops_documentation_generator.rb +0 -329
  930. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/ext/regexp_node.rb +0 -87
  931. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/disabled_config_formatter.rb +0 -267
  932. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/html_formatter.rb +0 -134
  933. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter/json_formatter.rb +0 -80
  934. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/formatter.rb +0 -34
  935. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/lsp/routes.rb +0 -246
  936. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/options.rb +0 -641
  937. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/result_cache.rb +0 -241
  938. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/rspec/shared_contexts.rb +0 -177
  939. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/rspec/support.rb +0 -29
  940. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/runner.rb +0 -498
  941. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/server/cache.rb +0 -156
  942. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/version.rb +0 -102
  943. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop.rb +0 -767
  944. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/LICENSE.txt +0 -22
  945. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/README.md +0 -78
  946. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/VERSION +0 -1
  947. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp +0 -111
  948. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp-check +0 -63
  949. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/exe/ruby-lsp-doctor +0 -15
  950. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/core_ext/uri.rb +0 -40
  951. 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
  952. 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
  953. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby-lsp.rb +0 -6
  954. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/configuration.rb +0 -221
  955. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/entry.rb +0 -205
  956. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/index.rb +0 -256
  957. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/indexable_path.rb +0 -29
  958. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/prefix_tree.rb +0 -153
  959. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/lib/ruby_indexer/visitor.rb +0 -267
  960. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/ruby_indexer.rb +0 -23
  961. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/classes_and_modules_test.rb +0 -276
  962. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/configuration_test.rb +0 -122
  963. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/constant_test.rb +0 -391
  964. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/index_test.rb +0 -197
  965. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/method_test.rb +0 -73
  966. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/prefix_tree_test.rb +0 -150
  967. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_indexer/test/test_case.rb +0 -46
  968. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/addon.rb +0 -151
  969. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/check_docs.rb +0 -130
  970. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/document.rb +0 -232
  971. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/executor.rb +0 -765
  972. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/internal.rb +0 -29
  973. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/listener.rb +0 -83
  974. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/parameter_scope.rb +0 -33
  975. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/base_request.rb +0 -24
  976. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_action_resolve.rb +0 -148
  977. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_actions.rb +0 -79
  978. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/code_lens.rb +0 -246
  979. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/completion.rb +0 -241
  980. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/definition.rb +0 -170
  981. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/diagnostics.rb +0 -69
  982. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_highlight.rb +0 -566
  983. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_link.rb +0 -176
  984. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/document_symbol.rb +0 -235
  985. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/folding_ranges.rb +0 -286
  986. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/formatting.rb +0 -102
  987. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/hover.rb +0 -117
  988. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/inlay_hints.rb +0 -58
  989. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/on_type_formatting.rb +0 -176
  990. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/selection_ranges.rb +0 -51
  991. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/semantic_highlighting.rb +0 -420
  992. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/show_syntax_tree.rb +0 -75
  993. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/annotation.rb +0 -47
  994. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/common.rb +0 -104
  995. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/dependency_detector.rb +0 -88
  996. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/formatter_runner.rb +0 -18
  997. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_diagnostic.rb +0 -108
  998. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_diagnostics_runner.rb +0 -34
  999. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_formatting_runner.rb +0 -35
  1000. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/rubocop_runner.rb +0 -132
  1001. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/selection_range.rb +0 -21
  1002. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/semantic_token_encoder.rb +0 -73
  1003. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/sorbet.rb +0 -55
  1004. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/support/source_uri.rb +0 -85
  1005. 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
  1006. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests/workspace_symbol.rb +0 -89
  1007. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/requests.rb +0 -59
  1008. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/server.rb +0 -169
  1009. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/setup_bundler.rb +0 -229
  1010. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/store.rb +0 -79
  1011. data/vendor/bundle/ruby/3.2.0/gems/ruby-lsp-0.12.1/lib/ruby_lsp/utils.rb +0 -72
  1012. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/sorbet-runtime.rb +0 -122
  1013. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/_types.rb +0 -370
  1014. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/abstract_utils.rb +0 -50
  1015. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/boolean.rb +0 -8
  1016. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/compatibility_patches.rb +0 -95
  1017. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/configuration.rb +0 -591
  1018. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/enum.rb +0 -382
  1019. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/generic.rb +0 -24
  1020. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/helpers.rb +0 -65
  1021. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/interface_wrapper.rb +0 -162
  1022. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/non_forcing_constants.rb +0 -65
  1023. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/data.rb +0 -36
  1024. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/declare.rb +0 -54
  1025. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/hooks.rb +0 -42
  1026. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/abstract/validate.rb +0 -128
  1027. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/casts.rb +0 -44
  1028. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/class_utils.rb +0 -134
  1029. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/compiler.rb +0 -24
  1030. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/decl_state.rb +0 -30
  1031. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/final.rb +0 -50
  1032. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/_methods.rb +0 -606
  1033. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation.rb +0 -316
  1034. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation_2_6.rb +0 -1211
  1035. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/call_validation_2_7.rb +0 -1211
  1036. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/decl_builder.rb +0 -247
  1037. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/modes.rb +0 -28
  1038. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/signature.rb +0 -250
  1039. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/methods/signature_validation.rb +0 -287
  1040. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/mixins/mixins.rb +0 -27
  1041. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/retry.rb +0 -10
  1042. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/runtime_levels.rb +0 -81
  1043. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/sealed.rb +0 -91
  1044. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/not_typed.rb +0 -25
  1045. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/simple_pair_union.rb +0 -55
  1046. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/string_holder.rb +0 -26
  1047. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/type_alias.rb +0 -31
  1048. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/private/types/void.rb +0 -40
  1049. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/_props.rb +0 -169
  1050. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/constructor.rb +0 -40
  1051. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/custom_type.rb +0 -108
  1052. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/decorator.rb +0 -674
  1053. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/errors.rb +0 -8
  1054. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/generated_code_validation.rb +0 -277
  1055. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/has_lazily_specialized_methods.rb +0 -140
  1056. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/optional.rb +0 -89
  1057. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/plugin.rb +0 -37
  1058. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/pretty_printable.rb +0 -69
  1059. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/apply_default.rb +0 -170
  1060. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/deserializer_generator.rb +0 -160
  1061. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/parser.rb +0 -32
  1062. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/serde_transform.rb +0 -186
  1063. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/serializer_generator.rb +0 -76
  1064. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/private/setter_factory.rb +0 -197
  1065. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/serializable.rb +0 -382
  1066. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/type_validation.rb +0 -114
  1067. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/utils.rb +0 -59
  1068. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/props/weak_constructor.rb +0 -67
  1069. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/sig.rb +0 -30
  1070. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/struct.rb +0 -51
  1071. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/anything.rb +0 -31
  1072. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/attached_class.rb +0 -37
  1073. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/base.rb +0 -186
  1074. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/class_of.rb +0 -51
  1075. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/enum.rb +0 -40
  1076. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/fixed_array.rb +0 -99
  1077. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/fixed_hash.rb +0 -96
  1078. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/intersection.rb +0 -42
  1079. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/noreturn.rb +0 -28
  1080. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/proc.rb +0 -51
  1081. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/self_type.rb +0 -35
  1082. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/simple.rb +0 -117
  1083. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/t_enum.rb +0 -38
  1084. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_member.rb +0 -7
  1085. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_parameter.rb +0 -42
  1086. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_template.rb +0 -7
  1087. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/type_variable.rb +0 -34
  1088. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_array.rb +0 -68
  1089. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_class.rb +0 -85
  1090. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerable.rb +0 -183
  1091. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator.rb +0 -41
  1092. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator_chain.rb +0 -41
  1093. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_enumerator_lazy.rb +0 -41
  1094. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_hash.rb +0 -48
  1095. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_range.rb +0 -31
  1096. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/typed_set.rb +0 -53
  1097. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/union.rb +0 -127
  1098. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/types/untyped.rb +0 -29
  1099. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11104/lib/types/utils.rb +0 -217
  1100. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/sorbet-runtime.rb +0 -122
  1101. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/_types.rb +0 -370
  1102. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/abstract_utils.rb +0 -50
  1103. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/boolean.rb +0 -8
  1104. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/compatibility_patches.rb +0 -95
  1105. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/configuration.rb +0 -591
  1106. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/enum.rb +0 -382
  1107. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/generic.rb +0 -24
  1108. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/helpers.rb +0 -65
  1109. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/interface_wrapper.rb +0 -162
  1110. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/non_forcing_constants.rb +0 -65
  1111. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/data.rb +0 -36
  1112. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/declare.rb +0 -54
  1113. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/hooks.rb +0 -42
  1114. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/abstract/validate.rb +0 -128
  1115. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/casts.rb +0 -44
  1116. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/class_utils.rb +0 -134
  1117. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/compiler.rb +0 -24
  1118. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/decl_state.rb +0 -30
  1119. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/final.rb +0 -50
  1120. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/_methods.rb +0 -606
  1121. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation.rb +0 -316
  1122. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation_2_6.rb +0 -1211
  1123. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/call_validation_2_7.rb +0 -1211
  1124. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/decl_builder.rb +0 -247
  1125. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/modes.rb +0 -28
  1126. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/signature.rb +0 -250
  1127. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/methods/signature_validation.rb +0 -287
  1128. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/mixins/mixins.rb +0 -27
  1129. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/retry.rb +0 -10
  1130. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/runtime_levels.rb +0 -81
  1131. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/sealed.rb +0 -91
  1132. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/not_typed.rb +0 -25
  1133. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/simple_pair_union.rb +0 -55
  1134. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/string_holder.rb +0 -26
  1135. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/type_alias.rb +0 -31
  1136. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/private/types/void.rb +0 -40
  1137. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/_props.rb +0 -169
  1138. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/constructor.rb +0 -40
  1139. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/custom_type.rb +0 -108
  1140. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/decorator.rb +0 -674
  1141. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/errors.rb +0 -8
  1142. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/generated_code_validation.rb +0 -277
  1143. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/has_lazily_specialized_methods.rb +0 -140
  1144. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/optional.rb +0 -89
  1145. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/plugin.rb +0 -37
  1146. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/pretty_printable.rb +0 -69
  1147. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/apply_default.rb +0 -170
  1148. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/deserializer_generator.rb +0 -160
  1149. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/parser.rb +0 -32
  1150. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/serde_transform.rb +0 -186
  1151. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/serializer_generator.rb +0 -76
  1152. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/private/setter_factory.rb +0 -197
  1153. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/serializable.rb +0 -382
  1154. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/type_validation.rb +0 -114
  1155. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/utils.rb +0 -59
  1156. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/props/weak_constructor.rb +0 -67
  1157. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/sig.rb +0 -30
  1158. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/struct.rb +0 -51
  1159. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/anything.rb +0 -31
  1160. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/attached_class.rb +0 -37
  1161. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/base.rb +0 -186
  1162. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/class_of.rb +0 -51
  1163. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/enum.rb +0 -40
  1164. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/fixed_array.rb +0 -99
  1165. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/fixed_hash.rb +0 -96
  1166. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/intersection.rb +0 -42
  1167. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/noreturn.rb +0 -28
  1168. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/proc.rb +0 -51
  1169. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/self_type.rb +0 -35
  1170. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/simple.rb +0 -117
  1171. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/t_enum.rb +0 -38
  1172. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_member.rb +0 -7
  1173. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_parameter.rb +0 -42
  1174. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_template.rb +0 -7
  1175. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/type_variable.rb +0 -34
  1176. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_array.rb +0 -68
  1177. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_class.rb +0 -85
  1178. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerable.rb +0 -183
  1179. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator.rb +0 -41
  1180. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator_chain.rb +0 -41
  1181. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_enumerator_lazy.rb +0 -41
  1182. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_hash.rb +0 -48
  1183. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_range.rb +0 -31
  1184. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/typed_set.rb +0 -53
  1185. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/union.rb +0 -127
  1186. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/types/untyped.rb +0 -29
  1187. data/vendor/bundle/ruby/3.2.0/gems/sorbet-runtime-0.5.11108/lib/types/utils.rb +0 -217
  1188. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/README.md +0 -45
  1189. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/Makefile +0 -270
  1190. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/extconf.rb +0 -3
  1191. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/ext/stringio/stringio.c +0 -1938
  1192. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.0.8/lib/stringio.bundle +0 -0
  1193. data/vendor/bundle/ruby/3.2.0/specifications/debug-1.8.0.gemspec +0 -32
  1194. data/vendor/bundle/ruby/3.2.0/specifications/irb-1.8.3.gemspec +0 -30
  1195. data/vendor/bundle/ruby/3.2.0/specifications/parallel-1.23.0.gemspec +0 -21
  1196. data/vendor/bundle/ruby/3.2.0/specifications/parser-3.2.2.4.gemspec +0 -37
  1197. data/vendor/bundle/ruby/3.2.0/specifications/prism-0.15.1.gemspec +0 -24
  1198. data/vendor/bundle/ruby/3.2.0/specifications/psych-5.1.1.1.gemspec +0 -31
  1199. data/vendor/bundle/ruby/3.2.0/specifications/racc-1.7.1.gemspec +0 -27
  1200. data/vendor/bundle/ruby/3.2.0/specifications/regexp_parser-2.8.2.gemspec +0 -22
  1201. data/vendor/bundle/ruby/3.2.0/specifications/reline-0.3.9.gemspec +0 -25
  1202. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.57.2.gemspec +0 -39
  1203. data/vendor/bundle/ruby/3.2.0/specifications/ruby-lsp-0.12.1.gemspec +0 -31
  1204. data/vendor/bundle/ruby/3.2.0/specifications/sorbet-runtime-0.5.11104.gemspec +0 -34
  1205. data/vendor/bundle/ruby/3.2.0/specifications/sorbet-runtime-0.5.11108.gemspec +0 -34
  1206. data/vendor/bundle/ruby/3.2.0/specifications/stringio-3.0.8.gemspec +0 -24
  1207. /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
  1208. /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
  1209. /data/vendor/bundle/ruby/3.2.0/gems/{reline-0.3.9/COPYING → json-2.7.1/LICENSE} +0 -0
  1210. /data/{bin → vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bin}/setup +0 -0
  1211. /data/vendor/bundle/ruby/3.2.0/gems/{parallel-1.23.0 → parallel-1.24.0}/MIT-LICENSE.txt +0 -0
  1212. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/LICENSE.txt +0 -0
  1213. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/bin/ruby-parse +0 -0
  1214. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/bin/ruby-rewrite +0 -0
  1215. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/gauntlet_parser.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/node.rb +0 -0
  1217. /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
  1218. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/base.rb +0 -0
  1219. /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
  1220. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/color.rb +0 -0
  1221. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/context.rb +0 -0
  1222. /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
  1223. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/deprecation.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/engine.rb +0 -0
  1225. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/diagnostic.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/dedenter.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/explanation.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/stack_state.rb +0 -0
  1229. /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
  1230. /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
  1231. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/meta.rb +0 -0
  1232. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/rewriter.rb +0 -0
  1233. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser/ruby28.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_parse.rb +0 -0
  1235. /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
  1236. /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
  1237. /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
  1238. /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
  1239. /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
  1240. /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
  1241. /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
  1242. /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
  1243. /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
  1244. /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
  1245. /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
  1246. /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
  1247. /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
  1248. /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
  1249. /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
  1250. /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
  1251. /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
  1252. /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
  1253. /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
  1254. /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
  1255. /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
  1256. /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
  1257. /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
  1258. /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
  1259. /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
  1260. /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
  1261. /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
  1262. /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
  1263. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/lib/parser.rb +0 -0
  1264. /data/vendor/bundle/ruby/3.2.0/gems/{parser-3.2.2.4 → parser-3.3.0.4}/parser.gemspec +0 -0
  1265. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/COPYING +0 -0
  1266. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/ChangeLog +0 -0
  1267. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/debug.ja.rdoc +0 -0
  1268. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/index.ja.html +0 -0
  1269. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/doc/ja/usage.ja.html +0 -0
  1270. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/compat.rb +0 -0
  1271. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/debugflags.rb +0 -0
  1272. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/exception.rb +0 -0
  1273. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/grammar.rb +0 -0
  1274. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/grammarfileparser.rb +0 -0
  1275. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/iset.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/logfilegenerator.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/sourcetext.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/state.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/statetransitiontable.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc/static.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.2.0/gems/{racc-1.7.1 → racc-1.7.3}/lib/racc.rb +0 -0
  1282. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/Rakefile +0 -0
  1283. /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
  1284. /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
  1285. /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
  1286. /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
  1287. /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
  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/intersection.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_set/range.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/character_type.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/conditional.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/escape_sequence.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/free_space.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/group.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/keep.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/literal.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/classes/root.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/construct.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/human_name.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.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/match_length.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/options.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/parts.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/printing.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/strfregexp.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/tests.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/methods/traverse.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/quantifier.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.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/sequence_operation.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/shared.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/expression/subexpression.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/lexer.rb +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/char_type.rl +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/premature_end_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/scanner_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/errors/validation_error.rb +0 -0
  1318. /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
  1319. /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
  1320. /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
  1321. /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
  1322. /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
  1323. /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
  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_set.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/character_type.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/conditional.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/escape.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/group.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/keep.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/meta.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/posix_class.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/quantifier.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/virtual.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/token.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/version_lookup.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.8.6.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.1.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/1.9.3.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.0.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.2.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.3.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.0.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.4.1.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.5.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.0.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.2.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/2.6.3.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.1.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/3.2.0.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/versions.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/syntax.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/token.rb +0 -0
  1353. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/lib/regexp_parser.rb +0 -0
  1354. /data/vendor/bundle/ruby/3.2.0/gems/{regexp_parser-2.8.2 → regexp_parser-2.9.0}/regexp_parser.gemspec +0 -0
  1355. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/assets/logo.png +0 -0
  1356. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/assets/output.html.erb +0 -0
  1357. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/config/obsoletion.yml +0 -0
  1358. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/exe/rubocop +0 -0
  1359. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/arguments_env.rb +0 -0
  1360. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/arguments_file.rb +0 -0
  1361. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ast_aliases.rb +0 -0
  1362. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cache_config.rb +0 -0
  1363. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cached_data.rb +0 -0
  1364. /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
  1365. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/base.rb +0 -0
  1366. /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
  1367. /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
  1368. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/lsp.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_cops.rb +0 -0
  1370. /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
  1371. /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
  1372. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command/version.rb +0 -0
  1373. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/command.rb +0 -0
  1374. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli/environment.rb +0 -0
  1375. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cli.rb +0 -0
  1376. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/comment_config.rb +0 -0
  1377. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_finder.rb +0 -0
  1378. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_loader_resolver.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_enforced_styles.rb +0 -0
  1380. /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
  1381. /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
  1382. /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
  1383. /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
  1384. /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
  1385. /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
  1386. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  1387. /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
  1388. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_regeneration.rb +0 -0
  1389. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/config_store.rb +0 -0
  1390. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  1391. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/badge.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_gem.rb +0 -0
  1393. /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
  1394. /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
  1395. /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
  1396. /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
  1397. /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
  1398. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/commissioner.rb +0 -0
  1399. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/cop.rb +0 -0
  1400. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/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/alignment_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/condition_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/each_to_for_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/empty_line_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/for_to_each_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/if_then_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/lambda_literal_to_method_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/line_break_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/multiline_literal_brace_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/ordered_gem_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/parentheses_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/percent_literal_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/punctuation_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/require_library_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/space_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/string_literal_corrector.rb +0 -0
  1417. /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
  1418. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/documentation.rb +0 -0
  1419. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/force.rb +0 -0
  1420. /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
  1421. /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
  1422. /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
  1423. /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
  1424. /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
  1425. /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
  1426. /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
  1427. /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
  1428. /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
  1429. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/generator.rb +0 -0
  1430. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/ignored_node.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/cop_description.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/create_empty_file.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/empty_line_between_expect_offense_and_correction.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_description.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/example_heredoc_delimiter.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/inherit_deprecated_cop_class.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/lambda_or_proc.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_expression.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/location_line_equality_comparison.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/method_name_end_with.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_destructuring.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/node_type_predicate.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/numblock_handler.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/offense_location_keyword.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/processed_source_buffer_name.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_context_config_parameter.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_described_class_as_subject.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_let_rubocop_config_new.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_location_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_message_argument.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_method_dispatch_node.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/redundant_source_range.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/single_line_comparison.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/style_detected_api_use.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/undefined_config.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_message_assertion.rb +0 -0
  1457. /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
  1458. /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
  1459. /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
  1460. /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
  1461. /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
  1462. /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
  1463. /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
  1464. /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
  1465. /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
  1466. /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
  1467. /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
  1468. /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
  1469. /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
  1470. /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
  1471. /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
  1472. /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
  1473. /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
  1474. /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
  1475. /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
  1476. /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
  1477. /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
  1478. /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
  1479. /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
  1480. /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
  1481. /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
  1482. /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
  1483. /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
  1484. /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
  1485. /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
  1486. /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
  1487. /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
  1488. /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
  1489. /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
  1490. /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
  1491. /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
  1492. /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
  1493. /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
  1494. /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
  1495. /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
  1496. /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
  1497. /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
  1498. /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
  1499. /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
  1500. /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
  1501. /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
  1502. /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
  1503. /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
  1504. /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
  1505. /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
  1506. /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
  1507. /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
  1508. /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
  1509. /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
  1510. /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
  1511. /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
  1512. /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
  1513. /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
  1514. /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
  1515. /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
  1516. /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
  1517. /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
  1518. /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
  1519. /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
  1520. /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
  1521. /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
  1522. /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
  1523. /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
  1524. /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
  1525. /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
  1526. /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
  1527. /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
  1528. /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
  1529. /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
  1530. /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
  1531. /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
  1532. /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
  1533. /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
  1534. /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
  1535. /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
  1536. /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
  1537. /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
  1538. /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
  1539. /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
  1540. /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
  1541. /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
  1542. /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
  1543. /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
  1544. /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
  1545. /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
  1546. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/legacy/corrector.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_assignment.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_block_association.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.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_operator_precedence.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_range.rb +0 -0
  1552. /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
  1553. /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
  1554. /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
  1555. /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
  1556. /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
  1557. /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
  1558. /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
  1559. /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
  1560. /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
  1561. /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
  1562. /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
  1563. /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
  1564. /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
  1565. /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
  1566. /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
  1567. /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
  1568. /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
  1569. /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
  1570. /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
  1571. /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
  1572. /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
  1573. /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
  1574. /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
  1575. /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
  1576. /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
  1577. /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
  1578. /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
  1579. /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
  1580. /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
  1581. /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
  1582. /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
  1583. /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
  1584. /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
  1585. /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
  1586. /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
  1587. /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
  1588. /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
  1589. /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
  1590. /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
  1591. /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
  1592. /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
  1593. /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
  1594. /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
  1595. /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
  1596. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/lint/loop.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_cop_enable_directive.rb +0 -0
  1598. /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
  1599. /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
  1600. /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
  1601. /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
  1602. /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
  1603. /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
  1604. /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
  1605. /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
  1606. /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
  1607. /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
  1608. /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
  1609. /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
  1610. /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
  1611. /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
  1612. /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
  1613. /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
  1614. /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
  1615. /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
  1616. /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
  1617. /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
  1618. /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
  1619. /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
  1620. /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
  1621. /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
  1622. /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
  1623. /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
  1624. /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
  1625. /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
  1626. /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
  1627. /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
  1628. /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
  1629. /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
  1630. /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
  1631. /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
  1632. /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
  1633. /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
  1634. /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
  1635. /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
  1636. /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
  1637. /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
  1638. /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
  1639. /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
  1640. /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
  1641. /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
  1642. /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
  1643. /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
  1644. /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
  1645. /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
  1646. /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
  1647. /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
  1648. /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
  1649. /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
  1650. /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
  1651. /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
  1652. /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
  1653. /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
  1654. /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
  1655. /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
  1656. /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
  1657. /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
  1658. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/message_annotator.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_length.rb +0 -0
  1660. /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
  1661. /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
  1662. /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
  1663. /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
  1664. /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
  1665. /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
  1666. /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
  1667. /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
  1668. /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
  1669. /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
  1670. /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
  1671. /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
  1672. /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
  1673. /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
  1674. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/alignment.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_identifiers.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_methods.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_pattern.rb +0 -0
  1678. /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
  1679. /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
  1680. /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
  1681. /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
  1682. /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
  1683. /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
  1684. /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
  1685. /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
  1686. /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
  1687. /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
  1688. /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
  1689. /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
  1690. /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
  1691. /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
  1692. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/duplication.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_lines_around_body.rb +0 -0
  1694. /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
  1695. /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
  1696. /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
  1697. /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
  1698. /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
  1699. /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
  1700. /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
  1701. /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
  1702. /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
  1703. /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
  1704. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  1705. /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
  1706. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  1707. /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
  1708. /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
  1709. /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
  1710. /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
  1711. /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
  1712. /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
  1713. /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
  1714. /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
  1715. /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
  1716. /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
  1717. /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
  1718. /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
  1719. /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
  1720. /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
  1721. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/mixin/parentheses.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_array.rb +0 -0
  1723. /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
  1724. /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
  1725. /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
  1726. /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
  1727. /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
  1728. /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
  1729. /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
  1730. /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
  1731. /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
  1732. /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
  1733. /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
  1734. /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
  1735. /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
  1736. /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
  1737. /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
  1738. /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
  1739. /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
  1740. /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
  1741. /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
  1742. /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
  1743. /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
  1744. /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
  1745. /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
  1746. /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
  1747. /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
  1748. /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
  1749. /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
  1750. /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
  1751. /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
  1752. /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
  1753. /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
  1754. /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
  1755. /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
  1756. /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
  1757. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/offense.rb +0 -0
  1758. /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
  1759. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/security/eval.rb +0 -0
  1760. /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
  1761. /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
  1762. /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
  1763. /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
  1764. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/severity.rb +0 -0
  1765. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/alias.rb +0 -0
  1766. /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
  1767. /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
  1768. /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
  1769. /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
  1770. /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
  1771. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/attr.rb +0 -0
  1772. /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
  1773. /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
  1774. /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
  1775. /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
  1776. /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
  1777. /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
  1778. /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
  1779. /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
  1780. /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
  1781. /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
  1782. /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
  1783. /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
  1784. /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
  1785. /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
  1786. /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
  1787. /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
  1788. /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
  1789. /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
  1790. /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
  1791. /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
  1792. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/copyright.rb +0 -0
  1793. /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
  1794. /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
  1795. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/dir.rb +0 -0
  1796. /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
  1797. /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
  1798. /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
  1799. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/documentation.rb +0 -0
  1800. /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
  1801. /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
  1802. /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
  1803. /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
  1804. /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
  1805. /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
  1806. /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
  1807. /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
  1808. /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
  1809. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/encoding.rb +0 -0
  1810. /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
  1811. /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
  1812. /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
  1813. /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
  1814. /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
  1815. /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
  1816. /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
  1817. /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
  1818. /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
  1819. /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
  1820. /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
  1821. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/for.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.rb +0 -0
  1823. /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
  1824. /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
  1825. /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
  1826. /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
  1827. /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
  1828. /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
  1829. /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
  1830. /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
  1831. /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
  1832. /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
  1833. /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
  1834. /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
  1835. /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
  1836. /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
  1837. /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
  1838. /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
  1839. /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
  1840. /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
  1841. /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
  1842. /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
  1843. /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
  1844. /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
  1845. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/lambda.rb +0 -0
  1846. /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
  1847. /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
  1848. /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
  1849. /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
  1850. /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
  1851. /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
  1852. /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
  1853. /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
  1854. /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
  1855. /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
  1856. /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
  1857. /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
  1858. /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
  1859. /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
  1860. /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
  1861. /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
  1862. /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
  1863. /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
  1864. /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
  1865. /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
  1866. /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
  1867. /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
  1868. /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
  1869. /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
  1870. /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
  1871. /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
  1872. /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
  1873. /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
  1874. /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
  1875. /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
  1876. /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
  1877. /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
  1878. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/not.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.rb +0 -0
  1880. /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
  1881. /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
  1882. /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
  1883. /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
  1884. /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
  1885. /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
  1886. /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
  1887. /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
  1888. /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
  1889. /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
  1890. /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
  1891. /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
  1892. /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
  1893. /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
  1894. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/proc.rb +0 -0
  1895. /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
  1896. /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
  1897. /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
  1898. /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
  1899. /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
  1900. /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
  1901. /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
  1902. /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
  1903. /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
  1904. /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
  1905. /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
  1906. /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
  1907. /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
  1908. /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
  1909. /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
  1910. /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
  1911. /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
  1912. /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
  1913. /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
  1914. /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
  1915. /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
  1916. /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
  1917. /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
  1918. /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
  1919. /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
  1920. /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
  1921. /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
  1922. /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
  1923. /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
  1924. /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
  1925. /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
  1926. /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
  1927. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/style/send.rb +0 -0
  1928. /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
  1929. /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
  1930. /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
  1931. /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
  1932. /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
  1933. /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
  1934. /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
  1935. /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
  1936. /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
  1937. /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
  1938. /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
  1939. /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
  1940. /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
  1941. /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
  1942. /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
  1943. /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
  1944. /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
  1945. /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
  1946. /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
  1947. /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
  1948. /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
  1949. /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
  1950. /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
  1951. /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
  1952. /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
  1953. /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
  1954. /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
  1955. /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
  1956. /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
  1957. /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
  1958. /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
  1959. /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
  1960. /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
  1961. /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
  1962. /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
  1963. /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
  1964. /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
  1965. /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
  1966. /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
  1967. /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
  1968. /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
  1969. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/team.rb +0 -0
  1970. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/util.rb +0 -0
  1971. /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
  1972. /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
  1973. /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
  1974. /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
  1975. /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
  1976. /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
  1977. /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
  1978. /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
  1979. /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
  1980. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/cop/variable_force.rb +0 -0
  1981. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/core_ext/string.rb +0 -0
  1982. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/directive_comment.rb +0 -0
  1983. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/error.rb +0 -0
  1984. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/comment.rb +0 -0
  1985. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/processed_source.rb +0 -0
  1986. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/range.rb +0 -0
  1987. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
  1988. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/feature_loader.rb +0 -0
  1989. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/file_finder.rb +0 -0
  1990. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/file_patterns.rb +0 -0
  1991. /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
  1992. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
  1993. /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
  1994. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/colorizable.rb +0 -0
  1995. /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
  1996. /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
  1997. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
  1998. /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
  1999. /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
  2000. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  2001. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  2002. /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
  2003. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  2004. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  2005. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  2006. /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
  2007. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
  2008. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/formatter/text_util.rb +0 -0
  2009. /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
  2010. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lockfile.rb +0 -0
  2011. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/logger.rb +0 -0
  2012. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/runtime.rb +0 -0
  2013. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/server.rb +0 -0
  2014. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/lsp/severity.rb +0 -0
  2015. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/magic_comment.rb +0 -0
  2016. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/name_similarity.rb +0 -0
  2017. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/path_util.rb +0 -0
  2018. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/platform.rb +0 -0
  2019. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rake_task.rb +0 -0
  2020. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/remote_config.rb +0 -0
  2021. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
  2022. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
  2023. /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
  2024. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  2025. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/cli.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/base.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/exec.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/restart.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/start.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/status.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/stop.rb +0 -0
  2032. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/client_command.rb +0 -0
  2033. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/core.rb +0 -0
  2034. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/errors.rb +0 -0
  2035. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/helper.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/base.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/exec.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/stop.rb +0 -0
  2039. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/server_command.rb +0 -0
  2040. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server/socket_reader.rb +0 -0
  2041. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/server.rb +0 -0
  2042. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/string_interpreter.rb +0 -0
  2043. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/target_finder.rb +0 -0
  2044. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/target_ruby.rb +0 -0
  2045. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/util.rb +0 -0
  2046. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.57.2 → rubocop-1.60.0}/lib/rubocop/warning.rb +0 -0
  2047. /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,74 +0,0 @@
1
- # Build System
2
-
3
- There are many ways to build prism, which means the build system is a bit more complicated than usual.
4
-
5
- ## Requirements
6
-
7
- * It must work to build prism for all 6 uses-cases below.
8
- * It must be possible to build prism without needing ruby/rake/etc.
9
- Because once prism is the single parser in TruffleRuby, JRuby or CRuby there won't be another Ruby parser around to parse such Ruby code.
10
- Most/every Ruby implementations want to avoid depending on another Ruby during the build process as that is very brittle.
11
- * It is desirable to compile prism with the same or very similar compiler flags for all use-cases (e.g. optimization level, warning flags, etc).
12
- Otherwise, there is the risk prism does not work correctly with those different compiler flags.
13
-
14
- The main solution for the second point seems a Makefile, otherwise many of the usages would have to duplicate the logic to build prism.
15
-
16
- ## General Design
17
-
18
- 1. Templates are generated by `templates/template.rb`
19
- 4. The `Makefile` compiles both `librubyparser.a` and `librubyparser.{so,dylib,dll}` from the `src/**/*.c` and `include/**/*.h` files
20
- 5. The `Rakefile` `:compile` task ensures the above prerequisites are done, then calls `make`,
21
- and uses `Rake::ExtensionTask` to compile the C extension (using its `extconf.rb`), which uses `librubyparser.a`
22
-
23
- This way there is minimal duplication, and each layer builds on the previous one and has its own responsibilities.
24
-
25
- The static library exports no symbols, to avoid any conflict.
26
- The shared library exports some symbols, and this is fine since there should only be one librubyparser shared library
27
- loaded per process (i.e., at most one version of the prism *gem* loaded in a process, only the gem uses the shared library).
28
-
29
- ## The various ways to build prism
30
-
31
- ### Building from ruby/prism repository with `bundle exec rake`
32
-
33
- `rake` calls `make` and then uses `Rake::ExtensionTask` to compile the C extension (see above).
34
-
35
- ### Building the prism gem by `gem install/bundle install`
36
-
37
- The gem contains the pre-generated templates.
38
- When installing the gem, `extconf.rb` is used and that:
39
- * runs `make build/librubyparser.a`
40
- * compiles the C extension with mkmf
41
-
42
- When installing the gem on JRuby and TruffleRuby, no C extension is built, so instead of the last step,
43
- there is Ruby code using FFI which uses `librubyparser.{so,dylib,dll}`
44
- to implement the same methods as the C extension, but using serialization instead of many native calls/accesses
45
- (JRuby does not support C extensions, serialization is faster on TruffleRuby than the C extension).
46
-
47
- ### Building the prism gem from git, e.g. `gem "prism", github: "ruby/prism"`
48
-
49
- The same as above, except the `extconf.rb` additionally runs first:
50
- * `templates/template.rb` to generate the templates
51
-
52
- Because of course those files are not part of the git repository.
53
-
54
- ### Building prism as part of CRuby
55
-
56
- [This script](https://github.com/ruby/ruby/blob/32e828bb4a6c65a392b2300f3bdf93008c7b6f25/tool/sync_default_gems.rb#L399-L426) imports prism sources in CRuby.
57
-
58
- The script generates the templates when importing.
59
-
60
- prism's `Makefile` is not used at all in CRuby. Instead, CRuby's `Makefile` is used.
61
-
62
- ### Building prism as part of TruffleRuby
63
-
64
- [This script](https://github.com/oracle/truffleruby/blob/master/tool/import-prism.sh) imports prism sources in TruffleRuby.
65
- The script generates the templates when importing.
66
-
67
- Then when `mx build` builds TruffleRuby and the `prism` mx project inside, it runs `make`.
68
-
69
- Then the `prism bindings` mx project is built, which contains the [bindings](https://github.com/oracle/truffleruby/blob/master/src/main/c/prism_bindings/src/prism_bindings.c)
70
- and links to `librubyparser.a` (to avoid exporting symbols, so no conflict when installing the prism gem).
71
-
72
- ### Building prism as part of JRuby
73
-
74
- TODO, probably similar to TruffleRuby.
@@ -1,22 +0,0 @@
1
- # Building
2
-
3
- The following describes how to build prism from source.
4
- This comes directly from the [Makefile](../Makefile).
5
-
6
- ## Common
7
-
8
- All of the source files match `src/**/*.c` and all of the headers match `include/**/*.h`.
9
-
10
- The following flags should be used to compile prism:
11
-
12
- * `-std=c99` - Use the C99 standard
13
- * `-Wall -Wconversion -Wextra -Wpedantic -Wundef` - Enable the warnings we care about
14
- * `-Werror` - Treat warnings as errors
15
- * `-fvisibility=hidden` - Hide all symbols by default
16
-
17
- ## Shared
18
-
19
- If you want to build prism as a shared library and link against it, you should compile with:
20
-
21
- * `-fPIC -shared` - Compile as a shared library
22
- * `-DPRISM_EXPORT_SYMBOLS` - Export the symbols (by default nothing is exported)
@@ -1,60 +0,0 @@
1
- # Configuration
2
-
3
- A lot of code in prism's repository is templated from a single configuration file, [config.yml](../config.yml). This file is used to generate the following files:
4
-
5
- * `ext/prism/api_node.c` - for defining how to build Ruby objects for the nodes out of C structs
6
- * `include/prism/ast.h` - for defining the C structs that represent the nodes
7
- * `java/org/prism/AbstractNodeVisitor.java` - for defining the visitor interface for the nodes in Java
8
- * `java/org/prism/Loader.java` - for defining how to deserialize the nodes in Java
9
- * `java/org/prism/Nodes.java` - for defining the nodes in Java
10
- * `lib/prism/compiler.rb` - for defining the compiler for the nodes in Ruby
11
- * `lib/prism/dispatcher.rb` - for defining the dispatch visitors for the nodes in Ruby
12
- * `lib/prism/dsl.rb` - for defining the DSL for the nodes in Ruby
13
- * `lib/prism/mutation_compiler.rb` - for defining the mutation compiler for the nodes in Ruby
14
- * `lib/prism/node.rb` - for defining the nodes in Ruby
15
- * `lib/prism/serialize.rb` - for defining how to deserialize the nodes in Ruby
16
- * `lib/prism/visitor.rb` - for defining the visitor interface for the nodes in Ruby
17
- * `src/node.c` - for defining how to free the nodes in C and calculate the size in memory in C
18
- * `src/prettyprint.c` - for defining how to prettyprint the nodes in C
19
- * `src/serialize.c` - for defining how to serialize the nodes in C
20
- * `src/token_type.c` - for defining the names of the token types
21
-
22
- Whenever the structure of the nodes changes, you can run `rake templates` to regenerate these files. Alternatively tasks like `rake test` should pick up on these changes automatically. Every file that is templated will include a comment at the top indicating that it was generated and that changes should be made to the template and not the generated file.
23
-
24
- `config.yml` has a couple of top level fields, which we'll describe below.
25
-
26
- ## `tokens`
27
-
28
- This is a list of tokens to be used by the lexer. It is shared here so that it can be templated out into both an enum and a function that is used for debugging that returns the name of the token.
29
-
30
- Each token is expected to have a `name` key and a `comment` key (both as strings). Optionally they can have a `value` key (an integer) which is used to represent the value in the enum.
31
-
32
- In C these tokens will be templated out with the prefix `PM_TOKEN_`. For example, if you have a `name` key with the value `PERCENT`, you can access this in C through `PM_TOKEN_PERCENT`.
33
-
34
- ## `flags`
35
-
36
- Sometimes we need to communicate more information in the tree than can be represented by the types of the nodes themselves. For example, we need to represent the flags passed to a regular expression or the type of call that a call node is performing. In these circumstances, it's helpful to reference a bitset of flags. This field is a list of flags that can be used in the nodes.
37
-
38
- Each flag is expected to have a `name` key (a string) and a `values` key (an array). Each value in the `values` key should be an object that contains both a `name` key (a string) that represents the name of the flag and a `comment` key (a string) that represents the comment for the flag.
39
-
40
- In C these flags will get templated out with a `PM_` prefix, then a snake-case version of the flag name, then the flag itself. For example, if you have a flag with the name `RegularExpressionFlags` and a value with the name `IGNORE_CASE`, you can access this in C through `PM_REGULAR_EXPRESSION_FLAGS_IGNORE_CASE`.
41
-
42
- ## `nodes`
43
-
44
- Every node in the tree is defined in `config.yml`. Each node is expected to have a `name` key (a string) and a `comment` key (a string). By convention, the `comment` key uses the multi-line syntax of `: |` because the newlines will get templated into the comments of various files.
45
-
46
- Optionally, every node can define a `child_nodes` key that is an array. This array represents each part of the node that isn't communicated through the type and location of the node itself. Within the `child_nodes` key, each entry should be an object with a `name` key (a string) and a `type` key (a string). The `name` key represents the name of the child node and the `type` is used to determine how it should be represented in each language.
47
-
48
- The available values for `type` are:
49
-
50
- * `node` - A child node that is a node itself. This is a `pm_node_t *` in C.
51
- * `node?` - A child node that is optionally present. This is also a `pm_node_t *` in C, but can be `NULL`.
52
- * `node[]` - A child node that is an array of nodes. This is a `pm_node_list_t` in C.
53
- * `string` - A child node that is a string. For example, this is used as the name of the method in a call node, since it cannot directly reference the source string (as in `@-` or `foo=`). This is a `pm_string_t` in C.
54
- * `constant` - A variable-length integer that represents an index in the constant pool. This is a `pm_constant_id_t` in C.
55
- * `constant[]` - A child node that is an array of constants. This is a `pm_constant_id_list_t` in C.
56
- * `location` - A child node that is a location. This is a `pm_location_t` in C.
57
- * `location?` - A child node that is a location that is optionally present. This is a `pm_location_t` in C, but if the value is not present then the `start` and `end` fields will be `NULL`.
58
- * `uint32` - A child node that is a 32-bit unsigned integer. This is a `uint32_t` in C.
59
-
60
- If the type is `node` or `node?` then the value also accepts an optional `kind` key (a string). This key is expected to match to the name of another node type within `config.yml`. This changes a couple of places where code is templated out to use the more specific struct name instead of the generic `pm_node_t`. For example, with `kind: StatementsNode` the `pm_node_t *` in C becomes a `pm_statements_node_t *`.
@@ -1,53 +0,0 @@
1
- # Design
2
-
3
- There are three overall goals for this project:
4
-
5
- * to provide a documented and maintainable parser
6
- * to provide an error-tolerant parser suitable for use in an IDE
7
- * to provide a portable parser that can be used in projects that don't link against CRuby
8
-
9
- The design of the parser is based around these main goals.
10
-
11
- ## Structure
12
-
13
- The first piece to understand about the parser is the design of its syntax tree. This is documented in `config.yml`. Every token and node is defined in that file, along with comments about where they are found in what kinds of syntax. This file is used to template out a lot of different files, all found in the `templates` directory. The `templates/template.rb` script performs the templating and outputs all files matching the directory structure found in the templates directory.
14
-
15
- The templated files contain all of the code required to allocate and initialize nodes, pretty print nodes, and serialize nodes. This means for the most part, you will only need to then hook up the parser to call the templated functions to create the nodes in the correct position. That means editing the parser itself, which is housed in `prism.c`.
16
-
17
- ## Pratt parsing
18
-
19
- In order to provide the best possible error tolerance, the parser is hand-written. It is structured using Pratt parsing, a technique developed by Vaughan Pratt back in the 1970s. Below are a bunch of links to articles and papers that explain Pratt parsing in more detail.
20
-
21
- * https://web.archive.org/web/20151223215421/http://hall.org.ua/halls/wizzard/pdf/Vaughan.Pratt.TDOP.pdf
22
- * https://tdop.github.io/
23
- * https://journal.stuffwithstuff.com/2011/03/19/pratt-parsers-expression-parsing-made-easy/
24
- * https://matklad.github.io/2020/04/13/simple-but-powerful-pratt-parsing.html
25
- * https://chidiwilliams.com/post/on-recursive-descent-and-pratt-parsing/
26
-
27
- You can find most of the functions that correspond to constructs in the Pratt parsing algorithm in `prism.c`. As a couple of examples:
28
-
29
- * `parse` corresponds to the `parse_expression` function
30
- * `nud` (null denotation) corresponds to the `parse_expression_prefix` function
31
- * `led` (left denotation) corresponds to the `parse_expression_infix` function
32
- * `lbp` (left binding power) corresponds to accessing the `left` field of an element in the `binding_powers` array
33
- * `rbp` (right binding power) corresponds to accessing the `right` field of an element in the `binding_powers` array
34
-
35
- ## Portability
36
-
37
- In order to enable using this parser in other projects, the parser is written in C99, and uses only the standard library. This means it can be embedded in most any other project without having to link against CRuby. It can be used directly through its C API to access individual fields, or it can used to parse a syntax tree and then serialize it to a single blob. For more information on serialization, see the [docs/serialization.md](serialization.md) file.
38
-
39
- ## Error tolerance
40
-
41
- The design of the error tolerance of this parser is still very much in flux. We are experimenting with various approaches as the parser is being developed to try to determine the best approach. Below are a bunch of links to articles and papers that explain error tolerance in more detail, as well as document some of the approaches that we're evaluating.
42
-
43
- * https://tratt.net/laurie/blog/2020/automatic_syntax_error_recovery.html
44
- * https://diekmann.uk/diekmann_phd.pdf
45
- * https://eelcovisser.org/publications/2012/JongeKVS12.pdf
46
- * https://www.antlr.org/papers/allstar-techreport.pdf
47
- * https://github.com/microsoft/tolerant-php-parser/blob/main/docs/HowItWorks.md
48
-
49
- Currently, there are a couple of mechanisms for error tolerance that are in place:
50
-
51
- * If the parser expects a token in a particular position (for example the `in` keyword in a for loop or the `{` after `BEGIN` or `END`) then it will insert a missing token if one can't be found and continue parsing.
52
- * If the parser expects an expression in a particular position but encounters a token that can't be used as that expression, it checks up the stack to see if that token would close out a parent node. If so, it will close out all of its parent nodes using missing nodes wherever necessary and continue parsing.
53
- * If the parser cannot understand a token in any capacity, it will skip past the token.
@@ -1,117 +0,0 @@
1
- # Encoding
2
-
3
- When parsing a Ruby file, there are times when the parser must parse identifiers. Identifiers are names of variables, methods, classes, etc. To determine the start of an identifier, the parser must be able to tell if the subsequent bytes form an alphabetic character. To determine the rest of the identifier, the parser must look forward through all alphanumeric characters.
4
-
5
- Determining if a set of bytes comprise an alphabetic or alphanumeric character is encoding-dependent. By default, the parser assumes that all source files are encoded UTF-8. If the file is not encoded in UTF-8, it must be encoded using an encoding that is "ASCII compatible" (i.e., all of the codepoints below 128 match the corresponding codepoints in ASCII and the minimum number of bytes required to represent a codepoint is 1 byte).
6
-
7
- If the file is not encoded in UTF-8, the user must specify the encoding in a "magic" comment at the top of the file. The comment looks like:
8
-
9
- ```ruby
10
- # encoding: iso-8859-9
11
- ```
12
-
13
- The key of the comment can be either "encoding" or "coding". The value of the comment must be a string that is a valid encoding name. The encodings that prism supports by default are:
14
-
15
- * `ascii`
16
- * `ascii-8bit`
17
- * `big5`
18
- * `binary`
19
- * `cp932`
20
- * `euc-jp`
21
- * `gbk`
22
- * `iso-8859-1`
23
- * `iso-8859-2`
24
- * `iso-8859-3`
25
- * `iso-8859-4`
26
- * `iso-8859-5`
27
- * `iso-8859-6`
28
- * `iso-8859-7`
29
- * `iso-8859-8`
30
- * `iso-8859-9`
31
- * `iso-8859-10`
32
- * `iso-8859-11`
33
- * `iso-8859-13`
34
- * `iso-8859-14`
35
- * `iso-8859-15`
36
- * `iso-8859-16`
37
- * `koi8-r`
38
- * `shift_jis`
39
- * `sjis`
40
- * `us-ascii`
41
- * `utf-8`
42
- * `utf8-mac`
43
- * `windows-31j`
44
- * `windows-1251`
45
- * `windows-1252`
46
-
47
- For each of these encodings, prism provides a function for checking if the subsequent bytes form an alphabetic or alphanumeric character.
48
-
49
- ## Support for other encodings
50
-
51
- If an encoding is encountered that is not supported by prism, prism will call a user-provided callback function with the name of the encoding if one is provided. That function can be registered with `pm_parser_register_encoding_decode_callback`. The user-provided callback function can then provide a pointer to an encoding struct that contains the requisite functions that prism will use those to parse identifiers going forward.
52
-
53
- If the user-provided callback function returns `NULL` (the value also provided by the default implementation in case a callback was not registered), an error will be added to the parser's error list and parsing will continue on using the default UTF-8 encoding.
54
-
55
- ```c
56
- // This struct defines the functions necessary to implement the encoding
57
- // interface so we can determine how many bytes the subsequent character takes.
58
- // Each callback should return the number of bytes, or 0 if the next bytes are
59
- // invalid for the encoding and type.
60
- typedef struct {
61
- // Return the number of bytes that the next character takes if it is valid
62
- // in the encoding. Does not read more than n bytes. It is assumed that n is
63
- // at least 1.
64
- size_t (*char_width)(const uint8_t *b, ptrdiff_t n);
65
-
66
- // Return the number of bytes that the next character takes if it is valid
67
- // in the encoding and is alphabetical. Does not read more than n bytes. It
68
- // is assumed that n is at least 1.
69
- size_t (*alpha_char)(const uint8_t *b, ptrdiff_t n);
70
-
71
- // Return the number of bytes that the next character takes if it is valid
72
- // in the encoding and is alphanumeric. Does not read more than n bytes. It
73
- // is assumed that n is at least 1.
74
- size_t (*alnum_char)(const uint8_t *b, ptrdiff_t n);
75
-
76
- // Return true if the next character is valid in the encoding and is an
77
- // uppercase character. Does not read more than n bytes. It is assumed that
78
- // n is at least 1.
79
- bool (*isupper_char)(const uint8_t *b, ptrdiff_t n);
80
-
81
- // The name of the encoding. This should correspond to a value that can be
82
- // passed to Encoding.find in Ruby.
83
- const char *name;
84
-
85
- // Return true if the encoding is a multibyte encoding.
86
- bool multibyte;
87
- } pm_encoding_t;
88
-
89
- // When an encoding is encountered that isn't understood by prism, we provide
90
- // the ability here to call out to a user-defined function to get an encoding
91
- // struct. If the function returns something that isn't NULL, we set that to
92
- // our encoding and use it to parse identifiers.
93
- typedef pm_encoding_t *(*pm_encoding_decode_callback_t)(pm_parser_t *parser, const uint8_t *name, size_t width);
94
-
95
- // Register a callback that will be called when prism encounters a magic comment
96
- // with an encoding referenced that it doesn't understand. The callback should
97
- // return NULL if it also doesn't understand the encoding or it should return a
98
- // pointer to a pm_encoding_t struct that contains the functions necessary to
99
- // parse identifiers.
100
- PRISM_EXPORTED_FUNCTION void
101
- pm_parser_register_encoding_decode_callback(pm_parser_t *parser, pm_encoding_decode_callback_t callback);
102
- ```
103
-
104
- ## Getting notified when the encoding changes
105
-
106
- You may want to get notified when the encoding changes based on the result of parsing an encoding comment. We use this internally for our `lex` function in order to provide the correct encodings for the tokens that are returned. For that you can register a callback with `pm_parser_register_encoding_changed_callback`. The callback will be called with a pointer to the parser. The encoding can be accessed through `parser->encoding`.
107
-
108
- ```c
109
- // When the encoding that is being used to parse the source is changed by prism,
110
- // we provide the ability here to call out to a user-defined function.
111
- typedef void (*pm_encoding_changed_callback_t)(pm_parser_t *parser);
112
-
113
- // Register a callback that will be called whenever prism changes the encoding
114
- // it is using to parse based on the magic comment.
115
- PRISM_EXPORTED_FUNCTION void
116
- pm_parser_register_encoding_changed_callback(pm_parser_t *parser, pm_encoding_changed_callback_t callback);
117
- ```
@@ -1,88 +0,0 @@
1
- # Fuzzing
2
-
3
- We use fuzzing to test the various entrypoints to the library. The fuzzer we use is [AFL++](https://aflplus.plus). All files related to fuzzing live within the `fuzz` directory, which has the following structure:
4
-
5
- ```
6
- fuzz
7
- ├── corpus
8
- │   ├── parse fuzzing corpus for parsing (a symlink to our fixtures)
9
- │   └── regexp fuzzing corpus for regexp
10
- ├── dict a AFL++ dictionary containing various tokens
11
- ├── docker
12
- │   └── Dockerfile for building a container with the fuzzer toolchain
13
- ├── fuzz.c generic entrypoint for fuzzing
14
- ├── heisenbug.c entrypoint for reproducing a crash or hang
15
- ├── parse.c fuzz handler for parsing
16
- ├── parse.sh script to run parsing fuzzer
17
- ├── regexp.c fuzz handler for regular expression parsing
18
- ├── regexp.sh script to run regexp fuzzer
19
- └── tools
20
-    ├── backtrace.sh generates backtrace files for a crash directory
21
-    └── minimize.sh generates minimized crash or hang files
22
- ```
23
-
24
- ## Usage
25
-
26
- There are currently three fuzzing targets
27
-
28
- - `pm_parse_serialize` (parse)
29
- - `pm_regexp_named_capture_group_names` (regexp)
30
-
31
- Respectively, fuzzing can be performed with
32
-
33
- ```
34
- make fuzz-run-parse
35
- make fuzz-run-regexp
36
- ```
37
-
38
- To end a fuzzing job, interrupt with CTRL+C. To enter a container with the fuzzing toolchain and debug utilities, run
39
-
40
- ```
41
- make fuzz-debug
42
- ```
43
-
44
- # Out-of-bounds reads
45
-
46
- Currently, encoding functionality implementing the `pm_encoding_t` interface can read outside of inputs. For the time being, ASAN instrumentation is disabled for functions from src/enc. See `fuzz/asan.ignore`.
47
-
48
- To disable ASAN read instrumentation globally, use the `FUZZ_FLAGS` environment variable e.g.
49
-
50
- ```
51
- FUZZ_FLAGS="-mllvm -asan-instrument-reads=false" make fuzz-run-parse
52
- ```
53
-
54
- Note, that this may make reproducing bugs difficult as they may depend on memory outside of the input buffer. In that case, try
55
-
56
- ```
57
- make fuzz-debug # enter the docker container with build tools
58
- make build/fuzz.heisenbug.parse # or .regexp
59
- ./build/fuzz.heisenbug.parse path-to-problem-input
60
- ```
61
-
62
- # Triaging Crashes and Hangs
63
-
64
- Triaging crashes and hangs is easier when the inputs are as short as possible. In the fuzz container, an entire crash or hang directory can be minimized using
65
-
66
- ```
67
- ./fuzz/tools/minimize.sh <directory>
68
- ```
69
-
70
- e.g.
71
- ```
72
- ./fuzz/tools/minimize.sh fuzz/output/parse/default/crashes
73
- ```
74
-
75
- This may take a long time. In the crash/hang directory, for each input file there will appear a minimized version with the extension `.min` appended.
76
-
77
- Backtraces for crashes (not hangs) can be generated en masse with
78
-
79
- ```
80
- ./fuzz/tools/backtrace.sh <directory>
81
- ```
82
-
83
- Files with basename equal to the input file name with extension `.bt` will be created e.g.
84
-
85
- ```
86
- id:000000,sig:06,src:000006+000190,time:8480,execs:18929,op:splice,rep:4
87
- id:000000,sig:06,src:000006+000190,time:8480,execs:18929,op:splice,rep:4.bt
88
- ```
@@ -1,36 +0,0 @@
1
- # Heredocs
2
-
3
- Heredocs are one of the most complicated pieces of this parser. There are many different forms, there can be multiple open at the same time, and they can be nested. In order to support parsing them, we keep track of a lot of metadata. Below is a basic overview of how it works.
4
-
5
- ## 1. Lexing the identifier
6
-
7
- When a heredoc identifier is encountered in the regular process of lexing, we push the `PM_LEX_HEREDOC` mode onto the stack with the following metadata:
8
-
9
- * `ident_start`: A pointer to the start of the identifier for the heredoc. We need this to match against the end of the heredoc.
10
- * `ident_length`: The length of the identifier for the heredoc. We also need this to match.
11
- * `next_start`: A pointer to the place in source that the parser should resume lexing once it has completed this heredoc.
12
-
13
- We also set the special `parser.next_start` field which is a pointer to the place in the source where we should start lexing the next token. This is set to the pointer of the character immediately following the next newline.
14
-
15
- Note that if the `parser.heredoc_end` field is already set, then it means we have already encountered a heredoc on this line. In that case the `parser.next_start` field will be set to the `parser.heredoc_end` field. This is because we want to skip past the heredoc previous heredocs on this line and instead lex the body of this heredoc.
16
-
17
- ## 2. Lexing the body
18
-
19
- The next time the lexer is asked for a token, it will be in the `PM_LEX_HEREDOC` mode. In this mode we are lexing the body of the heredoc. It will start by checking if the `next_start` field is set. If it is, then this is the first token within the body of the heredoc so we'll start lexing from there. Otherwise we'll start lexing from the end of the previous token.
20
-
21
- Lexing these fields is extremely similar to lexing an interpolated string. The only difference is that we also do an additional check at the beginning of each line to check if we have hit the terminator.
22
-
23
- ## 3. Lexing the terminator
24
-
25
- On every newline within the body of a heredoc, we check to see if it matches the terminator followed by a newline or a carriage return and a newline. If it does, then we pop the lex mode off the stack and set a couple of fields on the parser:
26
-
27
- * `next_start`: This is set to the value that we previously stored on the heredoc to indicate where the lexer should resume lexing when it is done with this heredoc.
28
- * `heredoc_end`: This is set to the end of the heredoc. When a newline character is found, this indicates that the lexer should skip past to this next point.
29
-
30
- ## 4. Lexing the rest of the line
31
-
32
- Once the heredoc has been lexed, the lexer will resume lexing from the `next_start` field. Lexing will continue until the next newline character. When the next newline character is found, it will check to see if the `heredoc_end` field is set. If it is it will skip to that point, unset the field, and continue lexing.
33
-
34
- ## Compatibility with Ripper
35
-
36
- The order in which tokens are emitted is different from that of Ripper. Ripper emits each token in the file in the order in which it appears. prism instead will emit the tokens that makes the most sense for the lexer, using the process described above. Therefore to line things up, `Prism.lex_compat` will shuffle the tokens around to match Ripper's output.
@@ -1,117 +0,0 @@
1
- # Mapping
2
-
3
- When considering the previous CRuby parser versus prism, this document should be helpful to understand how various concepts are mapped.
4
-
5
- ## Nodes
6
-
7
- The following table shows how the various CRuby nodes are mapped to prism nodes.
8
-
9
- | CRuby | prism |
10
- | --- | --- |
11
- | `NODE_SCOPE` | |
12
- | `NODE_BLOCK` | |
13
- | `NODE_IF` | `PM_IF_NODE` |
14
- | `NODE_UNLESS` | `PM_UNLESS_NODE` |
15
- | `NODE_CASE` | `PM_CASE_NODE` |
16
- | `NODE_CASE2` | `PM_CASE_NODE` (with a null predicate) |
17
- | `NODE_CASE3` | |
18
- | `NODE_WHEN` | `PM_WHEN_NODE` |
19
- | `NODE_IN` | `PM_IN_NODE` |
20
- | `NODE_WHILE` | `PM_WHILE_NODE` |
21
- | `NODE_UNTIL` | `PM_UNTIL_NODE` |
22
- | `NODE_ITER` | `PM_CALL_NODE` (with a non-null block) |
23
- | `NODE_FOR` | `PM_FOR_NODE` |
24
- | `NODE_FOR_MASGN` | `PM_FOR_NODE` (with a multi-write node as the index) |
25
- | `NODE_BREAK` | `PM_BREAK_NODE` |
26
- | `NODE_NEXT` | `PM_NEXT_NODE` |
27
- | `NODE_REDO` | `PM_REDO_NODE` |
28
- | `NODE_RETRY` | `PM_RETRY_NODE` |
29
- | `NODE_BEGIN` | `PM_BEGIN_NODE` |
30
- | `NODE_RESCUE` | `PM_RESCUE_NODE` |
31
- | `NODE_RESBODY` | |
32
- | `NODE_ENSURE` | `PM_ENSURE_NODE` |
33
- | `NODE_AND` | `PM_AND_NODE` |
34
- | `NODE_OR` | `PM_OR_NODE` |
35
- | `NODE_MASGN` | `PM_MULTI_WRITE_NODE` |
36
- | `NODE_LASGN` | `PM_LOCAL_VARIABLE_WRITE_NODE` |
37
- | `NODE_DASGN` | `PM_LOCAL_VARIABLE_WRITE_NODE` |
38
- | `NODE_GASGN` | `PM_GLOBAL_VARIABLE_WRITE_NODE` |
39
- | `NODE_IASGN` | `PM_INSTANCE_VARIABLE_WRITE_NODE` |
40
- | `NODE_CDECL` | `PM_CONSTANT_PATH_WRITE_NODE` |
41
- | `NODE_CVASGN` | `PM_CLASS_VARIABLE_WRITE_NODE` |
42
- | `NODE_OP_ASGN1` | |
43
- | `NODE_OP_ASGN2` | |
44
- | `NODE_OP_ASGN_AND` | `PM_OPERATOR_AND_ASSIGNMENT_NODE` |
45
- | `NODE_OP_ASGN_OR` | `PM_OPERATOR_OR_ASSIGNMENT_NODE` |
46
- | `NODE_OP_CDECL` | |
47
- | `NODE_CALL` | `PM_CALL_NODE` |
48
- | `NODE_OPCALL` | `PM_CALL_NODE` (with an operator as the method) |
49
- | `NODE_FCALL` | `PM_CALL_NODE` (with a null receiver and parentheses) |
50
- | `NODE_VCALL` | `PM_CALL_NODE` (with a null receiver and parentheses or arguments) |
51
- | `NODE_QCALL` | `PM_CALL_NODE` (with a &. operator) |
52
- | `NODE_SUPER` | `PM_SUPER_NODE` |
53
- | `NODE_ZSUPER` | `PM_FORWARDING_SUPER_NODE` |
54
- | `NODE_LIST` | `PM_ARRAY_NODE` |
55
- | `NODE_ZLIST` | `PM_ARRAY_NODE` (with no child elements) |
56
- | `NODE_VALUES` | `PM_ARGUMENTS_NODE` |
57
- | `NODE_HASH` | `PM_HASH_NODE` |
58
- | `NODE_RETURN` | `PM_RETURN_NODE` |
59
- | `NODE_YIELD` | `PM_YIELD_NODE` |
60
- | `NODE_LVAR` | `PM_LOCAL_VARIABLE_READ_NODE` |
61
- | `NODE_DVAR` | `PM_LOCAL_VARIABLE_READ_NODE` |
62
- | `NODE_GVAR` | `PM_GLOBAL_VARIABLE_READ_NODE` |
63
- | `NODE_IVAR` | `PM_INSTANCE_VARIABLE_READ_NODE` |
64
- | `NODE_CONST` | `PM_CONSTANT_PATH_READ_NODE` |
65
- | `NODE_CVAR` | `PM_CLASS_VARIABLE_READ_NODE` |
66
- | `NODE_NTH_REF` | `PM_NUMBERED_REFERENCE_READ_NODE` |
67
- | `NODE_BACK_REF` | `PM_BACK_REFERENCE_READ_NODE` |
68
- | `NODE_MATCH` | |
69
- | `NODE_MATCH2` | `PM_CALL_NODE` (with regular expression as receiver) |
70
- | `NODE_MATCH3` | `PM_CALL_NODE` (with regular expression as only argument) |
71
- | `NODE_LIT` | |
72
- | `NODE_STR` | `PM_STRING_NODE` |
73
- | `NODE_DSTR` | `PM_INTERPOLATED_STRING_NODE` |
74
- | `NODE_XSTR` | `PM_X_STRING_NODE` |
75
- | `NODE_DXSTR` | `PM_INTERPOLATED_X_STRING_NODE` |
76
- | `NODE_EVSTR` | `PM_STRING_INTERPOLATED_NODE` |
77
- | `NODE_DREGX` | `PM_INTERPOLATED_REGULAR_EXPRESSION_NODE` |
78
- | `NODE_ONCE` | |
79
- | `NODE_ARGS` | `PM_PARAMETERS_NODE` |
80
- | `NODE_ARGS_AUX` | |
81
- | `NODE_OPT_ARG` | `PM_OPTIONAL_PARAMETER_NODE` |
82
- | `NODE_KW_ARG` | `PM_KEYWORD_PARAMETER_NODE` |
83
- | `NODE_POSTARG` | `PM_REQUIRED_PARAMETER_NODE` |
84
- | `NODE_ARGSCAT` | |
85
- | `NODE_ARGSPUSH` | |
86
- | `NODE_SPLAT` | `PM_SPLAT_NODE` |
87
- | `NODE_BLOCK_PASS` | `PM_BLOCK_ARGUMENT_NODE` |
88
- | `NODE_DEFN` | `PM_DEF_NODE` (with a null receiver) |
89
- | `NODE_DEFS` | `PM_DEF_NODE` (with a non-null receiver) |
90
- | `NODE_ALIAS` | `PM_ALIAS_NODE` |
91
- | `NODE_VALIAS` | `PM_ALIAS_NODE` (with a global variable first argument) |
92
- | `NODE_UNDEF` | `PM_UNDEF_NODE` |
93
- | `NODE_CLASS` | `PM_CLASS_NODE` |
94
- | `NODE_MODULE` | `PM_MODULE_NODE` |
95
- | `NODE_SCLASS` | `PM_S_CLASS_NODE` |
96
- | `NODE_COLON2` | `PM_CONSTANT_PATH_NODE` |
97
- | `NODE_COLON3` | `PM_CONSTANT_PATH_NODE` (with a null receiver) |
98
- | `NODE_DOT2` | `PM_RANGE_NODE` (with a .. operator) |
99
- | `NODE_DOT3` | `PM_RANGE_NODE` (with a ... operator) |
100
- | `NODE_FLIP2` | `PM_RANGE_NODE` (with a .. operator) |
101
- | `NODE_FLIP3` | `PM_RANGE_NODE` (with a ... operator) |
102
- | `NODE_SELF` | `PM_SELF_NODE` |
103
- | `NODE_NIL` | `PM_NIL_NODE` |
104
- | `NODE_TRUE` | `PM_TRUE_NODE` |
105
- | `NODE_FALSE` | `PM_FALSE_NODE` |
106
- | `NODE_ERRINFO` | |
107
- | `NODE_DEFINED` | `PM_DEFINED_NODE` |
108
- | `NODE_POSTEXE` | `PM_POST_EXECUTION_NODE` |
109
- | `NODE_DSYM` | `PM_INTERPOLATED_SYMBOL_NODE` |
110
- | `NODE_ATTRASGN` | `PM_CALL_NODE` (with a message that ends with =) |
111
- | `NODE_LAMBDA` | `PM_LAMBDA_NODE` |
112
- | `NODE_ARYPTN` | `PM_ARRAY_PATTERN_NODE` |
113
- | `NODE_HSHPTN` | `PM_HASH_PATTERN_NODE` |
114
- | `NODE_FNDPTN` | `PM_FIND_PATTERN_NODE` |
115
- | `NODE_ERROR` | `PM_MISSING_NODE` |
116
- | `NODE_LAST` | |
117
- ```
@@ -1,36 +0,0 @@
1
- # Ripper
2
-
3
- To test the parser, we compare against the output from `Ripper`, both for testing the lexer and testing the parser. The lexer test suite is much more feature complete at the moment.
4
-
5
- To lex source code using `prism`, you typically would run `Prism.lex(source)`. If you want to instead get output that `Ripper` would normally produce, you can run `Prism.lex_compat(source)`. This will produce tokens that should be equivalent to `Ripper`.
6
-
7
- To parse source code using `prism`, you typically would run `Prism.parse(source)`. If you want to instead using the `Ripper` streaming interface, you can inherit from `Prism::RipperCompat` and override the `on_*` methods. This will produce a syntax tree that should be equivalent to `Ripper`. That would look like:
8
-
9
- ```ruby
10
- class ArithmeticRipper < Prism::RipperCompat
11
- def on_binary(left, operator, right)
12
- left.public_send(operator, right)
13
- end
14
-
15
- def on_int(value)
16
- value.to_i
17
- end
18
-
19
- def on_program(stmts)
20
- stmts
21
- end
22
-
23
- def on_stmts_new
24
- []
25
- end
26
-
27
- def on_stmts_add(stmts, stmt)
28
- stmts << stmt
29
- stmts
30
- end
31
- end
32
-
33
- ArithmeticRipper.new("1 + 2 - 3").parse # => [0]
34
- ```
35
-
36
- There are also APIs for building trees similar to the s-expression builders in `Ripper`. The method names are the same. These include `Prism::RipperCompat.sexp_raw(source)` and `Prism::RipperCompat.sexp(source)`.
@@ -1,25 +0,0 @@
1
- # Ruby API
2
-
3
- The `prism` gem provides a Ruby API for accessing the syntax tree.
4
-
5
- For the most part, the API for accessing the tree mirrors that found in the [Syntax Tree](https://github.com/ruby-syntax-tree/syntax_tree) project. This means:
6
-
7
- * Walking the tree involves creating a visitor and passing it to the `#accept` method on any node in the tree
8
- * Nodes in the tree respond to named methods for accessing their children as well as `#child_nodes`
9
- * Nodes respond to the pattern matching interfaces `#deconstruct` and `#deconstruct_keys`
10
-
11
- Every entry in `config.yml` will generate a Ruby class as well as the code that builds the nodes themselves.
12
- Creating a syntax tree involves calling one of the class methods on the `Prism` module.
13
- The full API is documented below.
14
-
15
- ## API
16
-
17
- * `Prism.dump(source, filepath)` - parse the syntax tree corresponding to the given source string and filepath, and serialize it to a string. Filepath can be nil.
18
- * `Prism.dump_file(filepath)` - parse the syntax tree corresponding to the given source file and serialize it to a string
19
- * `Prism.lex(source)` - parse the tokens corresponding to the given source string and return them as an array within a parse result
20
- * `Prism.lex_file(filepath)` - parse the tokens corresponding to the given source file and return them as an array within a parse result
21
- * `Prism.parse(source)` - parse the syntax tree corresponding to the given source string and return it within a parse result
22
- * `Prism.parse_file(filepath)` - parse the syntax tree corresponding to the given source file and return it within a parse result
23
- * `Prism.parse_lex(source)` - parse the syntax tree corresponding to the given source string and return it within a parse result, along with the tokens
24
- * `Prism.parse_lex_file(filepath)` - parse the syntax tree corresponding to the given source file and return it within a parse result, along with the tokens
25
- * `Prism.load(source, serialized)` - load the serialized syntax tree using the source as a reference into a syntax tree