lightning_ui_kit 0.3.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2305) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +36 -3
  3. data/app/assets/stylesheets/lightning_ui_kit/application.css +7 -0
  4. data/app/assets/stylesheets/lightning_ui_kit/themes.css +14 -0
  5. data/app/assets/vendor/lightning_ui_kit.css +1151 -1470
  6. data/app/assets/vendor/lightning_ui_kit.js +10 -4
  7. data/app/components/lightning_ui_kit/aspect_ratio_component.html.erb +3 -0
  8. data/app/components/lightning_ui_kit/aspect_ratio_component.rb +35 -0
  9. data/app/components/lightning_ui_kit/auth_layout_component.html.erb +5 -0
  10. data/app/components/lightning_ui_kit/auth_layout_component.rb +9 -0
  11. data/app/components/lightning_ui_kit/breadcrumb/item_component.html.erb +7 -0
  12. data/app/components/lightning_ui_kit/breadcrumb/item_component.rb +27 -0
  13. data/app/components/lightning_ui_kit/breadcrumb_component.html.erb +12 -0
  14. data/app/components/lightning_ui_kit/breadcrumb_component.rb +23 -0
  15. data/app/components/lightning_ui_kit/button_component.rb +35 -13
  16. data/app/components/lightning_ui_kit/calendar_component.html.erb +15 -0
  17. data/app/components/lightning_ui_kit/calendar_component.rb +47 -0
  18. data/app/components/lightning_ui_kit/carousel_component.html.erb +24 -0
  19. data/app/components/lightning_ui_kit/carousel_component.rb +31 -0
  20. data/app/components/lightning_ui_kit/chart_component.html.erb +80 -0
  21. data/app/components/lightning_ui_kit/chart_component.rb +263 -0
  22. data/app/components/lightning_ui_kit/collapsible_component.html.erb +10 -0
  23. data/app/components/lightning_ui_kit/collapsible_component.rb +28 -0
  24. data/app/components/lightning_ui_kit/combobox_component.html.erb +5 -5
  25. data/app/components/lightning_ui_kit/combobox_component.rb +29 -5
  26. data/app/components/lightning_ui_kit/command/item_component.html.erb +1 -0
  27. data/app/components/lightning_ui_kit/command/item_component.rb +8 -0
  28. data/app/components/lightning_ui_kit/command_component.html.erb +25 -0
  29. data/app/components/lightning_ui_kit/command_component.rb +26 -0
  30. data/app/components/lightning_ui_kit/context_menu_component.html.erb +12 -0
  31. data/app/components/lightning_ui_kit/context_menu_component.rb +27 -0
  32. data/app/components/lightning_ui_kit/copy_input_component.html.erb +37 -0
  33. data/app/components/lightning_ui_kit/copy_input_component.rb +60 -0
  34. data/app/components/lightning_ui_kit/date_picker_component.html.erb +12 -0
  35. data/app/components/lightning_ui_kit/date_picker_component.rb +53 -0
  36. data/app/components/lightning_ui_kit/hover_card_component.html.erb +15 -0
  37. data/app/components/lightning_ui_kit/hover_card_component.rb +35 -0
  38. data/app/components/lightning_ui_kit/input_component.rb +1 -0
  39. data/app/components/lightning_ui_kit/input_otp_component.html.erb +19 -0
  40. data/app/components/lightning_ui_kit/input_otp_component.rb +40 -0
  41. data/app/components/lightning_ui_kit/layout_component.html.erb +2 -2
  42. data/app/components/lightning_ui_kit/layout_component.rb +0 -1
  43. data/app/components/lightning_ui_kit/menubar/menu_component.html.erb +12 -0
  44. data/app/components/lightning_ui_kit/menubar/menu_component.rb +22 -0
  45. data/app/components/lightning_ui_kit/menubar_component.html.erb +5 -0
  46. data/app/components/lightning_ui_kit/menubar_component.rb +21 -0
  47. data/app/components/lightning_ui_kit/modal_component.html.erb +44 -24
  48. data/app/components/lightning_ui_kit/modal_component.rb +42 -2
  49. data/app/components/lightning_ui_kit/navigation_menu/item_component.html.erb +1 -0
  50. data/app/components/lightning_ui_kit/navigation_menu/item_component.rb +13 -0
  51. data/app/components/lightning_ui_kit/navigation_menu_component.html.erb +27 -0
  52. data/app/components/lightning_ui_kit/navigation_menu_component.rb +26 -0
  53. data/app/components/lightning_ui_kit/pagination_component.html.erb +4 -4
  54. data/app/components/lightning_ui_kit/pagination_component.rb +1 -2
  55. data/app/components/lightning_ui_kit/popover_component.html.erb +8 -0
  56. data/app/components/lightning_ui_kit/popover_component.rb +32 -0
  57. data/app/components/lightning_ui_kit/progress_component.html.erb +3 -0
  58. data/app/components/lightning_ui_kit/progress_component.rb +39 -0
  59. data/app/components/lightning_ui_kit/resizable_component.html.erb +17 -0
  60. data/app/components/lightning_ui_kit/resizable_component.rb +52 -0
  61. data/app/components/lightning_ui_kit/scroll_area_component.html.erb +3 -0
  62. data/app/components/lightning_ui_kit/scroll_area_component.rb +32 -0
  63. data/app/components/lightning_ui_kit/separator_component.html.erb +1 -0
  64. data/app/components/lightning_ui_kit/separator_component.rb +36 -0
  65. data/app/components/lightning_ui_kit/sheet_component.html.erb +53 -0
  66. data/app/components/lightning_ui_kit/sheet_component.rb +60 -0
  67. data/app/components/lightning_ui_kit/slider_component.html.erb +20 -0
  68. data/app/components/lightning_ui_kit/slider_component.rb +56 -0
  69. data/app/components/lightning_ui_kit/table/column_component.rb +19 -2
  70. data/app/components/lightning_ui_kit/table_component.html.erb +103 -12
  71. data/app/components/lightning_ui_kit/table_component.rb +137 -3
  72. data/app/components/lightning_ui_kit/toggle_component.html.erb +3 -0
  73. data/app/components/lightning_ui_kit/toggle_component.rb +53 -0
  74. data/app/components/lightning_ui_kit/toggle_group/item_component.html.erb +1 -0
  75. data/app/components/lightning_ui_kit/toggle_group/item_component.rb +8 -0
  76. data/app/components/lightning_ui_kit/toggle_group_component.html.erb +15 -0
  77. data/app/components/lightning_ui_kit/toggle_group_component.rb +57 -0
  78. data/app/components/lightning_ui_kit/tooltip_component.html.erb +1 -1
  79. data/app/controllers/concerns/lightning_ui_kit/sortable.rb +18 -0
  80. data/app/javascript/lightning_ui_kit/controllers/calendar_controller.js +103 -0
  81. data/app/javascript/lightning_ui_kit/controllers/carousel_controller.js +68 -0
  82. data/app/javascript/lightning_ui_kit/controllers/chart_controller.js +53 -0
  83. data/app/javascript/lightning_ui_kit/controllers/clipboard_controller.js +40 -3
  84. data/app/javascript/lightning_ui_kit/controllers/collapsible_controller.js +24 -0
  85. data/app/javascript/lightning_ui_kit/controllers/command_controller.js +71 -0
  86. data/app/javascript/lightning_ui_kit/controllers/context_menu_controller.js +59 -0
  87. data/app/javascript/lightning_ui_kit/controllers/date_picker_controller.js +69 -0
  88. data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +1 -1
  89. data/app/javascript/lightning_ui_kit/controllers/hover_card_controller.js +84 -0
  90. data/app/javascript/lightning_ui_kit/controllers/menubar_controller.js +55 -0
  91. data/app/javascript/lightning_ui_kit/controllers/modal_controller.js +28 -16
  92. data/app/javascript/lightning_ui_kit/controllers/navigation_menu_controller.js +96 -0
  93. data/app/javascript/lightning_ui_kit/controllers/otp_controller.js +65 -0
  94. data/app/javascript/lightning_ui_kit/controllers/popover_controller.js +75 -0
  95. data/app/javascript/lightning_ui_kit/controllers/resizable_controller.js +51 -0
  96. data/app/javascript/lightning_ui_kit/controllers/reveal_controller.js +2 -2
  97. data/app/javascript/lightning_ui_kit/controllers/sheet_controller.js +42 -0
  98. data/app/javascript/lightning_ui_kit/controllers/slider_controller.js +23 -0
  99. data/app/javascript/lightning_ui_kit/controllers/table_controller.js +82 -0
  100. data/app/javascript/lightning_ui_kit/controllers/toggle_controller.js +16 -0
  101. data/app/javascript/lightning_ui_kit/controllers/toggle_group_controller.js +31 -0
  102. data/app/javascript/lightning_ui_kit/index.js +36 -0
  103. data/lib/lightning_ui_kit/builder.rb +94 -2
  104. data/lib/lightning_ui_kit/sorting.rb +46 -0
  105. data/lib/lightning_ui_kit/version.rb +1 -1
  106. data/lib/lightning_ui_kit.rb +1 -0
  107. data/vendor/bundle/ruby/3.4.0/bin/minitest +29 -0
  108. data/vendor/bundle/ruby/3.4.0/cache/benchmark-0.5.0.gem +0 -0
  109. data/vendor/bundle/ruby/3.4.0/cache/bigdecimal-4.1.2.gem +0 -0
  110. data/vendor/bundle/ruby/3.4.0/cache/concurrent-ruby-1.3.6.gem +0 -0
  111. data/vendor/bundle/ruby/3.4.0/cache/connection_pool-3.0.2.gem +0 -0
  112. data/vendor/bundle/ruby/3.4.0/cache/i18n-1.14.8.gem +0 -0
  113. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.1.gem +0 -0
  114. data/vendor/bundle/ruby/3.4.0/cache/loofah-2.25.1.gem +0 -0
  115. data/vendor/bundle/ruby/3.4.0/cache/minitest-6.0.6.gem +0 -0
  116. data/vendor/bundle/ruby/3.4.0/cache/nokogiri-1.19.3-x86_64-linux-gnu.gem +0 -0
  117. data/vendor/bundle/ruby/3.4.0/cache/prism-1.9.0.gem +0 -0
  118. data/vendor/bundle/ruby/3.4.0/cache/rails-html-sanitizer-1.7.0.gem +0 -0
  119. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.84.2.gem +0 -0
  120. data/vendor/bundle/ruby/3.4.0/cache/standard-1.54.0.gem +0 -0
  121. data/vendor/bundle/ruby/3.4.0/cache/tailwind_merge-1.4.0.gem +0 -0
  122. data/vendor/bundle/ruby/3.4.0/cache/uri-1.1.1.gem +0 -0
  123. data/vendor/bundle/ruby/3.4.0/cache/view_component-4.8.0.gem +0 -0
  124. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/bigdecimal.so +0 -0
  125. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/gem_make.out +39 -0
  126. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/mkmf.log +474 -0
  127. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/date_core.so +0 -0
  128. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/gem_make.out +6 -6
  129. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/mkmf.log +4 -4
  130. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/erb/escape.so +0 -0
  131. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/gem_make.out +6 -6
  132. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/mkmf.log +2 -2
  133. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/gem_make.out +6 -6
  134. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/io/console.so +0 -0
  135. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/mkmf.log +16 -16
  136. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/gem_make.out +25 -0
  137. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/generator.so +0 -0
  138. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/parser.so +0 -0
  139. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/mkmf.log +165 -0
  140. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/gem_make.out +6 -6
  141. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/mkmf.log +12 -12
  142. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/nio4r_ext.so +0 -0
  143. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/gem_make.out +44 -0
  144. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/mkmf.log +74 -0
  145. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/prism/prism.so +0 -0
  146. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/gem_make.out +6 -6
  147. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/mkmf.log +10 -10
  148. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/psych.so +0 -0
  149. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/gem_make.out +6 -6
  150. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/racc/cparse.so +0 -0
  151. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/gem_make.out +6 -6
  152. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/mkmf.log +2 -2
  153. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/stringio.so +0 -0
  154. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/gem_make.out +6 -6
  155. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
  156. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/lib/benchmark.rb +608 -0
  157. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/bigdecimal.gemspec +62 -0
  158. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +274 -0
  159. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/bigdecimal.c +6207 -0
  160. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/bigdecimal.h +298 -0
  161. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/bits.h +144 -0
  162. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/div.h +192 -0
  163. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/extconf.rb +63 -0
  164. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/missing/dtoa.c +3509 -0
  165. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/missing.h +106 -0
  166. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/ntt.h +191 -0
  167. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal/jacobian.rb +92 -0
  168. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal/ludcmp.rb +91 -0
  169. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal/math.rb +927 -0
  170. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal/newton.rb +82 -0
  171. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal/util.rb +186 -0
  172. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal.rb +404 -0
  173. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal.so +0 -0
  174. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sample/linear.rb +110 -0
  175. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sample/nlsolve.rb +57 -0
  176. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sample/pi.rb +16 -0
  177. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sig/big_decimal.rbs +1502 -0
  178. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sig/big_decimal_util.rbs +158 -0
  179. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/sig/big_math.rbs +423 -0
  180. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/CHANGELOG.md +609 -0
  181. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/README.md +409 -0
  182. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +29 -0
  183. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/ruby_timeout_queue.rb +55 -0
  184. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/collection/timeout_queue.rb +18 -0
  185. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  186. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +222 -0
  187. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +101 -0
  188. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +147 -0
  189. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +23 -0
  190. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +396 -0
  191. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executor/timer_set.rb +179 -0
  192. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/executors.rb +19 -0
  193. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/mvar.rb +242 -0
  194. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/promise.rb +580 -0
  195. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/timer_task.rb +366 -0
  196. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/version.rb +3 -0
  197. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/Changes.md +220 -0
  198. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/README.md +182 -0
  199. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/connection_pool.gemspec +35 -0
  200. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/lib/connection_pool/fork.rb +40 -0
  201. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/lib/connection_pool/timed_stack.rb +236 -0
  202. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/lib/connection_pool/version.rb +3 -0
  203. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/lib/connection_pool/wrapper.rb +43 -0
  204. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-3.0.2/lib/connection_pool.rb +185 -0
  205. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/ext/date/Makefile +3 -3
  206. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/lib/date_core.so +0 -0
  207. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/ext/erb/escape/Makefile +3 -3
  208. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/lib/erb/escape.so +0 -0
  209. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n/backend/interpolation_compiler.rb +122 -0
  210. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n/exceptions.rb +155 -0
  211. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n/middleware.rb +17 -0
  212. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n/tests/interpolation.rb +185 -0
  213. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n/version.rb +5 -0
  214. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.8/lib/i18n.rb +478 -0
  215. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/ext/io/console/Makefile +3 -3
  216. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/lib/io/console.so +0 -0
  217. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/CHANGES.md +733 -0
  218. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/fbuffer/fbuffer.h +249 -0
  219. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/Makefile +273 -0
  220. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/generator.c +2224 -0
  221. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/json.h +101 -0
  222. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/Makefile +273 -0
  223. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/parser.c +1672 -0
  224. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/simd/simd.h +218 -0
  225. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/vendor/fpconv.c +480 -0
  226. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/generator.so +0 -0
  227. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/parser.so +0 -0
  228. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/version.rb +5 -0
  229. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json.rb +663 -0
  230. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.25.1/CHANGELOG.md +608 -0
  231. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.25.1/SECURITY.md +18 -0
  232. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.25.1/lib/loofah/html5/scrub.rb +244 -0
  233. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.25.1/lib/loofah/version.rb +6 -0
  234. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/History.rdoc +1860 -0
  235. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/Manifest.txt +41 -0
  236. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/README.rdoc +763 -0
  237. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/Rakefile +89 -0
  238. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/bin/minitest +5 -0
  239. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/design_rationale.rb +54 -0
  240. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/hoe/minitest.rb +30 -0
  241. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/assertions.rb +821 -0
  242. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/autorun.rb +5 -0
  243. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/benchmark.rb +452 -0
  244. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/bisect.rb +304 -0
  245. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/complete.rb +56 -0
  246. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/find_minimal_combination.rb +127 -0
  247. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/hell.rb +11 -0
  248. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/manual_plugins.rb +4 -0
  249. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/parallel.rb +72 -0
  250. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/path_expander.rb +432 -0
  251. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/pride.rb +4 -0
  252. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/pride_plugin.rb +135 -0
  253. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/server.rb +49 -0
  254. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/server_plugin.rb +88 -0
  255. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/spec.rb +324 -0
  256. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/sprint.rb +105 -0
  257. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/sprint_plugin.rb +39 -0
  258. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/test.rb +232 -0
  259. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest/test_task.rb +331 -0
  260. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/lib/minitest.rb +1232 -0
  261. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/metametameta.rb +150 -0
  262. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_bisect.rb +249 -0
  263. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_find_minimal_combination.rb +138 -0
  264. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_minitest_assertions.rb +1729 -0
  265. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_minitest_benchmark.rb +151 -0
  266. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_minitest_reporter.rb +437 -0
  267. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_minitest_spec.rb +1095 -0
  268. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_minitest_test.rb +1295 -0
  269. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_path_expander.rb +229 -0
  270. data/vendor/bundle/ruby/3.4.0/gems/minitest-6.0.6/test/minitest/test_server.rb +146 -0
  271. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/ext/nio4r/Makefile +3 -3
  272. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/lib/nio4r_ext.so +0 -0
  273. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/Gemfile +40 -0
  274. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +2411 -0
  275. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/README.md +308 -0
  276. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/dependencies.yml +31 -0
  277. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/ext/nokogiri/extconf.rb +1165 -0
  278. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/ext/nokogiri/include/libxml2/libxml/xmlIO.h +438 -0
  279. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/ext/nokogiri/include/libxml2/libxml/xmlversion.h +347 -0
  280. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/ext/nokogiri/xml_document.c +788 -0
  281. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +457 -0
  282. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
  283. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
  284. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
  285. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/4.0/nokogiri.so +0 -0
  286. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/class_resolver.rb +65 -0
  287. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +155 -0
  288. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +57 -0
  289. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +48 -0
  290. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +6 -0
  291. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +217 -0
  292. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +258 -0
  293. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +54 -0
  294. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.19.3-x86_64-linux-gnu/lib/nokogiri/xslt.rb +138 -0
  295. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/CHANGELOG.md +786 -0
  296. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/config.yml +4739 -0
  297. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/docs/ripper_translation.md +63 -0
  298. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/ext/prism/Makefile +273 -0
  299. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/ext/prism/extension.h +19 -0
  300. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/include/prism/ast.h +8254 -0
  301. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/include/prism/version.h +29 -0
  302. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/lex_compat.rb +911 -0
  303. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/node.rb +19966 -0
  304. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/parse_result.rb +907 -0
  305. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/prism.so +0 -0
  306. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/serialize.rb +2400 -0
  307. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/translation/ripper/filter.rb +53 -0
  308. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/translation/ripper/lexer.rb +135 -0
  309. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/translation/ripper.rb +3520 -0
  310. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism.rb +98 -0
  311. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/prism.gemspec +172 -0
  312. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/rbi/prism/node.rbi +8750 -0
  313. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/rbi/prism.rbi +63 -0
  314. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/sig/prism/node.rbs +4042 -0
  315. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/sig/prism/parse_result.rbs +197 -0
  316. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/sig/prism.rbs +272 -0
  317. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/src/prism.c +22679 -0
  318. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/ext/psych/Makefile +3 -3
  319. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/lib/psych.so +0 -0
  320. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +3 -3
  321. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
  322. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/CHANGELOG.md +265 -0
  323. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/lib/rails/html/sanitizer/version.rb +9 -0
  324. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/lib/rails/html/sanitizer.rb +427 -0
  325. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/test/rails_api_test.rb +101 -0
  326. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/test/sanitizer_test.rb +1284 -0
  327. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/test/scrubbers_test.rb +294 -0
  328. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.7.0/test/test_helper.rb +7 -0
  329. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/LICENSE.txt +20 -0
  330. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/README.md +255 -0
  331. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/config/default.yml +6146 -0
  332. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cache_config.rb +58 -0
  333. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/lsp.rb +19 -0
  334. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli.rb +247 -0
  335. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/comment_config.rb +261 -0
  336. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/config_loader.rb +269 -0
  337. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_version.rb +132 -0
  338. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/alignment_corrector.rb +144 -0
  339. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  340. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +241 -0
  341. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +49 -0
  342. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/case_indentation.rb +221 -0
  343. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/class_structure.rb +388 -0
  344. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
  345. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_argument_indentation.rb +315 -0
  346. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_line_break.rb +94 -0
  347. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
  348. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_indentation.rb +195 -0
  349. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_width.rb +493 -0
  350. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_length.rb +431 -0
  351. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  352. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
  353. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +403 -0
  354. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
  355. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_methods.rb +398 -0
  356. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
  357. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_as_condition.rb +283 -0
  358. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_splat_expansion.rb +216 -0
  359. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/struct_new_override.rb +75 -0
  360. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_json.rb +45 -0
  361. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_or.rb +111 -0
  362. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
  363. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +236 -0
  364. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_method.rb +330 -0
  365. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  366. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/offense.rb +246 -0
  367. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/json_load.rb +69 -0
  368. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/access_modifier_declarations.rb +364 -0
  369. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_delimiters.rb +504 -0
  370. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation.rb +198 -0
  371. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation_method.rb +152 -0
  372. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_class_definition.rb +96 -0
  373. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string_token.rb +272 -0
  374. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/guard_clause.rb +321 -0
  375. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_as_last_array_item.rb +102 -0
  376. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_lookup_method.rb +94 -0
  377. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier.rb +351 -0
  378. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +44 -0
  379. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +166 -0
  380. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda_call.rb +79 -0
  381. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_def_parentheses.rb +178 -0
  382. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_member_existence_check.rb +117 -0
  383. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_then.rb +42 -0
  384. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negative_array_index.rb +220 -0
  385. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
  386. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_condition.rb +345 -0
  387. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/reverse_find.rb +51 -0
  388. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/team.rb +290 -0
  389. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branch.rb +355 -0
  390. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/clang_style_formatter.rb +58 -0
  391. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/formatter_set.rb +114 -0
  392. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/tap_formatter.rb +85 -0
  393. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/diagnostic.rb +173 -0
  394. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/disable_comment_edits.rb +135 -0
  395. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/routes.rb +256 -0
  396. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/runtime.rb +79 -0
  397. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/stdin_runner.rb +76 -0
  398. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/remote_config.rb +114 -0
  399. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/shared_contexts.rb +275 -0
  400. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/support.rb +35 -0
  401. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/server/cache.rb +187 -0
  402. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/target_ruby.rb +308 -0
  403. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/version.rb +160 -0
  404. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop.rb +830 -0
  405. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/CHANGELOG.md +716 -0
  406. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/Gemfile.lock +89 -0
  407. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/base.yml +1981 -0
  408. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.3.yml +7 -0
  409. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.4.yml +7 -0
  410. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/lib/standard/version.rb +3 -0
  411. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/standard.gemspec +32 -0
  412. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/ext/stringio/Makefile +3 -3
  413. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/lib/stringio.so +0 -0
  414. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/CHANGELOG.md +302 -0
  415. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/Gemfile +17 -0
  416. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/README.md +397 -0
  417. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/lib/tailwind_merge/config.rb +2417 -0
  418. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/lib/tailwind_merge/validators.rb +193 -0
  419. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/lib/tailwind_merge/version.rb +5 -0
  420. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.4.0/tailwind_merge.gemspec +42 -0
  421. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/common.rb +922 -0
  422. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/file.rb +100 -0
  423. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/generic.rb +1592 -0
  424. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/http.rb +137 -0
  425. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/rfc2396_parser.rb +547 -0
  426. data/vendor/bundle/ruby/3.4.0/gems/uri-1.1.1/lib/uri/version.rb +6 -0
  427. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/app/controllers/concerns/view_component/preview_actions.rb +105 -0
  428. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/app/controllers/view_components_system_test_controller.rb +25 -0
  429. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/app/views/test_mailer/test_asset_email.html.erb +1 -0
  430. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/app/views/test_mailer/test_url_email.html.erb +1 -0
  431. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/app/views/view_components/preview.html.erb +5 -0
  432. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/docs/CHANGELOG.md +3565 -0
  433. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/abstract_generator.rb +56 -0
  434. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/component/component_generator.rb +80 -0
  435. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/component/templates/component.rb.tt +21 -0
  436. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/erb/erb_generator.rb +34 -0
  437. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/haml/haml_generator.rb +22 -0
  438. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/locale/locale_generator.rb +46 -0
  439. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/preview/preview_generator.rb +39 -0
  440. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/rspec/rspec_generator.rb +31 -0
  441. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/slim/slim_generator.rb +22 -0
  442. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/stimulus/stimulus_generator.rb +44 -0
  443. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/tailwindcss/tailwindcss_generator.rb +11 -0
  444. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/generators/view_component/test_unit/test_unit_generator.rb +20 -0
  445. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/base.rb +749 -0
  446. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/collection.rb +78 -0
  447. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/compiler.rb +204 -0
  448. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/config.rb +191 -0
  449. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/configurable.rb +33 -0
  450. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/deprecation.rb +8 -0
  451. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/engine.rb +128 -0
  452. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/errors.rb +222 -0
  453. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/inline_template.rb +55 -0
  454. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/instrumentation.rb +38 -0
  455. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/preview.rb +109 -0
  456. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/request_details.rb +30 -0
  457. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/slot.rb +118 -0
  458. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/slotable.rb +456 -0
  459. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/system_spec_helpers.rb +11 -0
  460. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/system_test_helpers.rb +26 -0
  461. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/template.rb +210 -0
  462. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/test_helpers.rb +316 -0
  463. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/translatable.rb +149 -0
  464. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component/version.rb +14 -0
  465. data/vendor/bundle/ruby/3.4.0/gems/view_component-4.8.0/lib/view_component.rb +29 -0
  466. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/ext/websocket-driver/Makefile +3 -3
  467. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
  468. data/vendor/bundle/ruby/3.4.0/specifications/benchmark-0.5.0.gemspec +23 -0
  469. data/vendor/bundle/ruby/3.4.0/specifications/bigdecimal-4.1.2.gemspec +25 -0
  470. data/vendor/bundle/ruby/3.4.0/specifications/concurrent-ruby-1.3.6.gemspec +24 -0
  471. data/vendor/bundle/ruby/3.4.0/specifications/connection_pool-3.0.2.gemspec +28 -0
  472. data/vendor/bundle/ruby/3.4.0/specifications/i18n-1.14.8.gemspec +26 -0
  473. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.1.gemspec +0 -0
  474. data/vendor/bundle/ruby/3.4.0/specifications/loofah-2.25.1.gemspec +27 -0
  475. data/vendor/bundle/ruby/3.4.0/specifications/minitest-6.0.6.gemspec +35 -0
  476. data/vendor/bundle/ruby/3.4.0/specifications/nokogiri-1.19.3-x86_64-linux-gnu.gemspec +31 -0
  477. data/vendor/bundle/ruby/3.4.0/specifications/prism-1.9.0.gemspec +24 -0
  478. data/vendor/bundle/ruby/3.4.0/specifications/rails-html-sanitizer-1.7.0.gemspec +27 -0
  479. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.84.2.gemspec +39 -0
  480. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.54.0.gemspec +31 -0
  481. data/vendor/bundle/ruby/3.4.0/specifications/tailwind_merge-1.4.0.gemspec +28 -0
  482. data/vendor/bundle/ruby/3.4.0/specifications/uri-1.1.1.gemspec +23 -0
  483. data/vendor/bundle/ruby/3.4.0/specifications/view_component-4.8.0.gemspec +26 -0
  484. metadata +1898 -1822
  485. data/app/components/lightning_ui_kit/sidebar_component.html.erb +0 -1
  486. data/app/components/lightning_ui_kit/sidebar_component.rb +0 -2
  487. data/vendor/bundle/ruby/3.4.0/cache/benchmark-0.4.1.gem +0 -0
  488. data/vendor/bundle/ruby/3.4.0/cache/bigdecimal-3.2.2.gem +0 -0
  489. data/vendor/bundle/ruby/3.4.0/cache/concurrent-ruby-1.3.5.gem +0 -0
  490. data/vendor/bundle/ruby/3.4.0/cache/connection_pool-2.5.3.gem +0 -0
  491. data/vendor/bundle/ruby/3.4.0/cache/i18n-1.14.7.gem +0 -0
  492. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.0.gem +0 -0
  493. data/vendor/bundle/ruby/3.4.0/cache/loofah-2.24.1.gem +0 -0
  494. data/vendor/bundle/ruby/3.4.0/cache/method_source-1.1.0.gem +0 -0
  495. data/vendor/bundle/ruby/3.4.0/cache/minitest-5.25.5.gem +0 -0
  496. data/vendor/bundle/ruby/3.4.0/cache/nokogiri-1.18.9-x86_64-linux-gnu.gem +0 -0
  497. data/vendor/bundle/ruby/3.4.0/cache/prism-1.8.0.gem +0 -0
  498. data/vendor/bundle/ruby/3.4.0/cache/rails-html-sanitizer-1.6.2.gem +0 -0
  499. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.82.1.gem +0 -0
  500. data/vendor/bundle/ruby/3.4.0/cache/standard-1.53.0.gem +0 -0
  501. data/vendor/bundle/ruby/3.4.0/cache/tailwind_merge-1.3.1.gem +0 -0
  502. data/vendor/bundle/ruby/3.4.0/cache/uri-1.0.3.gem +0 -0
  503. data/vendor/bundle/ruby/3.4.0/cache/view_component-3.23.2.gem +0 -0
  504. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-3.2.2/bigdecimal.so +0 -0
  505. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-3.2.2/gem_make.out +0 -44
  506. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-3.2.2/mkmf.log +0 -643
  507. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/gem_make.out +0 -25
  508. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/generator.so +0 -0
  509. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/parser.so +0 -0
  510. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/mkmf.log +0 -165
  511. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.8.0/gem_make.out +0 -44
  512. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.8.0/mkmf.log +0 -74
  513. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.8.0/prism/prism.so +0 -0
  514. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.4.1/lib/benchmark.rb +0 -595
  515. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/bigdecimal.gemspec +0 -57
  516. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/Makefile +0 -274
  517. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/bigdecimal.c +0 -7761
  518. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/bigdecimal.h +0 -313
  519. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/bits.h +0 -141
  520. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/extconf.rb +0 -64
  521. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/missing/dtoa.c +0 -3462
  522. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/ext/bigdecimal/missing.h +0 -196
  523. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal/jacobian.rb +0 -90
  524. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal/ludcmp.rb +0 -89
  525. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal/math.rb +0 -231
  526. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal/newton.rb +0 -80
  527. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal/util.rb +0 -185
  528. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal.rb +0 -5
  529. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/lib/bigdecimal.so +0 -0
  530. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/sample/linear.rb +0 -74
  531. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/sample/nlsolve.rb +0 -40
  532. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.2.2/sample/pi.rb +0 -21
  533. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/CHANGELOG.md +0 -603
  534. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/README.md +0 -407
  535. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +0 -28
  536. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  537. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +0 -224
  538. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +0 -100
  539. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +0 -145
  540. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +0 -21
  541. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +0 -373
  542. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executor/timer_set.rb +0 -176
  543. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/executors.rb +0 -20
  544. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/mvar.rb +0 -242
  545. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/promise.rb +0 -580
  546. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/timer_task.rb +0 -361
  547. data/vendor/bundle/ruby/3.4.0/gems/concurrent-ruby-1.3.5/lib/concurrent-ruby/concurrent/version.rb +0 -3
  548. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/Changes.md +0 -185
  549. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/README.md +0 -167
  550. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/connection_pool.gemspec +0 -24
  551. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/lib/connection_pool/timed_stack.rb +0 -221
  552. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/lib/connection_pool/version.rb +0 -3
  553. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/lib/connection_pool/wrapper.rb +0 -56
  554. data/vendor/bundle/ruby/3.4.0/gems/connection_pool-2.5.3/lib/connection_pool.rb +0 -184
  555. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/backend/interpolation_compiler.rb +0 -121
  556. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/exceptions.rb +0 -157
  557. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/middleware.rb +0 -17
  558. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/tests/interpolation.rb +0 -185
  559. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/version.rb +0 -5
  560. data/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n.rb +0 -477
  561. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/CHANGES.md +0 -728
  562. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/fbuffer/fbuffer.h +0 -247
  563. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/Makefile +0 -273
  564. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/generator.c +0 -2202
  565. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/json.h +0 -97
  566. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/Makefile +0 -273
  567. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/parser.c +0 -1679
  568. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/simd/simd.h +0 -191
  569. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/vendor/fpconv.c +0 -480
  570. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/generator.so +0 -0
  571. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/parser.so +0 -0
  572. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/version.rb +0 -5
  573. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json.rb +0 -642
  574. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.24.1/CHANGELOG.md +0 -598
  575. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.24.1/SECURITY.md +0 -18
  576. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.24.1/lib/loofah/html5/scrub.rb +0 -230
  577. data/vendor/bundle/ruby/3.4.0/gems/loofah-2.24.1/lib/loofah/version.rb +0 -6
  578. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/CHANGELOG.md +0 -15
  579. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/Gemfile +0 -6
  580. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/LICENSE +0 -22
  581. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/README.markdown +0 -101
  582. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/Rakefile +0 -81
  583. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/lib/method_source/code_helpers.rb +0 -154
  584. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/lib/method_source/source_location.rb +0 -138
  585. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/lib/method_source/version.rb +0 -3
  586. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/lib/method_source.rb +0 -177
  587. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/method_source.gemspec +0 -19
  588. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/spec/method_source/code_helpers_spec.rb +0 -43
  589. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/spec/method_source_spec.rb +0 -157
  590. data/vendor/bundle/ruby/3.4.0/gems/method_source-1.1.0/spec/spec_helper.rb +0 -107
  591. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/History.rdoc +0 -1690
  592. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/Manifest.txt +0 -32
  593. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/README.rdoc +0 -842
  594. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/Rakefile +0 -81
  595. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/design_rationale.rb +0 -52
  596. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/hoe/minitest.rb +0 -29
  597. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/assertions.rb +0 -855
  598. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/autorun.rb +0 -6
  599. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/benchmark.rb +0 -452
  600. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/hell.rb +0 -11
  601. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/manual_plugins.rb +0 -16
  602. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/mock.rb +0 -347
  603. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/parallel.rb +0 -70
  604. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/pride.rb +0 -4
  605. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/pride_plugin.rb +0 -135
  606. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/spec.rb +0 -350
  607. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/test.rb +0 -237
  608. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/test_task.rb +0 -307
  609. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/unit.rb +0 -42
  610. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest.rb +0 -1235
  611. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/metametameta.rb +0 -150
  612. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_assertions.rb +0 -1720
  613. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_benchmark.rb +0 -137
  614. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_mock.rb +0 -1218
  615. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_reporter.rb +0 -436
  616. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_spec.rb +0 -1163
  617. data/vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/test/minitest/test_minitest_test.rb +0 -1374
  618. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/Gemfile +0 -40
  619. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/LICENSE-DEPENDENCIES.md +0 -2224
  620. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/README.md +0 -293
  621. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/dependencies.yml +0 -42
  622. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/ext/nokogiri/extconf.rb +0 -1165
  623. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/ext/nokogiri/include/libxml2/libxml/xmlIO.h +0 -438
  624. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/ext/nokogiri/include/libxml2/libxml/xmlversion.h +0 -347
  625. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/ext/nokogiri/xml_document.c +0 -784
  626. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +0 -421
  627. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/3.1/nokogiri.so +0 -0
  628. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
  629. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
  630. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
  631. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/class_resolver.rb +0 -67
  632. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +0 -155
  633. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +0 -57
  634. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/jruby/nokogiri_jars.rb +0 -43
  635. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +0 -6
  636. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +0 -213
  637. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +0 -258
  638. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +0 -49
  639. data/vendor/bundle/ruby/3.4.0/gems/nokogiri-1.18.9-x86_64-linux-gnu/lib/nokogiri/xslt.rb +0 -129
  640. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/CHANGELOG.md +0 -772
  641. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/config.yml +0 -4739
  642. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/docs/ripper_translation.md +0 -72
  643. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/ext/prism/Makefile +0 -273
  644. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/ext/prism/extension.h +0 -19
  645. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/include/prism/ast.h +0 -8254
  646. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/include/prism/version.h +0 -29
  647. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/lex_compat.rb +0 -870
  648. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/lex_ripper.rb +0 -64
  649. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/node.rb +0 -19958
  650. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/parse_result.rb +0 -898
  651. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/prism.so +0 -0
  652. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/serialize.rb +0 -2400
  653. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/translation/ripper/lexer.rb +0 -46
  654. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism/translation/ripper.rb +0 -3497
  655. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/lib/prism.rb +0 -111
  656. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/prism.gemspec +0 -172
  657. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/rbi/prism/node.rbi +0 -8747
  658. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/rbi/prism.rbi +0 -66
  659. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/sig/prism/node.rbs +0 -4039
  660. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/sig/prism/parse_result.rbs +0 -196
  661. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/sig/prism.rbs +0 -258
  662. data/vendor/bundle/ruby/3.4.0/gems/prism-1.8.0/src/prism.c +0 -22679
  663. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/CHANGELOG.md +0 -255
  664. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/lib/rails/html/sanitizer/version.rb +0 -9
  665. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/lib/rails/html/sanitizer.rb +0 -423
  666. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/test/rails_api_test.rb +0 -88
  667. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/test/sanitizer_test.rb +0 -1288
  668. data/vendor/bundle/ruby/3.4.0/gems/rails-html-sanitizer-1.6.2/test/scrubbers_test.rb +0 -295
  669. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/LICENSE.txt +0 -20
  670. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/README.md +0 -255
  671. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/config/default.yml +0 -6099
  672. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cache_config.rb +0 -29
  673. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli/command/lsp.rb +0 -19
  674. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli.rb +0 -228
  675. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/comment_config.rb +0 -261
  676. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/config_loader.rb +0 -273
  677. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/bundler/gem_version.rb +0 -132
  678. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -126
  679. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -111
  680. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -241
  681. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -49
  682. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/case_indentation.rb +0 -219
  683. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/class_structure.rb +0 -381
  684. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -101
  685. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
  686. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -68
  687. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -68
  688. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -162
  689. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/indentation_width.rb +0 -400
  690. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/line_length.rb +0 -428
  691. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -115
  692. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -115
  693. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -267
  694. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
  695. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -346
  696. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
  697. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/literal_as_condition.rb +0 -283
  698. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
  699. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/struct_new_override.rb +0 -59
  700. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/to_json.rb +0 -49
  701. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/useless_or.rb +0 -111
  702. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
  703. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -236
  704. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_method.rb +0 -319
  705. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
  706. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/offense.rb +0 -238
  707. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/security/json_load.rb +0 -69
  708. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -365
  709. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/block_delimiters.rb +0 -503
  710. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation.rb +0 -198
  711. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation_method.rb +0 -152
  712. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/format_string_token.rb +0 -255
  713. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/guard_clause.rb +0 -308
  714. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -100
  715. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -322
  716. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -44
  717. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -163
  718. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/lambda_call.rb +0 -79
  719. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
  720. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -74
  721. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/multiline_if_then.rb +0 -44
  722. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -74
  723. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/redundant_condition.rb +0 -342
  724. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/team.rb +0 -290
  725. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/variable_force/branch.rb +0 -331
  726. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/clang_style_formatter.rb +0 -55
  727. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/formatter_set.rb +0 -114
  728. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/tap_formatter.rb +0 -82
  729. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/diagnostic.rb +0 -185
  730. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/routes.rb +0 -256
  731. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/runtime.rb +0 -69
  732. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/stdin_runner.rb +0 -69
  733. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/remote_config.rb +0 -111
  734. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/shared_contexts.rb +0 -271
  735. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/support.rb +0 -34
  736. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/server/cache.rb +0 -208
  737. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/target_ruby.rb +0 -306
  738. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/version.rb +0 -160
  739. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop.rb +0 -826
  740. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/CHANGELOG.md +0 -712
  741. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/Gemfile.lock +0 -89
  742. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/base.yml +0 -1969
  743. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/ruby-3.3.yml +0 -7
  744. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/lib/standard/version.rb +0 -3
  745. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/standard.gemspec +0 -32
  746. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/CHANGELOG.md +0 -281
  747. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/Gemfile +0 -17
  748. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/README.md +0 -397
  749. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/lib/tailwind_merge/config.rb +0 -2282
  750. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/lib/tailwind_merge/validators.rb +0 -177
  751. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/lib/tailwind_merge/version.rb +0 -5
  752. data/vendor/bundle/ruby/3.4.0/gems/tailwind_merge-1.3.1/tailwind_merge.gemspec +0 -42
  753. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/common.rb +0 -880
  754. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/file.rb +0 -100
  755. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/generic.rb +0 -1579
  756. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/http.rb +0 -125
  757. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/rfc2396_parser.rb +0 -546
  758. data/vendor/bundle/ruby/3.4.0/gems/uri-1.0.3/lib/uri/version.rb +0 -6
  759. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/assets/vendor/prism.css +0 -4
  760. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/assets/vendor/prism.min.js +0 -12
  761. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/controllers/concerns/view_component/preview_actions.rb +0 -108
  762. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/controllers/view_components_system_test_controller.rb +0 -30
  763. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/helpers/preview_helper.rb +0 -85
  764. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/views/view_components/_preview_source.html.erb +0 -17
  765. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/app/views/view_components/preview.html.erb +0 -13
  766. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/docs/CHANGELOG.md +0 -3105
  767. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/abstract_generator.rb +0 -56
  768. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/component/component_generator.rb +0 -67
  769. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/component/templates/component.rb.tt +0 -16
  770. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/erb/component_generator.rb +0 -33
  771. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/haml/component_generator.rb +0 -22
  772. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/locale/component_generator.rb +0 -46
  773. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/preview/component_generator.rb +0 -39
  774. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/rspec/component_generator.rb +0 -31
  775. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/slim/component_generator.rb +0 -22
  776. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/stimulus/component_generator.rb +0 -44
  777. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/tailwindcss/component_generator.rb +0 -11
  778. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/rails/generators/test_unit/component_generator.rb +0 -20
  779. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/base.rb +0 -712
  780. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/capture_compatibility.rb +0 -44
  781. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/collection.rb +0 -83
  782. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/compiler.rb +0 -229
  783. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/component_error.rb +0 -6
  784. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/config.rb +0 -225
  785. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/configurable.rb +0 -17
  786. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/deprecation.rb +0 -8
  787. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/engine.rb +0 -192
  788. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/errors.rb +0 -240
  789. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/inline_template.rb +0 -55
  790. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/instrumentation.rb +0 -31
  791. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/preview.rb +0 -116
  792. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/rails/tasks/view_component.rake +0 -20
  793. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/render_component_helper.rb +0 -10
  794. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/render_component_to_string_helper.rb +0 -9
  795. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/render_monkey_patch.rb +0 -13
  796. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/render_to_string_monkey_patch.rb +0 -13
  797. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/rendering_component_helper.rb +0 -9
  798. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/rendering_monkey_patch.rb +0 -13
  799. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/slot.rb +0 -125
  800. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/slotable.rb +0 -444
  801. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/slotable_default.rb +0 -20
  802. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/system_test_helpers.rb +0 -27
  803. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/template.rb +0 -134
  804. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/test_helpers.rb +0 -301
  805. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/translatable.rb +0 -148
  806. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/use_helpers.rb +0 -42
  807. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component/version.rb +0 -14
  808. data/vendor/bundle/ruby/3.4.0/gems/view_component-3.23.2/lib/view_component.rb +0 -26
  809. data/vendor/bundle/ruby/3.4.0/specifications/benchmark-0.4.1.gemspec +0 -23
  810. data/vendor/bundle/ruby/3.4.0/specifications/bigdecimal-3.2.2.gemspec +0 -25
  811. data/vendor/bundle/ruby/3.4.0/specifications/concurrent-ruby-1.3.5.gemspec +0 -24
  812. data/vendor/bundle/ruby/3.4.0/specifications/connection_pool-2.5.3.gemspec +0 -28
  813. data/vendor/bundle/ruby/3.4.0/specifications/i18n-1.14.7.gemspec +0 -26
  814. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.0.gemspec +0 -0
  815. data/vendor/bundle/ruby/3.4.0/specifications/loofah-2.24.1.gemspec +0 -27
  816. data/vendor/bundle/ruby/3.4.0/specifications/method_source-1.1.0.gemspec +0 -21
  817. data/vendor/bundle/ruby/3.4.0/specifications/minitest-5.25.5.gemspec +0 -31
  818. data/vendor/bundle/ruby/3.4.0/specifications/nokogiri-1.18.9-x86_64-linux-gnu.gemspec +0 -31
  819. data/vendor/bundle/ruby/3.4.0/specifications/prism-1.8.0.gemspec +0 -24
  820. data/vendor/bundle/ruby/3.4.0/specifications/rails-html-sanitizer-1.6.2.gemspec +0 -27
  821. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.82.1.gemspec +0 -39
  822. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.53.0.gemspec +0 -31
  823. data/vendor/bundle/ruby/3.4.0/specifications/tailwind_merge-1.3.1.gemspec +0 -28
  824. data/vendor/bundle/ruby/3.4.0/specifications/uri-1.0.3.gemspec +0 -23
  825. data/vendor/bundle/ruby/3.4.0/specifications/view_component-3.23.2.gemspec +0 -62
  826. /data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/{bigdecimal-3.2.2 → bigdecimal-4.1.2}/gem.build_complete +0 -0
  827. /data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/{json-2.18.0 → json-2.18.1}/gem.build_complete +0 -0
  828. /data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/{prism-1.8.0 → prism-1.9.0}/gem.build_complete +0 -0
  829. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/BSDL +0 -0
  830. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/COPYING +0 -0
  831. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/Gemfile +0 -0
  832. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/README.md +0 -0
  833. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/Rakefile +0 -0
  834. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/benchmark.gemspec +0 -0
  835. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/bin/console +0 -0
  836. /data/vendor/bundle/ruby/3.4.0/gems/{benchmark-0.4.1 → benchmark-0.5.0}/bin/setup +0 -0
  837. /data/vendor/bundle/ruby/3.4.0/gems/{bigdecimal-3.2.2 → bigdecimal-4.1.2}/LICENSE +0 -0
  838. /data/vendor/bundle/ruby/3.4.0/gems/{bigdecimal-3.2.2 → bigdecimal-4.1.2}/ext/bigdecimal/feature.h +0 -0
  839. /data/vendor/bundle/ruby/3.4.0/gems/{bigdecimal-3.2.2 → bigdecimal-4.1.2}/ext/bigdecimal/missing.c +0 -0
  840. /data/vendor/bundle/ruby/3.4.0/gems/{bigdecimal-3.2.2 → bigdecimal-4.1.2}/ext/bigdecimal/static_assert.h +0 -0
  841. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/Gemfile +0 -0
  842. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/LICENSE.txt +0 -0
  843. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/Rakefile +0 -0
  844. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/ConcurrentRubyService.java +0 -0
  845. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +0 -0
  846. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +0 -0
  847. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +0 -0
  848. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +0 -0
  849. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +0 -0
  850. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +0 -0
  851. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +0 -0
  852. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +0 -0
  853. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +0 -0
  854. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +0 -0
  855. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +0 -0
  856. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +0 -0
  857. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +0 -0
  858. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +0 -0
  859. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/agent.rb +0 -0
  860. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/array.rb +0 -0
  861. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/async.rb +0 -0
  862. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atom.rb +0 -0
  863. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +0 -0
  864. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +0 -0
  865. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +0 -0
  866. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +0 -0
  867. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +0 -0
  868. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +0 -0
  869. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/event.rb +0 -0
  870. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/fiber_local_var.rb +0 -0
  871. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +0 -0
  872. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/locals.rb +0 -0
  873. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +0 -0
  874. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +0 -0
  875. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +0 -0
  876. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +0 -0
  877. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +0 -0
  878. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +0 -0
  879. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +0 -0
  880. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +0 -0
  881. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic_reference/atomic_direct_update.rb +0 -0
  882. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +0 -0
  883. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +0 -0
  884. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/atomics.rb +0 -0
  885. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +0 -0
  886. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +0 -0
  887. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +0 -0
  888. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +0 -0
  889. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +0 -0
  890. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +0 -0
  891. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +0 -0
  892. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +0 -0
  893. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +0 -0
  894. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +0 -0
  895. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/concern/deprecation.rb +0 -0
  896. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +0 -0
  897. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/concern/logging.rb +0 -0
  898. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/concern/obligation.rb +0 -0
  899. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/concern/observable.rb +0 -0
  900. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/configuration.rb +0 -0
  901. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/constants.rb +0 -0
  902. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/dataflow.rb +0 -0
  903. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/delay.rb +0 -0
  904. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/errors.rb +0 -0
  905. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/exchanger.rb +0 -0
  906. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +0 -0
  907. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +0 -0
  908. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/executor_service.rb +0 -0
  909. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +0 -0
  910. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +0 -0
  911. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +0 -0
  912. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +0 -0
  913. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +0 -0
  914. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +0 -0
  915. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +0 -0
  916. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +0 -0
  917. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +0 -0
  918. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +0 -0
  919. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +0 -0
  920. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/future.rb +0 -0
  921. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/hash.rb +0 -0
  922. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/immutable_struct.rb +0 -0
  923. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/ivar.rb +0 -0
  924. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/map.rb +0 -0
  925. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/maybe.rb +0 -0
  926. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/mutable_struct.rb +0 -0
  927. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/options.rb +0 -0
  928. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/promises.rb +0 -0
  929. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/re_include.rb +0 -0
  930. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/scheduled_task.rb +0 -0
  931. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/set.rb +0 -0
  932. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/settable_struct.rb +0 -0
  933. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +0 -0
  934. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +0 -0
  935. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +0 -0
  936. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/condition.rb +0 -0
  937. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/full_memory_barrier.rb +0 -0
  938. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +0 -0
  939. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/lock.rb +0 -0
  940. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +0 -0
  941. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +0 -0
  942. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/object.rb +0 -0
  943. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/safe_initialization.rb +0 -0
  944. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +0 -0
  945. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/synchronization.rb +0 -0
  946. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +0 -0
  947. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +0 -0
  948. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +0 -0
  949. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +0 -0
  950. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +0 -0
  951. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +0 -0
  952. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +0 -0
  953. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/thread_safe/util.rb +0 -0
  954. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/tuple.rb +0 -0
  955. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/tvar.rb +0 -0
  956. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/utility/engine.rb +0 -0
  957. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +0 -0
  958. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +0 -0
  959. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/utility/native_integer.rb +0 -0
  960. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +0 -0
  961. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent-ruby.rb +0 -0
  962. /data/vendor/bundle/ruby/3.4.0/gems/{concurrent-ruby-1.3.5 → concurrent-ruby-1.3.6}/lib/concurrent-ruby/concurrent.rb +0 -0
  963. /data/vendor/bundle/ruby/3.4.0/gems/{connection_pool-2.5.3 → connection_pool-3.0.2}/LICENSE +0 -0
  964. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/MIT-LICENSE +0 -0
  965. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/README.md +0 -0
  966. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/base.rb +0 -0
  967. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/cache.rb +0 -0
  968. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/cache_file.rb +0 -0
  969. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/cascade.rb +0 -0
  970. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/chain.rb +0 -0
  971. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/fallbacks.rb +0 -0
  972. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/flatten.rb +0 -0
  973. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/gettext.rb +0 -0
  974. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/key_value.rb +0 -0
  975. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/lazy_loadable.rb +0 -0
  976. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/memoize.rb +0 -0
  977. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/metadata.rb +0 -0
  978. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/pluralization.rb +0 -0
  979. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/simple.rb +0 -0
  980. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend/transliterator.rb +0 -0
  981. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/backend.rb +0 -0
  982. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/config.rb +0 -0
  983. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/gettext/helpers.rb +0 -0
  984. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/gettext/po_parser.rb +0 -0
  985. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/gettext.rb +0 -0
  986. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/interpolate/ruby.rb +0 -0
  987. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale/fallbacks.rb +0 -0
  988. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale/tag/parents.rb +0 -0
  989. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale/tag/rfc4646.rb +0 -0
  990. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale/tag/simple.rb +0 -0
  991. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale/tag.rb +0 -0
  992. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/locale.rb +0 -0
  993. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/basics.rb +0 -0
  994. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/defaults.rb +0 -0
  995. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/link.rb +0 -0
  996. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/localization/date.rb +0 -0
  997. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/localization/date_time.rb +0 -0
  998. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/localization/procs.rb +0 -0
  999. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/localization/time.rb +0 -0
  1000. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/localization.rb +0 -0
  1001. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/lookup.rb +0 -0
  1002. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/pluralization.rb +0 -0
  1003. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests/procs.rb +0 -0
  1004. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/tests.rb +0 -0
  1005. /data/vendor/bundle/ruby/3.4.0/gems/{i18n-1.14.7 → i18n-1.14.8}/lib/i18n/utils.rb +0 -0
  1006. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/BSDL +0 -0
  1007. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/COPYING +0 -0
  1008. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/LEGAL +0 -0
  1009. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/README.md +0 -0
  1010. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/generator/extconf.rb +0 -0
  1011. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/parser/extconf.rb +0 -0
  1012. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/simd/conf.rb +0 -0
  1013. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
  1014. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/ryu.h +0 -0
  1015. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/json.gemspec +0 -0
  1016. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/bigdecimal.rb +0 -0
  1017. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/complex.rb +0 -0
  1018. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/core.rb +0 -0
  1019. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date.rb +0 -0
  1020. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date_time.rb +0 -0
  1021. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/exception.rb +0 -0
  1022. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/ostruct.rb +0 -0
  1023. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/range.rb +0 -0
  1024. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/rational.rb +0 -0
  1025. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/regexp.rb +0 -0
  1026. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/set.rb +0 -0
  1027. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/string.rb +0 -0
  1028. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/struct.rb +0 -0
  1029. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/symbol.rb +0 -0
  1030. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/time.rb +0 -0
  1031. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/common.rb +0 -0
  1032. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext/generator/state.rb +0 -0
  1033. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext.rb +0 -0
  1034. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/generic_object.rb +0 -0
  1035. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/truffle_ruby/generator.rb +0 -0
  1036. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/MIT-LICENSE.txt +0 -0
  1037. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/README.md +0 -0
  1038. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/concerns.rb +0 -0
  1039. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/elements.rb +0 -0
  1040. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/helpers.rb +0 -0
  1041. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html4/document.rb +0 -0
  1042. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html4/document_fragment.rb +0 -0
  1043. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html5/document.rb +0 -0
  1044. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html5/document_fragment.rb +0 -0
  1045. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html5/libxml2_workarounds.rb +0 -0
  1046. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/html5/safelist.rb +0 -0
  1047. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/metahelpers.rb +0 -0
  1048. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/scrubber.rb +0 -0
  1049. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/scrubbers.rb +0 -0
  1050. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/xml/document.rb +0 -0
  1051. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah/xml/document_fragment.rb +0 -0
  1052. /data/vendor/bundle/ruby/3.4.0/gems/{loofah-2.24.1 → loofah-2.25.1}/lib/loofah.rb +0 -0
  1053. /data/vendor/bundle/ruby/3.4.0/gems/{minitest-5.25.5 → minitest-6.0.6}/lib/minitest/compress.rb +0 -0
  1054. /data/vendor/bundle/ruby/3.4.0/gems/{minitest-5.25.5 → minitest-6.0.6}/lib/minitest/error_on_warning.rb +0 -0
  1055. /data/vendor/bundle/ruby/3.4.0/gems/{minitest-5.25.5 → minitest-6.0.6}/lib/minitest/expectations.rb +0 -0
  1056. /data/vendor/bundle/ruby/3.4.0/gems/{minitest-5.25.5 → minitest-6.0.6}/test/minitest/test_minitest_test_task.rb +0 -0
  1057. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/LICENSE.md +0 -0
  1058. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/bin/nokogiri +0 -0
  1059. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/depend +0 -0
  1060. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/gumbo.c +0 -0
  1061. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_document.c +0 -0
  1062. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_element_description.c +0 -0
  1063. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_entity_lookup.c +0 -0
  1064. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser.c +0 -0
  1065. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser_context.c +0 -0
  1066. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/html4_sax_push_parser.c +0 -0
  1067. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exslt.h +0 -0
  1068. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltconfig.h +0 -0
  1069. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltexports.h +0 -0
  1070. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +0 -0
  1071. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +0 -0
  1072. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX.h +0 -0
  1073. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX2.h +0 -0
  1074. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/c14n.h +0 -0
  1075. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/catalog.h +0 -0
  1076. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/chvalid.h +0 -0
  1077. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/debugXML.h +0 -0
  1078. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/dict.h +0 -0
  1079. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/encoding.h +0 -0
  1080. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/entities.h +0 -0
  1081. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/globals.h +0 -0
  1082. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/hash.h +0 -0
  1083. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/list.h +0 -0
  1084. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanoftp.h +0 -0
  1085. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanohttp.h +0 -0
  1086. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parser.h +0 -0
  1087. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parserInternals.h +0 -0
  1088. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/pattern.h +0 -0
  1089. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/relaxng.h +0 -0
  1090. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +0 -0
  1091. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schematron.h +0 -0
  1092. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/threads.h +0 -0
  1093. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/tree.h +0 -0
  1094. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/uri.h +0 -0
  1095. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/valid.h +0 -0
  1096. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xinclude.h +0 -0
  1097. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xlink.h +0 -0
  1098. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +0 -0
  1099. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlerror.h +0 -0
  1100. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlexports.h +0 -0
  1101. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +0 -0
  1102. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +0 -0
  1103. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlreader.h +0 -0
  1104. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +0 -0
  1105. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlsave.h +0 -0
  1106. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +0 -0
  1107. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +0 -0
  1108. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlstring.h +0 -0
  1109. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +0 -0
  1110. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +0 -0
  1111. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpath.h +0 -0
  1112. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +0 -0
  1113. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpointer.h +0 -0
  1114. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/attributes.h +0 -0
  1115. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/documents.h +0 -0
  1116. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extensions.h +0 -0
  1117. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extra.h +0 -0
  1118. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/functions.h +0 -0
  1119. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/imports.h +0 -0
  1120. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/keys.h +0 -0
  1121. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/namespaces.h +0 -0
  1122. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/numbersInternals.h +0 -0
  1123. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/pattern.h +0 -0
  1124. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/preproc.h +0 -0
  1125. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/security.h +0 -0
  1126. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/templates.h +0 -0
  1127. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/transform.h +0 -0
  1128. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/variables.h +0 -0
  1129. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xslt.h +0 -0
  1130. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltInternals.h +0 -0
  1131. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltconfig.h +0 -0
  1132. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltexports.h +0 -0
  1133. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltlocale.h +0 -0
  1134. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltutils.h +0 -0
  1135. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/libxml2_polyfill.c +0 -0
  1136. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/nokogiri.c +0 -0
  1137. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/nokogiri.h +0 -0
  1138. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/test_global_handlers.c +0 -0
  1139. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_attr.c +0 -0
  1140. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_attribute_decl.c +0 -0
  1141. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_cdata.c +0 -0
  1142. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_comment.c +0 -0
  1143. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_document_fragment.c +0 -0
  1144. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_dtd.c +0 -0
  1145. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_element_content.c +0 -0
  1146. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_element_decl.c +0 -0
  1147. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_encoding_handler.c +0 -0
  1148. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_entity_decl.c +0 -0
  1149. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_entity_reference.c +0 -0
  1150. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_namespace.c +0 -0
  1151. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_node.c +0 -0
  1152. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_node_set.c +0 -0
  1153. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_processing_instruction.c +0 -0
  1154. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_reader.c +0 -0
  1155. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_relax_ng.c +0 -0
  1156. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser.c +0 -0
  1157. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser_context.c +0 -0
  1158. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_sax_push_parser.c +0 -0
  1159. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_schema.c +0 -0
  1160. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_syntax_error.c +0 -0
  1161. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_text.c +0 -0
  1162. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/ext/nokogiri/xml_xpath_context.c +0 -0
  1163. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/gumbo-parser/CHANGES.md +0 -0
  1164. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/gumbo-parser/Makefile +0 -0
  1165. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/gumbo-parser/THANKS +0 -0
  1166. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/node.rb +0 -0
  1167. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/parser.rb +0 -0
  1168. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/parser.y +0 -0
  1169. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/parser_extras.rb +0 -0
  1170. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/selector_cache.rb +0 -0
  1171. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/syntax_error.rb +0 -0
  1172. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css/xpath_visitor.rb +0 -0
  1173. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/css.rb +0 -0
  1174. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/decorators/slop.rb +0 -0
  1175. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/encoding_handler.rb +0 -0
  1176. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/extension.rb +0 -0
  1177. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/gumbo.rb +0 -0
  1178. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html.rb +0 -0
  1179. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/builder.rb +0 -0
  1180. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/document.rb +0 -0
  1181. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/document_fragment.rb +0 -0
  1182. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/element_description.rb +0 -0
  1183. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/element_description_defaults.rb +0 -0
  1184. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/encoding_reader.rb +0 -0
  1185. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/entity_lookup.rb +0 -0
  1186. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser.rb +0 -0
  1187. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser_context.rb +0 -0
  1188. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4/sax/push_parser.rb +0 -0
  1189. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html4.rb +0 -0
  1190. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html5/builder.rb +0 -0
  1191. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html5/document.rb +0 -0
  1192. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html5/document_fragment.rb +0 -0
  1193. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html5/node.rb +0 -0
  1194. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/html5.rb +0 -0
  1195. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/jruby/dependencies.rb +0 -0
  1196. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/syntax_error.rb +0 -0
  1197. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/version/info.rb +0 -0
  1198. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/version.rb +0 -0
  1199. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/attr.rb +0 -0
  1200. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/attribute_decl.rb +0 -0
  1201. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/builder.rb +0 -0
  1202. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/cdata.rb +0 -0
  1203. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/character_data.rb +0 -0
  1204. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/document.rb +0 -0
  1205. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/document_fragment.rb +0 -0
  1206. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/dtd.rb +0 -0
  1207. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/element_content.rb +0 -0
  1208. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/element_decl.rb +0 -0
  1209. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/entity_decl.rb +0 -0
  1210. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/entity_reference.rb +0 -0
  1211. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/namespace.rb +0 -0
  1212. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/node/save_options.rb +0 -0
  1213. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/node.rb +0 -0
  1214. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/node_set.rb +0 -0
  1215. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/notation.rb +0 -0
  1216. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/pp/character_data.rb +0 -0
  1217. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/pp/node.rb +0 -0
  1218. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/pp.rb +0 -0
  1219. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/processing_instruction.rb +0 -0
  1220. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/reader.rb +0 -0
  1221. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/relax_ng.rb +0 -0
  1222. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser.rb +0 -0
  1223. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser_context.rb +0 -0
  1224. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/sax/push_parser.rb +0 -0
  1225. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/sax.rb +0 -0
  1226. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/schema.rb +0 -0
  1227. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/searchable.rb +0 -0
  1228. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/syntax_error.rb +0 -0
  1229. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/text.rb +0 -0
  1230. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/xpath/syntax_error.rb +0 -0
  1231. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/xpath.rb +0 -0
  1232. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml/xpath_context.rb +0 -0
  1233. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri/xml.rb +0 -0
  1234. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/nokogiri.rb +0 -0
  1235. /data/vendor/bundle/ruby/3.4.0/gems/{nokogiri-1.18.9-x86_64-linux-gnu → nokogiri-1.19.3-x86_64-linux-gnu}/lib/xsd/xmlparser/nokogiri.rb +0 -0
  1236. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/BSDmakefile +0 -0
  1237. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/CODE_OF_CONDUCT.md +0 -0
  1238. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/CONTRIBUTING.md +0 -0
  1239. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/LICENSE.md +0 -0
  1240. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/Makefile +0 -0
  1241. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/README.md +0 -0
  1242. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/build_system.md +0 -0
  1243. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/configuration.md +0 -0
  1244. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/cruby_compilation.md +0 -0
  1245. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/design.md +0 -0
  1246. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/encoding.md +0 -0
  1247. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/fuzzing.md +0 -0
  1248. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/heredocs.md +0 -0
  1249. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/javascript.md +0 -0
  1250. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/local_variable_depth.md +0 -0
  1251. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/mapping.md +0 -0
  1252. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/parser_translation.md +0 -0
  1253. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/parsing_rules.md +0 -0
  1254. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/releasing.md +0 -0
  1255. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/relocation.md +0 -0
  1256. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/ruby_api.md +0 -0
  1257. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/ruby_parser_translation.md +0 -0
  1258. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/serialization.md +0 -0
  1259. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/docs/testing.md +0 -0
  1260. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/ext/prism/api_node.c +0 -0
  1261. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/ext/prism/api_pack.c +0 -0
  1262. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/ext/prism/extconf.rb +0 -0
  1263. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/ext/prism/extension.c +0 -0
  1264. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/defines.h +0 -0
  1265. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/diagnostic.h +0 -0
  1266. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/encoding.h +0 -0
  1267. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/node.h +0 -0
  1268. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/options.h +0 -0
  1269. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/pack.h +0 -0
  1270. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/parser.h +0 -0
  1271. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/prettyprint.h +0 -0
  1272. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/regexp.h +0 -0
  1273. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/static_literals.h +0 -0
  1274. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_buffer.h +0 -0
  1275. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_char.h +0 -0
  1276. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_constant_pool.h +0 -0
  1277. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_integer.h +0 -0
  1278. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_list.h +0 -0
  1279. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_memchr.h +0 -0
  1280. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_newline_list.h +0 -0
  1281. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_string.h +0 -0
  1282. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_strncasecmp.h +0 -0
  1283. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism/util/pm_strpbrk.h +0 -0
  1284. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/include/prism.h +0 -0
  1285. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/compiler.rb +0 -0
  1286. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/desugar_compiler.rb +0 -0
  1287. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/dispatcher.rb +0 -0
  1288. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/dot_visitor.rb +0 -0
  1289. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/dsl.rb +0 -0
  1290. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/ffi.rb +0 -0
  1291. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/inspect_visitor.rb +0 -0
  1292. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/mutation_compiler.rb +0 -0
  1293. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/node_ext.rb +0 -0
  1294. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/pack.rb +0 -0
  1295. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/parse_result/comments.rb +0 -0
  1296. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/parse_result/errors.rb +0 -0
  1297. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/parse_result/newlines.rb +0 -0
  1298. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/pattern.rb +0 -0
  1299. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/polyfill/append_as_bytes.rb +0 -0
  1300. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/polyfill/byteindex.rb +0 -0
  1301. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/polyfill/scan_byte.rb +0 -0
  1302. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/polyfill/unpack1.rb +0 -0
  1303. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/polyfill/warn.rb +0 -0
  1304. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/reflection.rb +0 -0
  1305. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/relocation.rb +0 -0
  1306. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/string_query.rb +0 -0
  1307. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser/builder.rb +0 -0
  1308. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser/compiler.rb +0 -0
  1309. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser/lexer.rb +0 -0
  1310. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser.rb +0 -0
  1311. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser_current.rb +0 -0
  1312. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/parser_versions.rb +0 -0
  1313. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/ripper/sexp.rb +0 -0
  1314. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/ripper/shim.rb +0 -0
  1315. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation/ruby_parser.rb +0 -0
  1316. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/translation.rb +0 -0
  1317. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/lib/prism/visitor.rb +0 -0
  1318. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/compiler.rbi +0 -0
  1319. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/dsl.rbi +0 -0
  1320. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/inspect_visitor.rbi +0 -0
  1321. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/node_ext.rbi +0 -0
  1322. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/parse_result.rbi +0 -0
  1323. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/reflection.rbi +0 -0
  1324. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/string_query.rbi +0 -0
  1325. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/translation/parser.rbi +0 -0
  1326. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/translation/parser_versions.rbi +0 -0
  1327. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/translation/ripper.rbi +0 -0
  1328. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/rbi/prism/visitor.rbi +0 -0
  1329. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/compiler.rbs +0 -0
  1330. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/dispatcher.rbs +0 -0
  1331. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/dot_visitor.rbs +0 -0
  1332. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/dsl.rbs +0 -0
  1333. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/inspect_visitor.rbs +0 -0
  1334. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/lex_compat.rbs +0 -0
  1335. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/mutation_compiler.rbs +0 -0
  1336. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/node_ext.rbs +0 -0
  1337. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/pack.rbs +0 -0
  1338. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/parse_result/comments.rbs +0 -0
  1339. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/pattern.rbs +0 -0
  1340. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/reflection.rbs +0 -0
  1341. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/relocation.rbs +0 -0
  1342. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/serialize.rbs +0 -0
  1343. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/string_query.rbs +0 -0
  1344. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/sig/prism/visitor.rbs +0 -0
  1345. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/diagnostic.c +0 -0
  1346. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/encoding.c +0 -0
  1347. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/node.c +0 -0
  1348. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/options.c +0 -0
  1349. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/pack.c +0 -0
  1350. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/prettyprint.c +0 -0
  1351. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/regexp.c +0 -0
  1352. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/serialize.c +0 -0
  1353. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/static_literals.c +0 -0
  1354. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/token_type.c +0 -0
  1355. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_buffer.c +0 -0
  1356. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_char.c +0 -0
  1357. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_constant_pool.c +0 -0
  1358. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_integer.c +0 -0
  1359. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_list.c +0 -0
  1360. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_memchr.c +0 -0
  1361. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_newline_list.c +0 -0
  1362. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_string.c +0 -0
  1363. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_strncasecmp.c +0 -0
  1364. /data/vendor/bundle/ruby/3.4.0/gems/{prism-1.8.0 → prism-1.9.0}/src/util/pm_strpbrk.c +0 -0
  1365. /data/vendor/bundle/ruby/3.4.0/gems/{rails-html-sanitizer-1.6.2 → rails-html-sanitizer-1.7.0}/MIT-LICENSE +0 -0
  1366. /data/vendor/bundle/ruby/3.4.0/gems/{rails-html-sanitizer-1.6.2 → rails-html-sanitizer-1.7.0}/README.md +0 -0
  1367. /data/vendor/bundle/ruby/3.4.0/gems/{rails-html-sanitizer-1.6.2 → rails-html-sanitizer-1.7.0}/lib/rails/html/scrubbers.rb +0 -0
  1368. /data/vendor/bundle/ruby/3.4.0/gems/{rails-html-sanitizer-1.6.2 → rails-html-sanitizer-1.7.0}/lib/rails-html-sanitizer.rb +0 -0
  1369. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/logo.png +0 -0
  1370. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.css.erb +0 -0
  1371. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.html.erb +0 -0
  1372. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/internal_affairs.yml +0 -0
  1373. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/obsoletion.yml +0 -0
  1374. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/exe/rubocop +0 -0
  1375. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_env.rb +0 -0
  1376. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_file.rb +0 -0
  1377. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ast_aliases.rb +0 -0
  1378. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cached_data.rb +0 -0
  1379. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/auto_generate_config.rb +0 -0
  1380. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/base.rb +0 -0
  1381. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/execute_runner.rb +0 -0
  1382. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
  1383. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_cops.rb +0 -0
  1384. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_docs_url.rb +0 -0
  1385. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
  1386. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/version.rb +0 -0
  1387. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command.rb +0 -0
  1388. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/environment.rb +0 -0
  1389. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config.rb +0 -0
  1390. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_finder.rb +0 -0
  1391. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_loader_resolver.rb +0 -0
  1392. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
  1393. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
  1394. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
  1395. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
  1396. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
  1397. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
  1398. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
  1399. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  1400. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
  1401. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion.rb +0 -0
  1402. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_regeneration.rb +0 -0
  1403. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_store.rb +0 -0
  1404. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_validator.rb +0 -0
  1405. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  1406. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/badge.rb +0 -0
  1407. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/base.rb +0 -0
  1408. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
  1409. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
  1410. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_comment.rb +0 -0
  1411. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
  1412. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
  1413. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
  1414. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/commissioner.rb +0 -0
  1415. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/cop.rb +0 -0
  1416. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/corrector.rb +0 -0
  1417. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
  1418. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
  1419. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
  1420. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
  1421. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
  1422. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
  1423. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
  1424. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
  1425. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
  1426. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
  1427. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
  1428. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
  1429. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
  1430. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
  1431. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
  1432. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
  1433. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/documentation.rb +0 -0
  1434. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
  1435. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/force.rb +0 -0
  1436. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
  1437. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
  1438. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
  1439. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
  1440. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
  1441. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -0
  1442. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
  1443. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
  1444. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
  1445. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
  1446. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
  1447. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
  1448. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator.rb +0 -0
  1449. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/ignored_node.rb +0 -0
  1450. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
  1451. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
  1452. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
  1453. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
  1454. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
  1455. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
  1456. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
  1457. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
  1458. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
  1459. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
  1460. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
  1461. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
  1462. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
  1463. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
  1464. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
  1465. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
  1466. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
  1467. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
  1468. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
  1469. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
  1470. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
  1471. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
  1472. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
  1473. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
  1474. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
  1475. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
  1476. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
  1477. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
  1478. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
  1479. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
  1480. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
  1481. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
  1482. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
  1483. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
  1484. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
  1485. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
  1486. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
  1487. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
  1488. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
  1489. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
  1490. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
  1491. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
  1492. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
  1493. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
  1494. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
  1495. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
  1496. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
  1497. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
  1498. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
  1499. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/condition_position.rb +0 -0
  1500. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
  1501. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/dot_position.rb +0 -0
  1502. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
  1503. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
  1504. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -0
  1505. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
  1506. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
  1507. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
  1508. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
  1509. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
  1510. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
  1511. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
  1512. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
  1513. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
  1514. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
  1515. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
  1516. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
  1517. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
  1518. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_alignment.rb +0 -0
  1519. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
  1520. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
  1521. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
  1522. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
  1523. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
  1524. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
  1525. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
  1526. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
  1527. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
  1528. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
  1529. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
  1530. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
  1531. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
  1532. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
  1533. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
  1534. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
  1535. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
  1536. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
  1537. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
  1538. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
  1539. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
  1540. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
  1541. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
  1542. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
  1543. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
  1544. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
  1545. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
  1546. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/redundant_line_break.rb +0 -0
  1547. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
  1548. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
  1549. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
  1550. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
  1551. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
  1552. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
  1553. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
  1554. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
  1555. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
  1556. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
  1557. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
  1558. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
  1559. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
  1560. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_brackets.rb +0 -0
  1561. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
  1562. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
  1563. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
  1564. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
  1565. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
  1566. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
  1567. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
  1568. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
  1569. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
  1570. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
  1571. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
  1572. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
  1573. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
  1574. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
  1575. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
  1576. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
  1577. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  1578. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
  1579. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
  1580. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
  1581. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
  1582. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
  1583. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
  1584. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
  1585. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
  1586. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
  1587. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
  1588. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
  1589. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
  1590. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
  1591. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -0
  1592. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_reassignment.rb +0 -0
  1593. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
  1594. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
  1595. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
  1596. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
  1597. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
  1598. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
  1599. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
  1600. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
  1601. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
  1602. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
  1603. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
  1604. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
  1605. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
  1606. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
  1607. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
  1608. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
  1609. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
  1610. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
  1611. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/else_layout.rb +0 -0
  1612. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_block.rb +0 -0
  1613. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_class.rb +0 -0
  1614. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
  1615. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
  1616. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
  1617. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_file.rb +0 -0
  1618. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
  1619. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
  1620. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_when.rb +0 -0
  1621. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
  1622. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -0
  1623. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
  1624. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
  1625. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
  1626. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
  1627. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
  1628. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
  1629. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
  1630. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
  1631. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
  1632. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
  1633. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
  1634. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
  1635. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
  1636. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
  1637. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -0
  1638. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
  1639. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/loop.rb +0 -0
  1640. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
  1641. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_super.rb +0 -0
  1642. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
  1643. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
  1644. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
  1645. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
  1646. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
  1647. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
  1648. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
  1649. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
  1650. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -0
  1651. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
  1652. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/number_conversion.rb +0 -0
  1653. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
  1654. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -0
  1655. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
  1656. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
  1657. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
  1658. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
  1659. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
  1660. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
  1661. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
  1662. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rand_one.rb +0 -0
  1663. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
  1664. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
  1665. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
  1666. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
  1667. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
  1668. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -0
  1669. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
  1670. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -0
  1671. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_index.rb +0 -0
  1672. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_object.rb +0 -0
  1673. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
  1674. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
  1675. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
  1676. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
  1677. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
  1678. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
  1679. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
  1680. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
  1681. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -0
  1682. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
  1683. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
  1684. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/script_permission.rb +0 -0
  1685. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/self_assignment.rb +0 -0
  1686. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
  1687. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
  1688. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
  1689. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -0
  1690. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -0
  1691. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
  1692. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -0
  1693. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/symbol_conversion.rb +0 -0
  1694. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
  1695. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
  1696. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
  1697. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -0
  1698. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
  1699. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
  1700. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -0
  1701. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
  1702. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
  1703. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
  1704. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
  1705. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
  1706. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
  1707. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
  1708. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
  1709. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
  1710. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
  1711. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
  1712. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
  1713. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -0
  1714. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
  1715. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
  1716. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
  1717. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
  1718. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
  1719. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
  1720. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
  1721. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_times.rb +0 -0
  1722. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/void.rb +0 -0
  1723. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/message_annotator.rb +0 -0
  1724. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
  1725. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_length.rb +0 -0
  1726. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
  1727. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/class_length.rb +0 -0
  1728. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
  1729. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
  1730. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/method_length.rb +0 -0
  1731. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/module_length.rb +0 -0
  1732. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
  1733. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
  1734. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
  1735. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
  1736. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
  1737. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
  1738. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
  1739. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/migration/department_name.rb +0 -0
  1740. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  1741. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
  1742. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
  1743. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
  1744. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
  1745. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
  1746. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
  1747. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
  1748. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
  1749. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
  1750. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
  1751. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
  1752. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/code_length.rb +0 -0
  1753. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
  1754. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
  1755. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
  1756. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
  1757. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
  1758. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
  1759. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/def_node.rb +0 -0
  1760. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
  1761. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
  1762. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  1763. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
  1764. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
  1765. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
  1766. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
  1767. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  1768. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
  1769. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
  1770. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
  1771. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
  1772. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
  1773. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
  1774. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
  1775. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
  1776. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
  1777. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  1778. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
  1779. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  1780. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
  1781. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/match_range.rb +0 -0
  1782. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
  1783. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
  1784. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
  1785. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
  1786. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
  1787. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
  1788. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
  1789. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
  1790. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
  1791. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
  1792. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
  1793. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
  1794. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  1795. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
  1796. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
  1797. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
  1798. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
  1799. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/range_help.rb +0 -0
  1800. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
  1801. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/require_library.rb +0 -0
  1802. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
  1803. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
  1804. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
  1805. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
  1806. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
  1807. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_help.rb +0 -0
  1808. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
  1809. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
  1810. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
  1811. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
  1812. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
  1813. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
  1814. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
  1815. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
  1816. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
  1817. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
  1818. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
  1819. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
  1820. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
  1821. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
  1822. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
  1823. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/constant_name.rb +0 -0
  1824. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/file_name.rb +0 -0
  1825. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
  1826. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
  1827. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
  1828. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -0
  1829. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_name.rb +0 -0
  1830. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
  1831. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
  1832. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_name.rb +0 -0
  1833. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_number.rb +0 -0
  1834. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/registry.rb +0 -0
  1835. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/compound_hash.rb +0 -0
  1836. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/eval.rb +0 -0
  1837. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/io_methods.rb +0 -0
  1838. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/marshal_load.rb +0 -0
  1839. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/open.rb +0 -0
  1840. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/yaml_load.rb +0 -0
  1841. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/severity.rb +0 -0
  1842. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
  1843. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/alias.rb +0 -0
  1844. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
  1845. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/and_or.rb +0 -0
  1846. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
  1847. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_coercion.rb +0 -0
  1848. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_first_last.rb +0 -0
  1849. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect.rb +0 -0
  1850. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -0
  1851. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_join.rb +0 -0
  1852. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
  1853. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/attr.rb +0 -0
  1854. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
  1855. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
  1856. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/begin_block.rb +0 -0
  1857. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
  1858. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
  1859. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
  1860. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/block_comments.rb +0 -0
  1861. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_equality.rb +0 -0
  1862. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_like_if.rb +0 -0
  1863. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/character_literal.rb +0 -0
  1864. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
  1865. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_check.rb +0 -0
  1866. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
  1867. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods.rb +0 -0
  1868. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
  1869. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_vars.rb +0 -0
  1870. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_compact.rb +0 -0
  1871. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_methods.rb +0 -0
  1872. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_querying.rb +0 -0
  1873. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
  1874. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
  1875. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
  1876. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_loops.rb +0 -0
  1877. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/command_literal.rb +0 -0
  1878. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
  1879. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
  1880. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_between.rb +0 -0
  1881. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
  1882. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/concat_array_literals.rb +0 -0
  1883. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/conditional_assignment.rb +0 -0
  1884. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
  1885. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/copyright.rb +0 -0
  1886. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
  1887. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/date_time.rb +0 -0
  1888. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
  1889. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dig_chain.rb +0 -0
  1890. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir.rb +0 -0
  1891. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir_empty.rb +0 -0
  1892. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
  1893. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
  1894. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
  1895. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_negation.rb +0 -0
  1896. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
  1897. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_with_object.rb +0 -0
  1898. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
  1899. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
  1900. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_else.rb +0 -0
  1901. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
  1902. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
  1903. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_literal.rb +0 -0
  1904. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_method.rb +0 -0
  1905. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
  1906. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/encoding.rb +0 -0
  1907. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/end_block.rb +0 -0
  1908. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/endless_method.rb +0 -0
  1909. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/env_home.rb +0 -0
  1910. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
  1911. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/even_odd.rb +0 -0
  1912. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
  1913. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
  1914. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
  1915. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
  1916. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
  1917. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_empty.rb +0 -0
  1918. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_null.rb +0 -0
  1919. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_read.rb +0 -0
  1920. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_touch.rb +0 -0
  1921. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_write.rb +0 -0
  1922. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/float_division.rb +0 -0
  1923. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/for.rb +0 -0
  1924. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/format_string.rb +0 -0
  1925. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
  1926. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
  1927. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_vars.rb +0 -0
  1928. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
  1929. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
  1930. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_except.rb +0 -0
  1931. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
  1932. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
  1933. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_slice.rb +0 -0
  1934. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
  1935. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
  1936. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
  1937. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
  1938. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
  1939. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
  1940. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
  1941. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
  1942. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
  1943. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inline_comment.rb +0 -0
  1944. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
  1945. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
  1946. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
  1947. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_assignment.rb +0 -0
  1948. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
  1949. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
  1950. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
  1951. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/lambda.rb +0 -0
  1952. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
  1953. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/magic_comment_format.rb +0 -0
  1954. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
  1955. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_into_array.rb +0 -0
  1956. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
  1957. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_set.rb +0 -0
  1958. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
  1959. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
  1960. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
  1961. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
  1962. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
  1963. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max.rb +0 -0
  1964. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max_comparison.rb +0 -0
  1965. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_else.rb +0 -0
  1966. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
  1967. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
  1968. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
  1969. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/module_function.rb +0 -0
  1970. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
  1971. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
  1972. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
  1973. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
  1974. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
  1975. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
  1976. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
  1977. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
  1978. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mutable_constant.rb +0 -0
  1979. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if.rb +0 -0
  1980. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
  1981. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_unless.rb +0 -0
  1982. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_while.rb +0 -0
  1983. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
  1984. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
  1985. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
  1986. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
  1987. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/next.rb +0 -0
  1988. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
  1989. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
  1990. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
  1991. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/not.rb +0 -0
  1992. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
  1993. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
  1994. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
  1995. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
  1996. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
  1997. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/object_then.rb +0 -0
  1998. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
  1999. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
  2000. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
  2001. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/option_hash.rb +0 -0
  2002. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
  2003. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
  2004. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/or_assignment.rb +0 -0
  2005. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parallel_assignment.rb +0 -0
  2006. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
  2007. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
  2008. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
  2009. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
  2010. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/proc.rb +0 -0
  2011. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
  2012. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/raise_args.rb +0 -0
  2013. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
  2014. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
  2015. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
  2016. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
  2017. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
  2018. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
  2019. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
  2020. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
  2021. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
  2022. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
  2023. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
  2024. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_each.rb +0 -0
  2025. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
  2026. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
  2027. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
  2028. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
  2029. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_format.rb +0 -0
  2030. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
  2031. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
  2032. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
  2033. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
  2034. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
  2035. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
  2036. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_parentheses.rb +0 -0
  2037. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
  2038. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
  2039. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
  2040. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
  2041. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
  2042. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_return.rb +0 -0
  2043. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self.rb +0 -0
  2044. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
  2045. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
  2046. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
  2047. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
  2048. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
  2049. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/regexp_literal.rb +0 -0
  2050. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/require_order.rb +0 -0
  2051. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
  2052. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
  2053. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil.rb +0 -0
  2054. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
  2055. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
  2056. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
  2057. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sample.rb +0 -0
  2058. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
  2059. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/self_assignment.rb +0 -0
  2060. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
  2061. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send.rb +0 -0
  2062. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
  2063. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/signal_exception.rb +0 -0
  2064. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
  2065. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
  2066. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
  2067. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
  2068. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
  2069. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
  2070. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
  2071. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
  2072. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/static_class.rb +0 -0
  2073. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
  2074. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_chars.rb +0 -0
  2075. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
  2076. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
  2077. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals.rb +0 -0
  2078. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
  2079. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_methods.rb +0 -0
  2080. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/strip.rb +0 -0
  2081. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
  2082. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_arguments.rb +0 -0
  2083. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
  2084. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/swap_values.rb +0 -0
  2085. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_array.rb +0 -0
  2086. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
  2087. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_proc.rb +0 -0
  2088. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
  2089. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
  2090. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
  2091. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
  2092. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
  2093. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
  2094. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
  2095. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
  2096. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
  2097. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
  2098. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
  2099. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
  2100. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_else.rb +0 -0
  2101. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
  2102. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unpack_first.rb +0 -0
  2103. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
  2104. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/when_then.rb +0 -0
  2105. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_do.rb +0 -0
  2106. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
  2107. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/word_array.rb +0 -0
  2108. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
  2109. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
  2110. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
  2111. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
  2112. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/util.rb +0 -0
  2113. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/utils/format_string.rb +0 -0
  2114. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
  2115. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
  2116. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/reference.rb +0 -0
  2117. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/scope.rb +0 -0
  2118. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable.rb +0 -0
  2119. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
  2120. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force.rb +0 -0
  2121. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
  2122. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/core_ext/string.rb +0 -0
  2123. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/directive_comment.rb +0 -0
  2124. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/error.rb +0 -0
  2125. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/comment.rb +0 -0
  2126. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/processed_source.rb +0 -0
  2127. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/range.rb +0 -0
  2128. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_node.rb +0 -0
  2129. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
  2130. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/feature_loader.rb +0 -0
  2131. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_finder.rb +0 -0
  2132. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_patterns.rb +0 -0
  2133. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
  2134. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
  2135. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/colorizable.rb +0 -0
  2136. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/disabled_config_formatter.rb +0 -0
  2137. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
  2138. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
  2139. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
  2140. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
  2141. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
  2142. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
  2143. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  2144. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  2145. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
  2146. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  2147. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  2148. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  2149. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
  2150. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/text_util.rb +0 -0
  2151. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
  2152. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter.rb +0 -0
  2153. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lockfile.rb +0 -0
  2154. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/logger.rb +0 -0
  2155. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/server.rb +0 -0
  2156. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/severity.rb +0 -0
  2157. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp.rb +0 -0
  2158. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/magic_comment.rb +0 -0
  2159. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/name_similarity.rb +0 -0
  2160. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/options.rb +0 -0
  2161. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/path_util.rb +0 -0
  2162. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/pending_cops_reporter.rb +0 -0
  2163. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/platform.rb +0 -0
  2164. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  2165. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/load_error.rb +0 -0
  2166. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/loader.rb +0 -0
  2167. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/not_supported_error.rb +0 -0
  2168. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin.rb +0 -0
  2169. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rake_task.rb +0 -0
  2170. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/result_cache.rb +0 -0
  2171. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
  2172. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/expect_offense.rb +0 -0
  2173. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  2174. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/runner.rb +0 -0
  2175. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/cli.rb +0 -0
  2176. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/base.rb +0 -0
  2177. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/exec.rb +0 -0
  2178. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/restart.rb +0 -0
  2179. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/start.rb +0 -0
  2180. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/status.rb +0 -0
  2181. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/stop.rb +0 -0
  2182. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command.rb +0 -0
  2183. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/core.rb +0 -0
  2184. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/errors.rb +0 -0
  2185. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/helper.rb +0 -0
  2186. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/base.rb +0 -0
  2187. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/exec.rb +0 -0
  2188. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/stop.rb +0 -0
  2189. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command.rb +0 -0
  2190. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/socket_reader.rb +0 -0
  2191. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server.rb +0 -0
  2192. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/string_interpreter.rb +0 -0
  2193. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/target_finder.rb +0 -0
  2194. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/util.rb +0 -0
  2195. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/warning.rb +0 -0
  2196. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  2197. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  2198. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
  2199. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Gemfile +0 -0
  2200. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/LICENSE.txt +0 -0
  2201. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/README.md +0 -0
  2202. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Rakefile +0 -0
  2203. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/console +0 -0
  2204. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/rake +0 -0
  2205. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/run +0 -0
  2206. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/setup +0 -0
  2207. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/default.yml +0 -0
  2208. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.8.yml +0 -0
  2209. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.9.yml +0 -0
  2210. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.0.yml +0 -0
  2211. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.1.yml +0 -0
  2212. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.2.yml +0 -0
  2213. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.3.yml +0 -0
  2214. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.4.yml +0 -0
  2215. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.5.yml +0 -0
  2216. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.6.yml +0 -0
  2217. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.7.yml +0 -0
  2218. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.0.yml +0 -0
  2219. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.1.yml +0 -0
  2220. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.2.yml +0 -0
  2221. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/ARCHITECTURE.md +0 -0
  2222. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RELEASE.md +0 -0
  2223. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RUBY_VERSIONS.md +0 -0
  2224. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/UPGRADING.md +0 -0
  2225. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/exe/standardrb +0 -0
  2226. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/addon.rb +0 -0
  2227. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/wraps_built_in_lsp_standardizer.rb +0 -0
  2228. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base/plugin.rb +0 -0
  2229. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base.rb +0 -0
  2230. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/builds_config.rb +0 -0
  2231. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/cli.rb +0 -0
  2232. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +0 -0
  2233. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/configures_ignored_paths.rb +0 -0
  2234. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/merges_user_config_extensions.rb +0 -0
  2235. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/sets_target_ruby_version.rb +0 -0
  2236. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store.rb +0 -0
  2237. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/file_finder.rb +0 -0
  2238. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/formatter.rb +0 -0
  2239. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_runner.rb +0 -0
  2240. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_yaml_config.rb +0 -0
  2241. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/diagnostic.rb +0 -0
  2242. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/kills_server.rb +0 -0
  2243. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/logger.rb +0 -0
  2244. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/routes.rb +0 -0
  2245. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/server.rb +0 -0
  2246. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/standardizer.rb +0 -0
  2247. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/stdin_rubocop_runner.rb +0 -0
  2248. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/merges_settings.rb +0 -0
  2249. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/combines_plugin_configs.rb +0 -0
  2250. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/creates_runner_context.rb +0 -0
  2251. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/determines_class_constant.rb +0 -0
  2252. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/initializes_plugins.rb +0 -0
  2253. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/merges_plugins_into_rubocop_config.rb +0 -0
  2254. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/standardizes_configured_plugins.rb +0 -0
  2255. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin.rb +0 -0
  2256. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/railtie.rb +0 -0
  2257. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rake.rb +0 -0
  2258. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/resolves_yaml_option.rb +0 -0
  2259. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rubocop/ext.rb +0 -0
  2260. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/genignore.rb +0 -0
  2261. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/help.rb +0 -0
  2262. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/lsp.rb +0 -0
  2263. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/rubocop.rb +0 -0
  2264. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/verbose_version.rb +0 -0
  2265. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/version.rb +0 -0
  2266. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard.rb +0 -0
  2267. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/LICENSE.txt +0 -0
  2268. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/Rakefile +0 -0
  2269. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/lib/tailwind_merge/class_group_utils.rb +0 -0
  2270. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/lib/tailwind_merge/parse_class_name.rb +0 -0
  2271. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/lib/tailwind_merge/sort_modifiers.rb +0 -0
  2272. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/lib/tailwind_merge.rb +0 -0
  2273. /data/vendor/bundle/ruby/3.4.0/gems/{tailwind_merge-1.3.1 → tailwind_merge-1.4.0}/script/test +0 -0
  2274. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/BSDL +0 -0
  2275. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/COPYING +0 -0
  2276. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/README.md +0 -0
  2277. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/docs/kernel.rb +0 -0
  2278. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/ftp.rb +0 -0
  2279. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/https.rb +0 -0
  2280. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/ldap.rb +0 -0
  2281. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/ldaps.rb +0 -0
  2282. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/mailto.rb +0 -0
  2283. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/rfc3986_parser.rb +0 -0
  2284. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/ws.rb +0 -0
  2285. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri/wss.rb +0 -0
  2286. /data/vendor/bundle/ruby/3.4.0/gems/{uri-1.0.3 → uri-1.1.1}/lib/uri.rb +0 -0
  2287. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/LICENSE.txt +0 -0
  2288. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/README.md +0 -0
  2289. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/app/controllers/view_components_controller.rb +0 -0
  2290. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/app/views/test_mailer/test_email.html.erb +0 -0
  2291. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/app/views/view_components/index.html.erb +0 -0
  2292. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/app/views/view_components/previews.html.erb +0 -0
  2293. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/erb/templates/component.html.erb.tt +0 -0
  2294. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/haml/templates/component.html.haml.tt +0 -0
  2295. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/preview/templates/component_preview.rb.tt +0 -0
  2296. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/rspec/templates/component_spec.rb.tt +0 -0
  2297. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/slim/templates/component.html.slim.tt +0 -0
  2298. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/stimulus/templates/component_controller.js.tt +0 -0
  2299. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/stimulus/templates/component_controller.ts.tt +0 -0
  2300. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/tailwindcss/templates/component.html.erb.tt +0 -0
  2301. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2/lib/rails/generators → view_component-4.8.0/lib/generators/view_component}/test_unit/templates/component_test.rb.tt +0 -0
  2302. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/lib/view_component/compile_cache.rb +0 -0
  2303. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/lib/view_component/system_test_case.rb +0 -0
  2304. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/lib/view_component/test_case.rb +0 -0
  2305. /data/vendor/bundle/ruby/3.4.0/gems/{view_component-3.23.2 → view_component-4.8.0}/lib/view_component/with_content_helper.rb +0 -0
@@ -0,0 +1,3520 @@
1
+ # frozen_string_literal: true
2
+ # :markup: markdown
3
+
4
+ module Prism
5
+ module Translation
6
+ # This class provides a compatibility layer between prism and Ripper. It
7
+ # functions by parsing the entire tree first and then walking it and
8
+ # executing each of the Ripper callbacks as it goes. To use this class, you
9
+ # treat `Prism::Translation::Ripper` effectively as you would treat the
10
+ # `Ripper` class.
11
+ #
12
+ # Note that this class will serve the most common use cases, but Ripper's
13
+ # API is extensive and undocumented. It relies on reporting the state of the
14
+ # parser at any given time. We do our best to replicate that here, but
15
+ # because it is a different architecture it is not possible to perfectly
16
+ # replicate the behavior of Ripper.
17
+ #
18
+ # The main known difference is that we may omit dispatching some events in
19
+ # some cases. This impacts the following events:
20
+ #
21
+ # - on_assign_error
22
+ # - on_comma
23
+ # - on_ignored_nl
24
+ # - on_ignored_sp
25
+ # - on_kw
26
+ # - on_label_end
27
+ # - on_lbrace
28
+ # - on_lbracket
29
+ # - on_lparen
30
+ # - on_nl
31
+ # - on_op
32
+ # - on_operator_ambiguous
33
+ # - on_rbrace
34
+ # - on_rbracket
35
+ # - on_rparen
36
+ # - on_semicolon
37
+ # - on_sp
38
+ # - on_symbeg
39
+ # - on_tstring_beg
40
+ # - on_tstring_end
41
+ #
42
+ class Ripper < Compiler
43
+ # Parses the given Ruby program read from +src+.
44
+ # +src+ must be a String or an IO or a object with a #gets method.
45
+ def self.parse(src, filename = "(ripper)", lineno = 1)
46
+ new(src, filename, lineno).parse
47
+ end
48
+
49
+ # Tokenizes the Ruby program and returns an array of an array,
50
+ # which is formatted like
51
+ # <code>[[lineno, column], type, token, state]</code>.
52
+ # The +filename+ argument is mostly ignored.
53
+ # By default, this method does not handle syntax errors in +src+,
54
+ # use the +raise_errors+ keyword to raise a SyntaxError for an error in +src+.
55
+ #
56
+ # require "ripper"
57
+ # require "pp"
58
+ #
59
+ # pp Ripper.lex("def m(a) nil end")
60
+ # #=> [[[1, 0], :on_kw, "def", FNAME ],
61
+ # [[1, 3], :on_sp, " ", FNAME ],
62
+ # [[1, 4], :on_ident, "m", ENDFN ],
63
+ # [[1, 5], :on_lparen, "(", BEG|LABEL],
64
+ # [[1, 6], :on_ident, "a", ARG ],
65
+ # [[1, 7], :on_rparen, ")", ENDFN ],
66
+ # [[1, 8], :on_sp, " ", BEG ],
67
+ # [[1, 9], :on_kw, "nil", END ],
68
+ # [[1, 12], :on_sp, " ", END ],
69
+ # [[1, 13], :on_kw, "end", END ]]
70
+ #
71
+ def self.lex(src, filename = "-", lineno = 1, raise_errors: false)
72
+ result = Prism.lex_compat(src, filepath: filename, line: lineno, version: "current")
73
+
74
+ if result.failure? && raise_errors
75
+ raise SyntaxError, result.errors.first.message
76
+ else
77
+ result.value
78
+ end
79
+ end
80
+
81
+ # Tokenizes the Ruby program and returns an array of strings.
82
+ # The +filename+ and +lineno+ arguments are mostly ignored, since the
83
+ # return value is just the tokenized input.
84
+ # By default, this method does not handle syntax errors in +src+,
85
+ # use the +raise_errors+ keyword to raise a SyntaxError for an error in +src+.
86
+ #
87
+ # p Ripper.tokenize("def m(a) nil end")
88
+ # # => ["def", " ", "m", "(", "a", ")", " ", "nil", " ", "end"]
89
+ #
90
+ def self.tokenize(...)
91
+ lex(...).map(&:value)
92
+ end
93
+
94
+ # This contains a table of all of the parser events and their
95
+ # corresponding arity.
96
+ PARSER_EVENT_TABLE = {
97
+ BEGIN: 1,
98
+ END: 1,
99
+ alias: 2,
100
+ alias_error: 2,
101
+ aref: 2,
102
+ aref_field: 2,
103
+ arg_ambiguous: 1,
104
+ arg_paren: 1,
105
+ args_add: 2,
106
+ args_add_block: 2,
107
+ args_add_star: 2,
108
+ args_forward: 0,
109
+ args_new: 0,
110
+ array: 1,
111
+ aryptn: 4,
112
+ assign: 2,
113
+ assign_error: 2,
114
+ assoc_new: 2,
115
+ assoc_splat: 1,
116
+ assoclist_from_args: 1,
117
+ bare_assoc_hash: 1,
118
+ begin: 1,
119
+ binary: 3,
120
+ block_var: 2,
121
+ blockarg: 1,
122
+ bodystmt: 4,
123
+ brace_block: 2,
124
+ break: 1,
125
+ call: 3,
126
+ case: 2,
127
+ class: 3,
128
+ class_name_error: 2,
129
+ command: 2,
130
+ command_call: 4,
131
+ const_path_field: 2,
132
+ const_path_ref: 2,
133
+ const_ref: 1,
134
+ def: 3,
135
+ defined: 1,
136
+ defs: 5,
137
+ do_block: 2,
138
+ dot2: 2,
139
+ dot3: 2,
140
+ dyna_symbol: 1,
141
+ else: 1,
142
+ elsif: 3,
143
+ ensure: 1,
144
+ excessed_comma: 0,
145
+ fcall: 1,
146
+ field: 3,
147
+ fndptn: 4,
148
+ for: 3,
149
+ hash: 1,
150
+ heredoc_dedent: 2,
151
+ hshptn: 3,
152
+ if: 3,
153
+ if_mod: 2,
154
+ ifop: 3,
155
+ in: 3,
156
+ kwrest_param: 1,
157
+ lambda: 2,
158
+ magic_comment: 2,
159
+ massign: 2,
160
+ method_add_arg: 2,
161
+ method_add_block: 2,
162
+ mlhs_add: 2,
163
+ mlhs_add_post: 2,
164
+ mlhs_add_star: 2,
165
+ mlhs_new: 0,
166
+ mlhs_paren: 1,
167
+ module: 2,
168
+ mrhs_add: 2,
169
+ mrhs_add_star: 2,
170
+ mrhs_new: 0,
171
+ mrhs_new_from_args: 1,
172
+ next: 1,
173
+ nokw_param: 1,
174
+ opassign: 3,
175
+ operator_ambiguous: 2,
176
+ param_error: 2,
177
+ params: 7,
178
+ paren: 1,
179
+ parse_error: 1,
180
+ program: 1,
181
+ qsymbols_add: 2,
182
+ qsymbols_new: 0,
183
+ qwords_add: 2,
184
+ qwords_new: 0,
185
+ redo: 0,
186
+ regexp_add: 2,
187
+ regexp_literal: 2,
188
+ regexp_new: 0,
189
+ rescue: 4,
190
+ rescue_mod: 2,
191
+ rest_param: 1,
192
+ retry: 0,
193
+ return: 1,
194
+ return0: 0,
195
+ sclass: 2,
196
+ stmts_add: 2,
197
+ stmts_new: 0,
198
+ string_add: 2,
199
+ string_concat: 2,
200
+ string_content: 0,
201
+ string_dvar: 1,
202
+ string_embexpr: 1,
203
+ string_literal: 1,
204
+ super: 1,
205
+ symbol: 1,
206
+ symbol_literal: 1,
207
+ symbols_add: 2,
208
+ symbols_new: 0,
209
+ top_const_field: 1,
210
+ top_const_ref: 1,
211
+ unary: 2,
212
+ undef: 1,
213
+ unless: 3,
214
+ unless_mod: 2,
215
+ until: 2,
216
+ until_mod: 2,
217
+ var_alias: 2,
218
+ var_field: 1,
219
+ var_ref: 1,
220
+ vcall: 1,
221
+ void_stmt: 0,
222
+ when: 3,
223
+ while: 2,
224
+ while_mod: 2,
225
+ word_add: 2,
226
+ word_new: 0,
227
+ words_add: 2,
228
+ words_new: 0,
229
+ xstring_add: 2,
230
+ xstring_literal: 1,
231
+ xstring_new: 0,
232
+ yield: 1,
233
+ yield0: 0,
234
+ zsuper: 0
235
+ }
236
+
237
+ # This contains a table of all of the scanner events and their
238
+ # corresponding arity.
239
+ SCANNER_EVENT_TABLE = {
240
+ CHAR: 1,
241
+ __end__: 1,
242
+ backref: 1,
243
+ backtick: 1,
244
+ comma: 1,
245
+ comment: 1,
246
+ const: 1,
247
+ cvar: 1,
248
+ embdoc: 1,
249
+ embdoc_beg: 1,
250
+ embdoc_end: 1,
251
+ embexpr_beg: 1,
252
+ embexpr_end: 1,
253
+ embvar: 1,
254
+ float: 1,
255
+ gvar: 1,
256
+ heredoc_beg: 1,
257
+ heredoc_end: 1,
258
+ ident: 1,
259
+ ignored_nl: 1,
260
+ imaginary: 1,
261
+ int: 1,
262
+ ivar: 1,
263
+ kw: 1,
264
+ label: 1,
265
+ label_end: 1,
266
+ lbrace: 1,
267
+ lbracket: 1,
268
+ lparen: 1,
269
+ nl: 1,
270
+ op: 1,
271
+ period: 1,
272
+ qsymbols_beg: 1,
273
+ qwords_beg: 1,
274
+ rational: 1,
275
+ rbrace: 1,
276
+ rbracket: 1,
277
+ regexp_beg: 1,
278
+ regexp_end: 1,
279
+ rparen: 1,
280
+ semicolon: 1,
281
+ sp: 1,
282
+ symbeg: 1,
283
+ symbols_beg: 1,
284
+ tlambda: 1,
285
+ tlambeg: 1,
286
+ tstring_beg: 1,
287
+ tstring_content: 1,
288
+ tstring_end: 1,
289
+ words_beg: 1,
290
+ words_sep: 1,
291
+ ignored_sp: 1
292
+ }
293
+
294
+ # This array contains name of parser events.
295
+ PARSER_EVENTS = PARSER_EVENT_TABLE.keys
296
+
297
+ # This array contains name of scanner events.
298
+ SCANNER_EVENTS = SCANNER_EVENT_TABLE.keys
299
+
300
+ # This array contains name of all ripper events.
301
+ EVENTS = PARSER_EVENTS + SCANNER_EVENTS
302
+
303
+ # A list of all of the Ruby keywords.
304
+ KEYWORDS = [
305
+ "alias",
306
+ "and",
307
+ "begin",
308
+ "BEGIN",
309
+ "break",
310
+ "case",
311
+ "class",
312
+ "def",
313
+ "defined?",
314
+ "do",
315
+ "else",
316
+ "elsif",
317
+ "end",
318
+ "END",
319
+ "ensure",
320
+ "false",
321
+ "for",
322
+ "if",
323
+ "in",
324
+ "module",
325
+ "next",
326
+ "nil",
327
+ "not",
328
+ "or",
329
+ "redo",
330
+ "rescue",
331
+ "retry",
332
+ "return",
333
+ "self",
334
+ "super",
335
+ "then",
336
+ "true",
337
+ "undef",
338
+ "unless",
339
+ "until",
340
+ "when",
341
+ "while",
342
+ "yield",
343
+ "__ENCODING__",
344
+ "__FILE__",
345
+ "__LINE__"
346
+ ]
347
+
348
+ # A list of all of the Ruby binary operators.
349
+ BINARY_OPERATORS = [
350
+ :!=,
351
+ :!~,
352
+ :=~,
353
+ :==,
354
+ :===,
355
+ :<=>,
356
+ :>,
357
+ :>=,
358
+ :<,
359
+ :<=,
360
+ :&,
361
+ :|,
362
+ :^,
363
+ :>>,
364
+ :<<,
365
+ :-,
366
+ :+,
367
+ :%,
368
+ :/,
369
+ :*,
370
+ :**
371
+ ]
372
+
373
+ private_constant :KEYWORDS, :BINARY_OPERATORS
374
+
375
+ # Parses +src+ and create S-exp tree.
376
+ # Returns more readable tree rather than Ripper.sexp_raw.
377
+ # This method is mainly for developer use.
378
+ # The +filename+ argument is mostly ignored.
379
+ # By default, this method does not handle syntax errors in +src+,
380
+ # returning +nil+ in such cases. Use the +raise_errors+ keyword
381
+ # to raise a SyntaxError for an error in +src+.
382
+ #
383
+ # require "ripper"
384
+ # require "pp"
385
+ #
386
+ # pp Ripper.sexp("def m(a) nil end")
387
+ # #=> [:program,
388
+ # [[:def,
389
+ # [:@ident, "m", [1, 4]],
390
+ # [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil, nil, nil, nil]],
391
+ # [:bodystmt, [[:var_ref, [:@kw, "nil", [1, 9]]]], nil, nil, nil]]]]
392
+ #
393
+ def self.sexp(src, filename = "-", lineno = 1, raise_errors: false)
394
+ builder = SexpBuilderPP.new(src, filename, lineno)
395
+ sexp = builder.parse
396
+ if builder.error?
397
+ if raise_errors
398
+ raise SyntaxError, builder.error
399
+ end
400
+ else
401
+ sexp
402
+ end
403
+ end
404
+
405
+ # Parses +src+ and create S-exp tree.
406
+ # This method is mainly for developer use.
407
+ # The +filename+ argument is mostly ignored.
408
+ # By default, this method does not handle syntax errors in +src+,
409
+ # returning +nil+ in such cases. Use the +raise_errors+ keyword
410
+ # to raise a SyntaxError for an error in +src+.
411
+ #
412
+ # require "ripper"
413
+ # require "pp"
414
+ #
415
+ # pp Ripper.sexp_raw("def m(a) nil end")
416
+ # #=> [:program,
417
+ # [:stmts_add,
418
+ # [:stmts_new],
419
+ # [:def,
420
+ # [:@ident, "m", [1, 4]],
421
+ # [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil]],
422
+ # [:bodystmt,
423
+ # [:stmts_add, [:stmts_new], [:var_ref, [:@kw, "nil", [1, 9]]]],
424
+ # nil,
425
+ # nil,
426
+ # nil]]]]
427
+ #
428
+ def self.sexp_raw(src, filename = "-", lineno = 1, raise_errors: false)
429
+ builder = SexpBuilder.new(src, filename, lineno)
430
+ sexp = builder.parse
431
+ if builder.error?
432
+ if raise_errors
433
+ raise SyntaxError, builder.error
434
+ end
435
+ else
436
+ sexp
437
+ end
438
+ end
439
+
440
+ autoload :Filter, "prism/translation/ripper/filter"
441
+ autoload :Lexer, "prism/translation/ripper/lexer"
442
+ autoload :SexpBuilder, "prism/translation/ripper/sexp"
443
+ autoload :SexpBuilderPP, "prism/translation/ripper/sexp"
444
+
445
+ # :stopdoc:
446
+ # This is not part of the public API but used by some gems.
447
+
448
+ # Ripper-internal bitflags.
449
+ LEX_STATE_NAMES = %i[
450
+ BEG END ENDARG ENDFN ARG CMDARG MID FNAME DOT CLASS LABEL LABELED FITEM
451
+ ].map.with_index.to_h { |name, i| [2 ** i, name] }.freeze
452
+ private_constant :LEX_STATE_NAMES
453
+
454
+ LEX_STATE_NAMES.each do |value, key|
455
+ const_set("EXPR_#{key}", value)
456
+ end
457
+ EXPR_NONE = 0
458
+ EXPR_VALUE = EXPR_BEG
459
+ EXPR_BEG_ANY = EXPR_BEG | EXPR_MID | EXPR_CLASS
460
+ EXPR_ARG_ANY = EXPR_ARG | EXPR_CMDARG
461
+ EXPR_END_ANY = EXPR_END | EXPR_ENDARG | EXPR_ENDFN
462
+
463
+ def self.lex_state_name(state)
464
+ LEX_STATE_NAMES.filter_map { |flag, name| name if state & flag != 0 }.join("|")
465
+ end
466
+
467
+ # :startdoc:
468
+
469
+ # The source that is being parsed.
470
+ attr_reader :source
471
+
472
+ # The filename of the source being parsed.
473
+ attr_reader :filename
474
+
475
+ # The current line number of the parser.
476
+ attr_reader :lineno
477
+
478
+ # The current column number of the parser.
479
+ attr_reader :column
480
+
481
+ # Create a new Translation::Ripper object with the given source.
482
+ def initialize(source, filename = "(ripper)", lineno = 1)
483
+ @source = source
484
+ @filename = filename
485
+ @lineno = lineno
486
+ @column = 0
487
+ @result = nil
488
+ end
489
+
490
+ ##########################################################################
491
+ # Public interface
492
+ ##########################################################################
493
+
494
+ # True if the parser encountered an error during parsing.
495
+ def error?
496
+ result.failure?
497
+ end
498
+
499
+ # Parse the source and return the result.
500
+ def parse
501
+ result.comments.each do |comment|
502
+ location = comment.location
503
+ bounds(location)
504
+
505
+ if comment.is_a?(InlineComment)
506
+ on_comment(comment.slice)
507
+ else
508
+ offset = location.start_offset
509
+ lines = comment.slice.lines
510
+
511
+ lines.each_with_index do |line, index|
512
+ bounds(location.copy(start_offset: offset))
513
+
514
+ if index == 0
515
+ on_embdoc_beg(line)
516
+ elsif index == lines.size - 1
517
+ on_embdoc_end(line)
518
+ else
519
+ on_embdoc(line)
520
+ end
521
+
522
+ offset += line.bytesize
523
+ end
524
+ end
525
+ end
526
+
527
+ result.magic_comments.each do |magic_comment|
528
+ on_magic_comment(magic_comment.key, magic_comment.value)
529
+ end
530
+
531
+ unless result.data_loc.nil?
532
+ on___end__(result.data_loc.slice.each_line.first)
533
+ end
534
+
535
+ result.warnings.each do |warning|
536
+ bounds(warning.location)
537
+
538
+ if warning.level == :default
539
+ warning(warning.message)
540
+ else
541
+ case warning.type
542
+ when :ambiguous_first_argument_plus
543
+ on_arg_ambiguous("+")
544
+ when :ambiguous_first_argument_minus
545
+ on_arg_ambiguous("-")
546
+ when :ambiguous_slash
547
+ on_arg_ambiguous("/")
548
+ else
549
+ warn(warning.message)
550
+ end
551
+ end
552
+ end
553
+
554
+ if error?
555
+ result.errors.each do |error|
556
+ location = error.location
557
+ bounds(location)
558
+
559
+ case error.type
560
+ when :alias_argument
561
+ on_alias_error("can't make alias for the number variables", location.slice)
562
+ when :argument_formal_class
563
+ on_param_error("formal argument cannot be a class variable", location.slice)
564
+ when :argument_format_constant
565
+ on_param_error("formal argument cannot be a constant", location.slice)
566
+ when :argument_formal_global
567
+ on_param_error("formal argument cannot be a global variable", location.slice)
568
+ when :argument_formal_ivar
569
+ on_param_error("formal argument cannot be an instance variable", location.slice)
570
+ when :class_name, :module_name
571
+ on_class_name_error("class/module name must be CONSTANT", location.slice)
572
+ else
573
+ on_parse_error(error.message)
574
+ end
575
+ end
576
+
577
+ nil
578
+ else
579
+ result.value.accept(self)
580
+ end
581
+ end
582
+
583
+ ##########################################################################
584
+ # Visitor methods
585
+ ##########################################################################
586
+
587
+ # alias foo bar
588
+ # ^^^^^^^^^^^^^
589
+ def visit_alias_method_node(node)
590
+ new_name = visit(node.new_name)
591
+ old_name = visit(node.old_name)
592
+
593
+ bounds(node.location)
594
+ on_alias(new_name, old_name)
595
+ end
596
+
597
+ # alias $foo $bar
598
+ # ^^^^^^^^^^^^^^^
599
+ def visit_alias_global_variable_node(node)
600
+ new_name = visit_alias_global_variable_node_value(node.new_name)
601
+ old_name = visit_alias_global_variable_node_value(node.old_name)
602
+
603
+ bounds(node.location)
604
+ on_var_alias(new_name, old_name)
605
+ end
606
+
607
+ # Visit one side of an alias global variable node.
608
+ private def visit_alias_global_variable_node_value(node)
609
+ bounds(node.location)
610
+
611
+ case node
612
+ when BackReferenceReadNode
613
+ on_backref(node.slice)
614
+ when GlobalVariableReadNode
615
+ on_gvar(node.name.to_s)
616
+ else
617
+ raise
618
+ end
619
+ end
620
+
621
+ # foo => bar | baz
622
+ # ^^^^^^^^^
623
+ def visit_alternation_pattern_node(node)
624
+ left = visit_pattern_node(node.left)
625
+ right = visit_pattern_node(node.right)
626
+
627
+ bounds(node.location)
628
+ on_binary(left, :|, right)
629
+ end
630
+
631
+ # Visit a pattern within a pattern match. This is used to bypass the
632
+ # parenthesis node that can be used to wrap patterns.
633
+ private def visit_pattern_node(node)
634
+ if node.is_a?(ParenthesesNode)
635
+ visit(node.body)
636
+ else
637
+ visit(node)
638
+ end
639
+ end
640
+
641
+ # a and b
642
+ # ^^^^^^^
643
+ def visit_and_node(node)
644
+ left = visit(node.left)
645
+ right = visit(node.right)
646
+
647
+ bounds(node.location)
648
+ on_binary(left, node.operator.to_sym, right)
649
+ end
650
+
651
+ # []
652
+ # ^^
653
+ def visit_array_node(node)
654
+ case (opening = node.opening)
655
+ when /^%w/
656
+ opening_loc = node.opening_loc
657
+ bounds(opening_loc)
658
+ on_qwords_beg(opening)
659
+
660
+ elements = on_qwords_new
661
+ previous = nil
662
+
663
+ node.elements.each do |element|
664
+ visit_words_sep(opening_loc, previous, element)
665
+
666
+ bounds(element.location)
667
+ elements = on_qwords_add(elements, on_tstring_content(element.content))
668
+
669
+ previous = element
670
+ end
671
+
672
+ bounds(node.closing_loc)
673
+ on_tstring_end(node.closing)
674
+ when /^%i/
675
+ opening_loc = node.opening_loc
676
+ bounds(opening_loc)
677
+ on_qsymbols_beg(opening)
678
+
679
+ elements = on_qsymbols_new
680
+ previous = nil
681
+
682
+ node.elements.each do |element|
683
+ visit_words_sep(opening_loc, previous, element)
684
+
685
+ bounds(element.location)
686
+ elements = on_qsymbols_add(elements, on_tstring_content(element.value))
687
+
688
+ previous = element
689
+ end
690
+
691
+ bounds(node.closing_loc)
692
+ on_tstring_end(node.closing)
693
+ when /^%W/
694
+ opening_loc = node.opening_loc
695
+ bounds(opening_loc)
696
+ on_words_beg(opening)
697
+
698
+ elements = on_words_new
699
+ previous = nil
700
+
701
+ node.elements.each do |element|
702
+ visit_words_sep(opening_loc, previous, element)
703
+
704
+ bounds(element.location)
705
+ elements =
706
+ on_words_add(
707
+ elements,
708
+ if element.is_a?(StringNode)
709
+ on_word_add(on_word_new, on_tstring_content(element.content))
710
+ else
711
+ element.parts.inject(on_word_new) do |word, part|
712
+ word_part =
713
+ if part.is_a?(StringNode)
714
+ bounds(part.location)
715
+ on_tstring_content(part.content)
716
+ else
717
+ visit(part)
718
+ end
719
+
720
+ on_word_add(word, word_part)
721
+ end
722
+ end
723
+ )
724
+
725
+ previous = element
726
+ end
727
+
728
+ bounds(node.closing_loc)
729
+ on_tstring_end(node.closing)
730
+ when /^%I/
731
+ opening_loc = node.opening_loc
732
+ bounds(opening_loc)
733
+ on_symbols_beg(opening)
734
+
735
+ elements = on_symbols_new
736
+ previous = nil
737
+
738
+ node.elements.each do |element|
739
+ visit_words_sep(opening_loc, previous, element)
740
+
741
+ bounds(element.location)
742
+ elements =
743
+ on_symbols_add(
744
+ elements,
745
+ if element.is_a?(SymbolNode)
746
+ on_word_add(on_word_new, on_tstring_content(element.value))
747
+ else
748
+ element.parts.inject(on_word_new) do |word, part|
749
+ word_part =
750
+ if part.is_a?(StringNode)
751
+ bounds(part.location)
752
+ on_tstring_content(part.content)
753
+ else
754
+ visit(part)
755
+ end
756
+
757
+ on_word_add(word, word_part)
758
+ end
759
+ end
760
+ )
761
+
762
+ previous = element
763
+ end
764
+
765
+ bounds(node.closing_loc)
766
+ on_tstring_end(node.closing)
767
+ else
768
+ bounds(node.opening_loc)
769
+ on_lbracket(opening)
770
+
771
+ elements = visit_arguments(node.elements) unless node.elements.empty?
772
+
773
+ bounds(node.closing_loc)
774
+ on_rbracket(node.closing)
775
+ end
776
+
777
+ bounds(node.location)
778
+ on_array(elements)
779
+ end
780
+
781
+ # Dispatch a words_sep event that contains the space between the elements
782
+ # of list literals.
783
+ private def visit_words_sep(opening_loc, previous, current)
784
+ end_offset = (previous.nil? ? opening_loc : previous.location).end_offset
785
+ start_offset = current.location.start_offset
786
+
787
+ if end_offset != start_offset
788
+ bounds(current.location.copy(start_offset: end_offset))
789
+ on_words_sep(source.byteslice(end_offset...start_offset))
790
+ end
791
+ end
792
+
793
+ # Visit a list of elements, like the elements of an array or arguments.
794
+ private def visit_arguments(elements)
795
+ bounds(elements.first.location)
796
+ elements.inject(on_args_new) do |args, element|
797
+ arg = visit(element)
798
+ bounds(element.location)
799
+
800
+ case element
801
+ when BlockArgumentNode
802
+ on_args_add_block(args, arg)
803
+ when SplatNode
804
+ on_args_add_star(args, arg)
805
+ else
806
+ on_args_add(args, arg)
807
+ end
808
+ end
809
+ end
810
+
811
+ # foo => [bar]
812
+ # ^^^^^
813
+ def visit_array_pattern_node(node)
814
+ constant = visit(node.constant)
815
+ requireds = visit_all(node.requireds) if node.requireds.any?
816
+ rest =
817
+ if (rest_node = node.rest).is_a?(SplatNode)
818
+ if rest_node.expression.nil?
819
+ bounds(rest_node.location)
820
+ on_var_field(nil)
821
+ else
822
+ visit(rest_node.expression)
823
+ end
824
+ end
825
+
826
+ posts = visit_all(node.posts) if node.posts.any?
827
+
828
+ bounds(node.location)
829
+ on_aryptn(constant, requireds, rest, posts)
830
+ end
831
+
832
+ # foo(bar)
833
+ # ^^^
834
+ def visit_arguments_node(node)
835
+ arguments, _, _ = visit_call_node_arguments(node, nil, false)
836
+ arguments
837
+ end
838
+
839
+ # { a: 1 }
840
+ # ^^^^
841
+ def visit_assoc_node(node)
842
+ key = visit(node.key)
843
+ value = visit(node.value)
844
+
845
+ bounds(node.location)
846
+ on_assoc_new(key, value)
847
+ end
848
+
849
+ # def foo(**); bar(**); end
850
+ # ^^
851
+ #
852
+ # { **foo }
853
+ # ^^^^^
854
+ def visit_assoc_splat_node(node)
855
+ value = visit(node.value)
856
+
857
+ bounds(node.location)
858
+ on_assoc_splat(value)
859
+ end
860
+
861
+ # $+
862
+ # ^^
863
+ def visit_back_reference_read_node(node)
864
+ bounds(node.location)
865
+ on_backref(node.slice)
866
+ end
867
+
868
+ # begin end
869
+ # ^^^^^^^^^
870
+ def visit_begin_node(node)
871
+ clauses = visit_begin_node_clauses(node.begin_keyword_loc, node, false)
872
+
873
+ bounds(node.location)
874
+ on_begin(clauses)
875
+ end
876
+
877
+ # Visit the clauses of a begin node to form an on_bodystmt call.
878
+ private def visit_begin_node_clauses(location, node, allow_newline)
879
+ statements =
880
+ if node.statements.nil?
881
+ on_stmts_add(on_stmts_new, on_void_stmt)
882
+ else
883
+ body = node.statements.body
884
+ body.unshift(nil) if void_stmt?(location, node.statements.body[0].location, allow_newline)
885
+
886
+ bounds(node.statements.location)
887
+ visit_statements_node_body(body)
888
+ end
889
+
890
+ rescue_clause = visit(node.rescue_clause)
891
+ else_clause =
892
+ unless (else_clause_node = node.else_clause).nil?
893
+ else_statements =
894
+ if else_clause_node.statements.nil?
895
+ [nil]
896
+ else
897
+ body = else_clause_node.statements.body
898
+ body.unshift(nil) if void_stmt?(else_clause_node.else_keyword_loc, else_clause_node.statements.body[0].location, allow_newline)
899
+ body
900
+ end
901
+
902
+ bounds(else_clause_node.location)
903
+ visit_statements_node_body(else_statements)
904
+ end
905
+ ensure_clause = visit(node.ensure_clause)
906
+
907
+ bounds(node.location)
908
+ on_bodystmt(statements, rescue_clause, else_clause, ensure_clause)
909
+ end
910
+
911
+ # Visit the body of a structure that can have either a set of statements
912
+ # or statements wrapped in rescue/else/ensure.
913
+ private def visit_body_node(location, node, allow_newline = false)
914
+ case node
915
+ when nil
916
+ bounds(location)
917
+ on_bodystmt(visit_statements_node_body([nil]), nil, nil, nil)
918
+ when StatementsNode
919
+ body = [*node.body]
920
+ body.unshift(nil) if void_stmt?(location, body[0].location, allow_newline)
921
+ stmts = visit_statements_node_body(body)
922
+
923
+ bounds(node.body.first.location)
924
+ on_bodystmt(stmts, nil, nil, nil)
925
+ when BeginNode
926
+ visit_begin_node_clauses(location, node, allow_newline)
927
+ else
928
+ raise
929
+ end
930
+ end
931
+
932
+ # foo(&bar)
933
+ # ^^^^
934
+ def visit_block_argument_node(node)
935
+ visit(node.expression)
936
+ end
937
+
938
+ # foo { |; bar| }
939
+ # ^^^
940
+ def visit_block_local_variable_node(node)
941
+ bounds(node.location)
942
+ on_ident(node.name.to_s)
943
+ end
944
+
945
+ # Visit a BlockNode.
946
+ def visit_block_node(node)
947
+ braces = node.opening == "{"
948
+ parameters = visit(node.parameters)
949
+
950
+ body =
951
+ case node.body
952
+ when nil
953
+ bounds(node.location)
954
+ stmts = on_stmts_add(on_stmts_new, on_void_stmt)
955
+
956
+ bounds(node.location)
957
+ braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
958
+ when StatementsNode
959
+ stmts = node.body.body
960
+ stmts.unshift(nil) if void_stmt?(node.parameters&.location || node.opening_loc, node.body.location, false)
961
+ stmts = visit_statements_node_body(stmts)
962
+
963
+ bounds(node.body.location)
964
+ braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
965
+ when BeginNode
966
+ visit_body_node(node.parameters&.location || node.opening_loc, node.body)
967
+ else
968
+ raise
969
+ end
970
+
971
+ if braces
972
+ bounds(node.location)
973
+ on_brace_block(parameters, body)
974
+ else
975
+ bounds(node.location)
976
+ on_do_block(parameters, body)
977
+ end
978
+ end
979
+
980
+ # def foo(&bar); end
981
+ # ^^^^
982
+ def visit_block_parameter_node(node)
983
+ if node.name_loc.nil?
984
+ bounds(node.location)
985
+ on_blockarg(nil)
986
+ else
987
+ bounds(node.name_loc)
988
+ name = visit_token(node.name.to_s)
989
+
990
+ bounds(node.location)
991
+ on_blockarg(name)
992
+ end
993
+ end
994
+
995
+ # A block's parameters.
996
+ def visit_block_parameters_node(node)
997
+ parameters =
998
+ if node.parameters.nil?
999
+ on_params(nil, nil, nil, nil, nil, nil, nil)
1000
+ else
1001
+ visit(node.parameters)
1002
+ end
1003
+
1004
+ locals =
1005
+ if node.locals.any?
1006
+ visit_all(node.locals)
1007
+ else
1008
+ false
1009
+ end
1010
+
1011
+ bounds(node.location)
1012
+ on_block_var(parameters, locals)
1013
+ end
1014
+
1015
+ # break
1016
+ # ^^^^^
1017
+ #
1018
+ # break foo
1019
+ # ^^^^^^^^^
1020
+ def visit_break_node(node)
1021
+ if node.arguments.nil?
1022
+ bounds(node.location)
1023
+ on_break(on_args_new)
1024
+ else
1025
+ arguments = visit(node.arguments)
1026
+
1027
+ bounds(node.location)
1028
+ on_break(arguments)
1029
+ end
1030
+ end
1031
+
1032
+ # foo
1033
+ # ^^^
1034
+ #
1035
+ # foo.bar
1036
+ # ^^^^^^^
1037
+ #
1038
+ # foo.bar() {}
1039
+ # ^^^^^^^^^^^^
1040
+ def visit_call_node(node)
1041
+ if node.call_operator_loc.nil?
1042
+ case node.name
1043
+ when :[]
1044
+ receiver = visit(node.receiver)
1045
+ arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))
1046
+
1047
+ bounds(node.location)
1048
+ call = on_aref(receiver, arguments)
1049
+
1050
+ if has_ripper_block
1051
+ bounds(node.location)
1052
+ on_method_add_block(call, block)
1053
+ else
1054
+ call
1055
+ end
1056
+ when :[]=
1057
+ receiver = visit(node.receiver)
1058
+
1059
+ *arguments, last_argument = node.arguments.arguments
1060
+ arguments << node.block if !node.block.nil?
1061
+
1062
+ arguments =
1063
+ if arguments.any?
1064
+ args = visit_arguments(arguments)
1065
+
1066
+ if !node.block.nil?
1067
+ args
1068
+ else
1069
+ bounds(arguments.first.location)
1070
+ on_args_add_block(args, false)
1071
+ end
1072
+ end
1073
+
1074
+ bounds(node.location)
1075
+ call = on_aref_field(receiver, arguments)
1076
+ value = visit_write_value(last_argument)
1077
+
1078
+ bounds(last_argument.location)
1079
+ on_assign(call, value)
1080
+ when :-@, :+@, :~
1081
+ receiver = visit(node.receiver)
1082
+
1083
+ bounds(node.location)
1084
+ on_unary(node.name, receiver)
1085
+ when :!
1086
+ if node.message == "not"
1087
+ receiver =
1088
+ if !node.receiver.is_a?(ParenthesesNode) || !node.receiver.body.nil?
1089
+ visit(node.receiver)
1090
+ end
1091
+
1092
+ bounds(node.location)
1093
+ on_unary(:not, receiver)
1094
+ else
1095
+ receiver = visit(node.receiver)
1096
+
1097
+ bounds(node.location)
1098
+ on_unary(:!, receiver)
1099
+ end
1100
+ when *BINARY_OPERATORS
1101
+ receiver = visit(node.receiver)
1102
+ value = visit(node.arguments.arguments.first)
1103
+
1104
+ bounds(node.location)
1105
+ on_binary(receiver, node.name, value)
1106
+ else
1107
+ bounds(node.message_loc)
1108
+ message = visit_token(node.message, false)
1109
+
1110
+ if node.variable_call?
1111
+ on_vcall(message)
1112
+ else
1113
+ arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc || node.location))
1114
+ call =
1115
+ if node.opening_loc.nil? && get_arguments_and_block(node.arguments, node.block).first.any?
1116
+ bounds(node.location)
1117
+ on_command(message, arguments)
1118
+ elsif !node.opening_loc.nil?
1119
+ bounds(node.location)
1120
+ on_method_add_arg(on_fcall(message), on_arg_paren(arguments))
1121
+ else
1122
+ bounds(node.location)
1123
+ on_method_add_arg(on_fcall(message), on_args_new)
1124
+ end
1125
+
1126
+ if has_ripper_block
1127
+ bounds(node.block.location)
1128
+ on_method_add_block(call, block)
1129
+ else
1130
+ call
1131
+ end
1132
+ end
1133
+ end
1134
+ else
1135
+ receiver = visit(node.receiver)
1136
+
1137
+ bounds(node.call_operator_loc)
1138
+ call_operator = visit_token(node.call_operator)
1139
+
1140
+ message =
1141
+ if node.message_loc.nil?
1142
+ :call
1143
+ else
1144
+ bounds(node.message_loc)
1145
+ visit_token(node.message, false)
1146
+ end
1147
+
1148
+ if node.name.end_with?("=") && !node.message.end_with?("=") && !node.arguments.nil? && node.block.nil?
1149
+ value = visit_write_value(node.arguments.arguments.first)
1150
+
1151
+ bounds(node.location)
1152
+ on_assign(on_field(receiver, call_operator, message), value)
1153
+ else
1154
+ arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc || node.location))
1155
+ call =
1156
+ if node.opening_loc.nil?
1157
+ bounds(node.location)
1158
+
1159
+ if node.arguments.nil? && !node.block.is_a?(BlockArgumentNode)
1160
+ on_call(receiver, call_operator, message)
1161
+ else
1162
+ on_command_call(receiver, call_operator, message, arguments)
1163
+ end
1164
+ else
1165
+ bounds(node.opening_loc)
1166
+ arguments = on_arg_paren(arguments)
1167
+
1168
+ bounds(node.location)
1169
+ on_method_add_arg(on_call(receiver, call_operator, message), arguments)
1170
+ end
1171
+
1172
+ if has_ripper_block
1173
+ bounds(node.block.location)
1174
+ on_method_add_block(call, block)
1175
+ else
1176
+ call
1177
+ end
1178
+ end
1179
+ end
1180
+ end
1181
+
1182
+ # Extract the arguments and block Ripper-style, which means if the block
1183
+ # is like `&b` then it's moved to arguments.
1184
+ private def get_arguments_and_block(arguments_node, block_node)
1185
+ arguments = arguments_node&.arguments || []
1186
+ block = block_node
1187
+
1188
+ if block.is_a?(BlockArgumentNode)
1189
+ arguments += [block]
1190
+ block = nil
1191
+ end
1192
+
1193
+ [arguments, block]
1194
+ end
1195
+
1196
+ # Visit the arguments and block of a call node and return the arguments
1197
+ # and block as they should be used.
1198
+ private def visit_call_node_arguments(arguments_node, block_node, trailing_comma)
1199
+ arguments, block = get_arguments_and_block(arguments_node, block_node)
1200
+
1201
+ [
1202
+ if arguments.length == 1 && arguments.first.is_a?(ForwardingArgumentsNode)
1203
+ visit(arguments.first)
1204
+ elsif arguments.any?
1205
+ args = visit_arguments(arguments)
1206
+
1207
+ if block_node.is_a?(BlockArgumentNode) || arguments.last.is_a?(ForwardingArgumentsNode) || command?(arguments.last) || trailing_comma
1208
+ args
1209
+ else
1210
+ bounds(arguments.first.location)
1211
+ on_args_add_block(args, false)
1212
+ end
1213
+ end,
1214
+ visit(block),
1215
+ block != nil,
1216
+ ]
1217
+ end
1218
+
1219
+ # Returns true if the given node is a command node.
1220
+ private def command?(node)
1221
+ node.is_a?(CallNode) &&
1222
+ node.opening_loc.nil? &&
1223
+ (!node.arguments.nil? || node.block.is_a?(BlockArgumentNode)) &&
1224
+ !BINARY_OPERATORS.include?(node.name)
1225
+ end
1226
+
1227
+ # foo.bar += baz
1228
+ # ^^^^^^^^^^^^^^^
1229
+ def visit_call_operator_write_node(node)
1230
+ receiver = visit(node.receiver)
1231
+
1232
+ bounds(node.call_operator_loc)
1233
+ call_operator = visit_token(node.call_operator)
1234
+
1235
+ bounds(node.message_loc)
1236
+ message = visit_token(node.message)
1237
+
1238
+ bounds(node.location)
1239
+ target = on_field(receiver, call_operator, message)
1240
+
1241
+ bounds(node.binary_operator_loc)
1242
+ operator = on_op("#{node.binary_operator}=")
1243
+ value = visit_write_value(node.value)
1244
+
1245
+ bounds(node.location)
1246
+ on_opassign(target, operator, value)
1247
+ end
1248
+
1249
+ # foo.bar &&= baz
1250
+ # ^^^^^^^^^^^^^^^
1251
+ def visit_call_and_write_node(node)
1252
+ receiver = visit(node.receiver)
1253
+
1254
+ bounds(node.call_operator_loc)
1255
+ call_operator = visit_token(node.call_operator)
1256
+
1257
+ bounds(node.message_loc)
1258
+ message = visit_token(node.message)
1259
+
1260
+ bounds(node.location)
1261
+ target = on_field(receiver, call_operator, message)
1262
+
1263
+ bounds(node.operator_loc)
1264
+ operator = on_op("&&=")
1265
+ value = visit_write_value(node.value)
1266
+
1267
+ bounds(node.location)
1268
+ on_opassign(target, operator, value)
1269
+ end
1270
+
1271
+ # foo.bar ||= baz
1272
+ # ^^^^^^^^^^^^^^^
1273
+ def visit_call_or_write_node(node)
1274
+ receiver = visit(node.receiver)
1275
+
1276
+ bounds(node.call_operator_loc)
1277
+ call_operator = visit_token(node.call_operator)
1278
+
1279
+ bounds(node.message_loc)
1280
+ message = visit_token(node.message)
1281
+
1282
+ bounds(node.location)
1283
+ target = on_field(receiver, call_operator, message)
1284
+
1285
+ bounds(node.operator_loc)
1286
+ operator = on_op("||=")
1287
+ value = visit_write_value(node.value)
1288
+
1289
+ bounds(node.location)
1290
+ on_opassign(target, operator, value)
1291
+ end
1292
+
1293
+ # foo.bar, = 1
1294
+ # ^^^^^^^
1295
+ def visit_call_target_node(node)
1296
+ if node.call_operator == "::"
1297
+ receiver = visit(node.receiver)
1298
+
1299
+ bounds(node.message_loc)
1300
+ message = visit_token(node.message)
1301
+
1302
+ bounds(node.location)
1303
+ on_const_path_field(receiver, message)
1304
+ else
1305
+ receiver = visit(node.receiver)
1306
+
1307
+ bounds(node.call_operator_loc)
1308
+ call_operator = visit_token(node.call_operator)
1309
+
1310
+ bounds(node.message_loc)
1311
+ message = visit_token(node.message)
1312
+
1313
+ bounds(node.location)
1314
+ on_field(receiver, call_operator, message)
1315
+ end
1316
+ end
1317
+
1318
+ # foo => bar => baz
1319
+ # ^^^^^^^^^^
1320
+ def visit_capture_pattern_node(node)
1321
+ value = visit(node.value)
1322
+ target = visit(node.target)
1323
+
1324
+ bounds(node.location)
1325
+ on_binary(value, :"=>", target)
1326
+ end
1327
+
1328
+ # case foo; when bar; end
1329
+ # ^^^^^^^^^^^^^^^^^^^^^^^
1330
+ def visit_case_node(node)
1331
+ predicate = visit(node.predicate)
1332
+ clauses =
1333
+ node.conditions.reverse_each.inject(visit(node.else_clause)) do |current, condition|
1334
+ on_when(*visit(condition), current)
1335
+ end
1336
+
1337
+ bounds(node.location)
1338
+ on_case(predicate, clauses)
1339
+ end
1340
+
1341
+ # case foo; in bar; end
1342
+ # ^^^^^^^^^^^^^^^^^^^^^
1343
+ def visit_case_match_node(node)
1344
+ predicate = visit(node.predicate)
1345
+ clauses =
1346
+ node.conditions.reverse_each.inject(visit(node.else_clause)) do |current, condition|
1347
+ on_in(*visit(condition), current)
1348
+ end
1349
+
1350
+ bounds(node.location)
1351
+ on_case(predicate, clauses)
1352
+ end
1353
+
1354
+ # class Foo; end
1355
+ # ^^^^^^^^^^^^^^
1356
+ def visit_class_node(node)
1357
+ constant_path =
1358
+ if node.constant_path.is_a?(ConstantReadNode)
1359
+ bounds(node.constant_path.location)
1360
+ on_const_ref(on_const(node.constant_path.name.to_s))
1361
+ else
1362
+ visit(node.constant_path)
1363
+ end
1364
+
1365
+ superclass = visit(node.superclass)
1366
+ bodystmt = visit_body_node(node.superclass&.location || node.constant_path.location, node.body, node.superclass.nil?)
1367
+
1368
+ bounds(node.location)
1369
+ on_class(constant_path, superclass, bodystmt)
1370
+ end
1371
+
1372
+ # @@foo
1373
+ # ^^^^^
1374
+ def visit_class_variable_read_node(node)
1375
+ bounds(node.location)
1376
+ on_var_ref(on_cvar(node.slice))
1377
+ end
1378
+
1379
+ # @@foo = 1
1380
+ # ^^^^^^^^^
1381
+ #
1382
+ # @@foo, @@bar = 1
1383
+ # ^^^^^ ^^^^^
1384
+ def visit_class_variable_write_node(node)
1385
+ bounds(node.name_loc)
1386
+ target = on_var_field(on_cvar(node.name.to_s))
1387
+ value = visit_write_value(node.value)
1388
+
1389
+ bounds(node.location)
1390
+ on_assign(target, value)
1391
+ end
1392
+
1393
+ # @@foo += bar
1394
+ # ^^^^^^^^^^^^
1395
+ def visit_class_variable_operator_write_node(node)
1396
+ bounds(node.name_loc)
1397
+ target = on_var_field(on_cvar(node.name.to_s))
1398
+
1399
+ bounds(node.binary_operator_loc)
1400
+ operator = on_op("#{node.binary_operator}=")
1401
+ value = visit_write_value(node.value)
1402
+
1403
+ bounds(node.location)
1404
+ on_opassign(target, operator, value)
1405
+ end
1406
+
1407
+ # @@foo &&= bar
1408
+ # ^^^^^^^^^^^^^
1409
+ def visit_class_variable_and_write_node(node)
1410
+ bounds(node.name_loc)
1411
+ target = on_var_field(on_cvar(node.name.to_s))
1412
+
1413
+ bounds(node.operator_loc)
1414
+ operator = on_op("&&=")
1415
+ value = visit_write_value(node.value)
1416
+
1417
+ bounds(node.location)
1418
+ on_opassign(target, operator, value)
1419
+ end
1420
+
1421
+ # @@foo ||= bar
1422
+ # ^^^^^^^^^^^^^
1423
+ def visit_class_variable_or_write_node(node)
1424
+ bounds(node.name_loc)
1425
+ target = on_var_field(on_cvar(node.name.to_s))
1426
+
1427
+ bounds(node.operator_loc)
1428
+ operator = on_op("||=")
1429
+ value = visit_write_value(node.value)
1430
+
1431
+ bounds(node.location)
1432
+ on_opassign(target, operator, value)
1433
+ end
1434
+
1435
+ # @@foo, = bar
1436
+ # ^^^^^
1437
+ def visit_class_variable_target_node(node)
1438
+ bounds(node.location)
1439
+ on_var_field(on_cvar(node.name.to_s))
1440
+ end
1441
+
1442
+ # Foo
1443
+ # ^^^
1444
+ def visit_constant_read_node(node)
1445
+ bounds(node.location)
1446
+ on_var_ref(on_const(node.name.to_s))
1447
+ end
1448
+
1449
+ # Foo = 1
1450
+ # ^^^^^^^
1451
+ #
1452
+ # Foo, Bar = 1
1453
+ # ^^^ ^^^
1454
+ def visit_constant_write_node(node)
1455
+ bounds(node.name_loc)
1456
+ target = on_var_field(on_const(node.name.to_s))
1457
+ value = visit_write_value(node.value)
1458
+
1459
+ bounds(node.location)
1460
+ on_assign(target, value)
1461
+ end
1462
+
1463
+ # Foo += bar
1464
+ # ^^^^^^^^^^^
1465
+ def visit_constant_operator_write_node(node)
1466
+ bounds(node.name_loc)
1467
+ target = on_var_field(on_const(node.name.to_s))
1468
+
1469
+ bounds(node.binary_operator_loc)
1470
+ operator = on_op("#{node.binary_operator}=")
1471
+ value = visit_write_value(node.value)
1472
+
1473
+ bounds(node.location)
1474
+ on_opassign(target, operator, value)
1475
+ end
1476
+
1477
+ # Foo &&= bar
1478
+ # ^^^^^^^^^^^^
1479
+ def visit_constant_and_write_node(node)
1480
+ bounds(node.name_loc)
1481
+ target = on_var_field(on_const(node.name.to_s))
1482
+
1483
+ bounds(node.operator_loc)
1484
+ operator = on_op("&&=")
1485
+ value = visit_write_value(node.value)
1486
+
1487
+ bounds(node.location)
1488
+ on_opassign(target, operator, value)
1489
+ end
1490
+
1491
+ # Foo ||= bar
1492
+ # ^^^^^^^^^^^^
1493
+ def visit_constant_or_write_node(node)
1494
+ bounds(node.name_loc)
1495
+ target = on_var_field(on_const(node.name.to_s))
1496
+
1497
+ bounds(node.operator_loc)
1498
+ operator = on_op("||=")
1499
+ value = visit_write_value(node.value)
1500
+
1501
+ bounds(node.location)
1502
+ on_opassign(target, operator, value)
1503
+ end
1504
+
1505
+ # Foo, = bar
1506
+ # ^^^
1507
+ def visit_constant_target_node(node)
1508
+ bounds(node.location)
1509
+ on_var_field(on_const(node.name.to_s))
1510
+ end
1511
+
1512
+ # Foo::Bar
1513
+ # ^^^^^^^^
1514
+ def visit_constant_path_node(node)
1515
+ if node.parent.nil?
1516
+ bounds(node.name_loc)
1517
+ child = on_const(node.name.to_s)
1518
+
1519
+ bounds(node.location)
1520
+ on_top_const_ref(child)
1521
+ else
1522
+ parent = visit(node.parent)
1523
+
1524
+ bounds(node.name_loc)
1525
+ child = on_const(node.name.to_s)
1526
+
1527
+ bounds(node.location)
1528
+ on_const_path_ref(parent, child)
1529
+ end
1530
+ end
1531
+
1532
+ # Foo::Bar = 1
1533
+ # ^^^^^^^^^^^^
1534
+ #
1535
+ # Foo::Foo, Bar::Bar = 1
1536
+ # ^^^^^^^^ ^^^^^^^^
1537
+ def visit_constant_path_write_node(node)
1538
+ target = visit_constant_path_write_node_target(node.target)
1539
+ value = visit_write_value(node.value)
1540
+
1541
+ bounds(node.location)
1542
+ on_assign(target, value)
1543
+ end
1544
+
1545
+ # Visit a constant path that is part of a write node.
1546
+ private def visit_constant_path_write_node_target(node)
1547
+ if node.parent.nil?
1548
+ bounds(node.name_loc)
1549
+ child = on_const(node.name.to_s)
1550
+
1551
+ bounds(node.location)
1552
+ on_top_const_field(child)
1553
+ else
1554
+ parent = visit(node.parent)
1555
+
1556
+ bounds(node.name_loc)
1557
+ child = on_const(node.name.to_s)
1558
+
1559
+ bounds(node.location)
1560
+ on_const_path_field(parent, child)
1561
+ end
1562
+ end
1563
+
1564
+ # Foo::Bar += baz
1565
+ # ^^^^^^^^^^^^^^^
1566
+ def visit_constant_path_operator_write_node(node)
1567
+ target = visit_constant_path_write_node_target(node.target)
1568
+ value = visit(node.value)
1569
+
1570
+ bounds(node.binary_operator_loc)
1571
+ operator = on_op("#{node.binary_operator}=")
1572
+ value = visit_write_value(node.value)
1573
+
1574
+ bounds(node.location)
1575
+ on_opassign(target, operator, value)
1576
+ end
1577
+
1578
+ # Foo::Bar &&= baz
1579
+ # ^^^^^^^^^^^^^^^^
1580
+ def visit_constant_path_and_write_node(node)
1581
+ target = visit_constant_path_write_node_target(node.target)
1582
+ value = visit(node.value)
1583
+
1584
+ bounds(node.operator_loc)
1585
+ operator = on_op("&&=")
1586
+ value = visit_write_value(node.value)
1587
+
1588
+ bounds(node.location)
1589
+ on_opassign(target, operator, value)
1590
+ end
1591
+
1592
+ # Foo::Bar ||= baz
1593
+ # ^^^^^^^^^^^^^^^^
1594
+ def visit_constant_path_or_write_node(node)
1595
+ target = visit_constant_path_write_node_target(node.target)
1596
+ value = visit(node.value)
1597
+
1598
+ bounds(node.operator_loc)
1599
+ operator = on_op("||=")
1600
+ value = visit_write_value(node.value)
1601
+
1602
+ bounds(node.location)
1603
+ on_opassign(target, operator, value)
1604
+ end
1605
+
1606
+ # Foo::Bar, = baz
1607
+ # ^^^^^^^^
1608
+ def visit_constant_path_target_node(node)
1609
+ visit_constant_path_write_node_target(node)
1610
+ end
1611
+
1612
+ # def foo; end
1613
+ # ^^^^^^^^^^^^
1614
+ #
1615
+ # def self.foo; end
1616
+ # ^^^^^^^^^^^^^^^^^
1617
+ def visit_def_node(node)
1618
+ receiver = visit(node.receiver)
1619
+ operator =
1620
+ if !node.operator_loc.nil?
1621
+ bounds(node.operator_loc)
1622
+ visit_token(node.operator)
1623
+ end
1624
+
1625
+ bounds(node.name_loc)
1626
+ name = visit_token(node.name_loc.slice)
1627
+
1628
+ parameters =
1629
+ if node.parameters.nil?
1630
+ bounds(node.location)
1631
+ on_params(nil, nil, nil, nil, nil, nil, nil)
1632
+ else
1633
+ visit(node.parameters)
1634
+ end
1635
+
1636
+ if !node.lparen_loc.nil?
1637
+ bounds(node.lparen_loc)
1638
+ parameters = on_paren(parameters)
1639
+ end
1640
+
1641
+ bodystmt =
1642
+ if node.equal_loc.nil?
1643
+ visit_body_node(node.rparen_loc || node.end_keyword_loc, node.body)
1644
+ else
1645
+ body = visit(node.body.body.first)
1646
+
1647
+ bounds(node.body.location)
1648
+ on_bodystmt(body, nil, nil, nil)
1649
+ end
1650
+
1651
+ bounds(node.location)
1652
+ if receiver
1653
+ on_defs(receiver, operator, name, parameters, bodystmt)
1654
+ else
1655
+ on_def(name, parameters, bodystmt)
1656
+ end
1657
+ end
1658
+
1659
+ # defined? a
1660
+ # ^^^^^^^^^^
1661
+ #
1662
+ # defined?(a)
1663
+ # ^^^^^^^^^^^
1664
+ def visit_defined_node(node)
1665
+ expression = visit(node.value)
1666
+
1667
+ # Very weird circumstances here where something like:
1668
+ #
1669
+ # defined?
1670
+ # (1)
1671
+ #
1672
+ # gets parsed in Ruby as having only the `1` expression but in Ripper it
1673
+ # gets parsed as having a parentheses node. In this case we need to
1674
+ # synthesize that node to match Ripper's behavior.
1675
+ if node.lparen_loc && node.keyword_loc.join(node.lparen_loc).slice.include?("\n")
1676
+ bounds(node.lparen_loc.join(node.rparen_loc))
1677
+ expression = on_paren(on_stmts_add(on_stmts_new, expression))
1678
+ end
1679
+
1680
+ bounds(node.location)
1681
+ on_defined(expression)
1682
+ end
1683
+
1684
+ # if foo then bar else baz end
1685
+ # ^^^^^^^^^^^^
1686
+ def visit_else_node(node)
1687
+ statements =
1688
+ if node.statements.nil?
1689
+ [nil]
1690
+ else
1691
+ body = node.statements.body
1692
+ body.unshift(nil) if void_stmt?(node.else_keyword_loc, node.statements.body[0].location, false)
1693
+ body
1694
+ end
1695
+
1696
+ bounds(node.location)
1697
+ on_else(visit_statements_node_body(statements))
1698
+ end
1699
+
1700
+ # "foo #{bar}"
1701
+ # ^^^^^^
1702
+ def visit_embedded_statements_node(node)
1703
+ bounds(node.opening_loc)
1704
+ on_embexpr_beg(node.opening)
1705
+
1706
+ statements =
1707
+ if node.statements.nil?
1708
+ bounds(node.location)
1709
+ on_stmts_add(on_stmts_new, on_void_stmt)
1710
+ else
1711
+ visit(node.statements)
1712
+ end
1713
+
1714
+ bounds(node.closing_loc)
1715
+ on_embexpr_end(node.closing)
1716
+
1717
+ bounds(node.location)
1718
+ on_string_embexpr(statements)
1719
+ end
1720
+
1721
+ # "foo #@bar"
1722
+ # ^^^^^
1723
+ def visit_embedded_variable_node(node)
1724
+ bounds(node.operator_loc)
1725
+ on_embvar(node.operator)
1726
+
1727
+ variable = visit(node.variable)
1728
+
1729
+ bounds(node.location)
1730
+ on_string_dvar(variable)
1731
+ end
1732
+
1733
+ # Visit an EnsureNode node.
1734
+ def visit_ensure_node(node)
1735
+ statements =
1736
+ if node.statements.nil?
1737
+ [nil]
1738
+ else
1739
+ body = node.statements.body
1740
+ body.unshift(nil) if void_stmt?(node.ensure_keyword_loc, body[0].location, false)
1741
+ body
1742
+ end
1743
+
1744
+ statements = visit_statements_node_body(statements)
1745
+
1746
+ bounds(node.location)
1747
+ on_ensure(statements)
1748
+ end
1749
+
1750
+ # false
1751
+ # ^^^^^
1752
+ def visit_false_node(node)
1753
+ bounds(node.location)
1754
+ on_var_ref(on_kw("false"))
1755
+ end
1756
+
1757
+ # foo => [*, bar, *]
1758
+ # ^^^^^^^^^^^
1759
+ def visit_find_pattern_node(node)
1760
+ constant = visit(node.constant)
1761
+ left =
1762
+ if node.left.expression.nil?
1763
+ bounds(node.left.location)
1764
+ on_var_field(nil)
1765
+ else
1766
+ visit(node.left.expression)
1767
+ end
1768
+
1769
+ requireds = visit_all(node.requireds) if node.requireds.any?
1770
+ right =
1771
+ if node.right.expression.nil?
1772
+ bounds(node.right.location)
1773
+ on_var_field(nil)
1774
+ else
1775
+ visit(node.right.expression)
1776
+ end
1777
+
1778
+ bounds(node.location)
1779
+ on_fndptn(constant, left, requireds, right)
1780
+ end
1781
+
1782
+ # if foo .. bar; end
1783
+ # ^^^^^^^^^^
1784
+ def visit_flip_flop_node(node)
1785
+ left = visit(node.left)
1786
+ right = visit(node.right)
1787
+
1788
+ bounds(node.location)
1789
+ if node.exclude_end?
1790
+ on_dot3(left, right)
1791
+ else
1792
+ on_dot2(left, right)
1793
+ end
1794
+ end
1795
+
1796
+ # 1.0
1797
+ # ^^^
1798
+ def visit_float_node(node)
1799
+ visit_number_node(node) { |text| on_float(text) }
1800
+ end
1801
+
1802
+ # for foo in bar do end
1803
+ # ^^^^^^^^^^^^^^^^^^^^^
1804
+ def visit_for_node(node)
1805
+ index = visit(node.index)
1806
+ collection = visit(node.collection)
1807
+ statements =
1808
+ if node.statements.nil?
1809
+ bounds(node.location)
1810
+ on_stmts_add(on_stmts_new, on_void_stmt)
1811
+ else
1812
+ visit(node.statements)
1813
+ end
1814
+
1815
+ bounds(node.location)
1816
+ on_for(index, collection, statements)
1817
+ end
1818
+
1819
+ # def foo(...); bar(...); end
1820
+ # ^^^
1821
+ def visit_forwarding_arguments_node(node)
1822
+ bounds(node.location)
1823
+ on_args_forward
1824
+ end
1825
+
1826
+ # def foo(...); end
1827
+ # ^^^
1828
+ def visit_forwarding_parameter_node(node)
1829
+ bounds(node.location)
1830
+ on_args_forward
1831
+ end
1832
+
1833
+ # super
1834
+ # ^^^^^
1835
+ #
1836
+ # super {}
1837
+ # ^^^^^^^^
1838
+ def visit_forwarding_super_node(node)
1839
+ if node.block.nil?
1840
+ bounds(node.location)
1841
+ on_zsuper
1842
+ else
1843
+ block = visit(node.block)
1844
+
1845
+ bounds(node.location)
1846
+ on_method_add_block(on_zsuper, block)
1847
+ end
1848
+ end
1849
+
1850
+ # $foo
1851
+ # ^^^^
1852
+ def visit_global_variable_read_node(node)
1853
+ bounds(node.location)
1854
+ on_var_ref(on_gvar(node.name.to_s))
1855
+ end
1856
+
1857
+ # $foo = 1
1858
+ # ^^^^^^^^
1859
+ #
1860
+ # $foo, $bar = 1
1861
+ # ^^^^ ^^^^
1862
+ def visit_global_variable_write_node(node)
1863
+ bounds(node.name_loc)
1864
+ target = on_var_field(on_gvar(node.name.to_s))
1865
+ value = visit_write_value(node.value)
1866
+
1867
+ bounds(node.location)
1868
+ on_assign(target, value)
1869
+ end
1870
+
1871
+ # $foo += bar
1872
+ # ^^^^^^^^^^^
1873
+ def visit_global_variable_operator_write_node(node)
1874
+ bounds(node.name_loc)
1875
+ target = on_var_field(on_gvar(node.name.to_s))
1876
+
1877
+ bounds(node.binary_operator_loc)
1878
+ operator = on_op("#{node.binary_operator}=")
1879
+ value = visit_write_value(node.value)
1880
+
1881
+ bounds(node.location)
1882
+ on_opassign(target, operator, value)
1883
+ end
1884
+
1885
+ # $foo &&= bar
1886
+ # ^^^^^^^^^^^^
1887
+ def visit_global_variable_and_write_node(node)
1888
+ bounds(node.name_loc)
1889
+ target = on_var_field(on_gvar(node.name.to_s))
1890
+
1891
+ bounds(node.operator_loc)
1892
+ operator = on_op("&&=")
1893
+ value = visit_write_value(node.value)
1894
+
1895
+ bounds(node.location)
1896
+ on_opassign(target, operator, value)
1897
+ end
1898
+
1899
+ # $foo ||= bar
1900
+ # ^^^^^^^^^^^^
1901
+ def visit_global_variable_or_write_node(node)
1902
+ bounds(node.name_loc)
1903
+ target = on_var_field(on_gvar(node.name.to_s))
1904
+
1905
+ bounds(node.operator_loc)
1906
+ operator = on_op("||=")
1907
+ value = visit_write_value(node.value)
1908
+
1909
+ bounds(node.location)
1910
+ on_opassign(target, operator, value)
1911
+ end
1912
+
1913
+ # $foo, = bar
1914
+ # ^^^^
1915
+ def visit_global_variable_target_node(node)
1916
+ bounds(node.location)
1917
+ on_var_field(on_gvar(node.name.to_s))
1918
+ end
1919
+
1920
+ # {}
1921
+ # ^^
1922
+ def visit_hash_node(node)
1923
+ elements =
1924
+ if node.elements.any?
1925
+ args = visit_all(node.elements)
1926
+
1927
+ bounds(node.elements.first.location)
1928
+ on_assoclist_from_args(args)
1929
+ end
1930
+
1931
+ bounds(node.location)
1932
+ on_hash(elements)
1933
+ end
1934
+
1935
+ # foo => {}
1936
+ # ^^
1937
+ def visit_hash_pattern_node(node)
1938
+ constant = visit(node.constant)
1939
+ elements =
1940
+ if node.elements.any? || !node.rest.nil?
1941
+ node.elements.map do |element|
1942
+ [
1943
+ if (key = element.key).opening_loc.nil?
1944
+ visit(key)
1945
+ else
1946
+ bounds(key.value_loc)
1947
+ if (value = key.value).empty?
1948
+ on_string_content
1949
+ else
1950
+ on_string_add(on_string_content, on_tstring_content(value))
1951
+ end
1952
+ end,
1953
+ visit(element.value)
1954
+ ]
1955
+ end
1956
+ end
1957
+
1958
+ rest =
1959
+ case node.rest
1960
+ when AssocSplatNode
1961
+ visit(node.rest.value)
1962
+ when NoKeywordsParameterNode
1963
+ bounds(node.rest.location)
1964
+ on_var_field(visit(node.rest))
1965
+ end
1966
+
1967
+ bounds(node.location)
1968
+ on_hshptn(constant, elements, rest)
1969
+ end
1970
+
1971
+ # if foo then bar end
1972
+ # ^^^^^^^^^^^^^^^^^^^
1973
+ #
1974
+ # bar if foo
1975
+ # ^^^^^^^^^^
1976
+ #
1977
+ # foo ? bar : baz
1978
+ # ^^^^^^^^^^^^^^^
1979
+ def visit_if_node(node)
1980
+ if node.then_keyword == "?"
1981
+ predicate = visit(node.predicate)
1982
+ truthy = visit(node.statements.body.first)
1983
+ falsy = visit(node.subsequent.statements.body.first)
1984
+
1985
+ bounds(node.location)
1986
+ on_ifop(predicate, truthy, falsy)
1987
+ elsif node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
1988
+ predicate = visit(node.predicate)
1989
+ statements =
1990
+ if node.statements.nil?
1991
+ bounds(node.location)
1992
+ on_stmts_add(on_stmts_new, on_void_stmt)
1993
+ else
1994
+ visit(node.statements)
1995
+ end
1996
+ subsequent = visit(node.subsequent)
1997
+
1998
+ bounds(node.location)
1999
+ if node.if_keyword == "if"
2000
+ on_if(predicate, statements, subsequent)
2001
+ else
2002
+ on_elsif(predicate, statements, subsequent)
2003
+ end
2004
+ else
2005
+ statements = visit(node.statements.body.first)
2006
+ predicate = visit(node.predicate)
2007
+
2008
+ bounds(node.location)
2009
+ on_if_mod(predicate, statements)
2010
+ end
2011
+ end
2012
+
2013
+ # 1i
2014
+ # ^^
2015
+ def visit_imaginary_node(node)
2016
+ visit_number_node(node) { |text| on_imaginary(text) }
2017
+ end
2018
+
2019
+ # { foo: }
2020
+ # ^^^^
2021
+ def visit_implicit_node(node)
2022
+ end
2023
+
2024
+ # foo { |bar,| }
2025
+ # ^
2026
+ def visit_implicit_rest_node(node)
2027
+ bounds(node.location)
2028
+ on_excessed_comma
2029
+ end
2030
+
2031
+ # case foo; in bar; end
2032
+ # ^^^^^^^^^^^^^^^^^^^^^
2033
+ def visit_in_node(node)
2034
+ # This is a special case where we're not going to call on_in directly
2035
+ # because we don't have access to the subsequent. Instead, we'll return
2036
+ # the component parts and let the parent node handle it.
2037
+ pattern = visit_pattern_node(node.pattern)
2038
+ statements =
2039
+ if node.statements.nil?
2040
+ bounds(node.location)
2041
+ on_stmts_add(on_stmts_new, on_void_stmt)
2042
+ else
2043
+ visit(node.statements)
2044
+ end
2045
+
2046
+ [pattern, statements]
2047
+ end
2048
+
2049
+ # foo[bar] += baz
2050
+ # ^^^^^^^^^^^^^^^
2051
+ def visit_index_operator_write_node(node)
2052
+ receiver = visit(node.receiver)
2053
+ arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))
2054
+
2055
+ bounds(node.location)
2056
+ target = on_aref_field(receiver, arguments)
2057
+
2058
+ bounds(node.binary_operator_loc)
2059
+ operator = on_op("#{node.binary_operator}=")
2060
+ value = visit_write_value(node.value)
2061
+
2062
+ bounds(node.location)
2063
+ on_opassign(target, operator, value)
2064
+ end
2065
+
2066
+ # foo[bar] &&= baz
2067
+ # ^^^^^^^^^^^^^^^^
2068
+ def visit_index_and_write_node(node)
2069
+ receiver = visit(node.receiver)
2070
+ arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))
2071
+
2072
+ bounds(node.location)
2073
+ target = on_aref_field(receiver, arguments)
2074
+
2075
+ bounds(node.operator_loc)
2076
+ operator = on_op("&&=")
2077
+ value = visit_write_value(node.value)
2078
+
2079
+ bounds(node.location)
2080
+ on_opassign(target, operator, value)
2081
+ end
2082
+
2083
+ # foo[bar] ||= baz
2084
+ # ^^^^^^^^^^^^^^^^
2085
+ def visit_index_or_write_node(node)
2086
+ receiver = visit(node.receiver)
2087
+ arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))
2088
+
2089
+ bounds(node.location)
2090
+ target = on_aref_field(receiver, arguments)
2091
+
2092
+ bounds(node.operator_loc)
2093
+ operator = on_op("||=")
2094
+ value = visit_write_value(node.value)
2095
+
2096
+ bounds(node.location)
2097
+ on_opassign(target, operator, value)
2098
+ end
2099
+
2100
+ # foo[bar], = 1
2101
+ # ^^^^^^^^
2102
+ def visit_index_target_node(node)
2103
+ receiver = visit(node.receiver)
2104
+ arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))
2105
+
2106
+ bounds(node.location)
2107
+ on_aref_field(receiver, arguments)
2108
+ end
2109
+
2110
+ # @foo
2111
+ # ^^^^
2112
+ def visit_instance_variable_read_node(node)
2113
+ bounds(node.location)
2114
+ on_var_ref(on_ivar(node.name.to_s))
2115
+ end
2116
+
2117
+ # @foo = 1
2118
+ # ^^^^^^^^
2119
+ def visit_instance_variable_write_node(node)
2120
+ bounds(node.name_loc)
2121
+ target = on_var_field(on_ivar(node.name.to_s))
2122
+ value = visit_write_value(node.value)
2123
+
2124
+ bounds(node.location)
2125
+ on_assign(target, value)
2126
+ end
2127
+
2128
+ # @foo += bar
2129
+ # ^^^^^^^^^^^
2130
+ def visit_instance_variable_operator_write_node(node)
2131
+ bounds(node.name_loc)
2132
+ target = on_var_field(on_ivar(node.name.to_s))
2133
+
2134
+ bounds(node.binary_operator_loc)
2135
+ operator = on_op("#{node.binary_operator}=")
2136
+ value = visit_write_value(node.value)
2137
+
2138
+ bounds(node.location)
2139
+ on_opassign(target, operator, value)
2140
+ end
2141
+
2142
+ # @foo &&= bar
2143
+ # ^^^^^^^^^^^^
2144
+ def visit_instance_variable_and_write_node(node)
2145
+ bounds(node.name_loc)
2146
+ target = on_var_field(on_ivar(node.name.to_s))
2147
+
2148
+ bounds(node.operator_loc)
2149
+ operator = on_op("&&=")
2150
+ value = visit_write_value(node.value)
2151
+
2152
+ bounds(node.location)
2153
+ on_opassign(target, operator, value)
2154
+ end
2155
+
2156
+ # @foo ||= bar
2157
+ # ^^^^^^^^^^^^
2158
+ def visit_instance_variable_or_write_node(node)
2159
+ bounds(node.name_loc)
2160
+ target = on_var_field(on_ivar(node.name.to_s))
2161
+
2162
+ bounds(node.operator_loc)
2163
+ operator = on_op("||=")
2164
+ value = visit_write_value(node.value)
2165
+
2166
+ bounds(node.location)
2167
+ on_opassign(target, operator, value)
2168
+ end
2169
+
2170
+ # @foo, = bar
2171
+ # ^^^^
2172
+ def visit_instance_variable_target_node(node)
2173
+ bounds(node.location)
2174
+ on_var_field(on_ivar(node.name.to_s))
2175
+ end
2176
+
2177
+ # 1
2178
+ # ^
2179
+ def visit_integer_node(node)
2180
+ visit_number_node(node) { |text| on_int(text) }
2181
+ end
2182
+
2183
+ # if /foo #{bar}/ then end
2184
+ # ^^^^^^^^^^^^
2185
+ def visit_interpolated_match_last_line_node(node)
2186
+ bounds(node.opening_loc)
2187
+ on_regexp_beg(node.opening)
2188
+
2189
+ bounds(node.parts.first.location)
2190
+ parts =
2191
+ node.parts.inject(on_regexp_new) do |content, part|
2192
+ on_regexp_add(content, visit_string_content(part))
2193
+ end
2194
+
2195
+ bounds(node.closing_loc)
2196
+ closing = on_regexp_end(node.closing)
2197
+
2198
+ bounds(node.location)
2199
+ on_regexp_literal(parts, closing)
2200
+ end
2201
+
2202
+ # /foo #{bar}/
2203
+ # ^^^^^^^^^^^^
2204
+ def visit_interpolated_regular_expression_node(node)
2205
+ bounds(node.opening_loc)
2206
+ on_regexp_beg(node.opening)
2207
+
2208
+ bounds(node.parts.first.location)
2209
+ parts =
2210
+ node.parts.inject(on_regexp_new) do |content, part|
2211
+ on_regexp_add(content, visit_string_content(part))
2212
+ end
2213
+
2214
+ bounds(node.closing_loc)
2215
+ closing = on_regexp_end(node.closing)
2216
+
2217
+ bounds(node.location)
2218
+ on_regexp_literal(parts, closing)
2219
+ end
2220
+
2221
+ # "foo #{bar}"
2222
+ # ^^^^^^^^^^^^
2223
+ def visit_interpolated_string_node(node)
2224
+ if node.opening&.start_with?("<<~")
2225
+ heredoc = visit_heredoc_string_node(node)
2226
+
2227
+ bounds(node.location)
2228
+ on_string_literal(heredoc)
2229
+ elsif !node.heredoc? && node.parts.length > 1 && node.parts.any? { |part| (part.is_a?(StringNode) || part.is_a?(InterpolatedStringNode)) && !part.opening_loc.nil? }
2230
+ first, *rest = node.parts
2231
+ rest.inject(visit(first)) do |content, part|
2232
+ concat = visit(part)
2233
+
2234
+ bounds(part.location)
2235
+ on_string_concat(content, concat)
2236
+ end
2237
+ else
2238
+ bounds(node.parts.first.location)
2239
+ parts =
2240
+ node.parts.inject(on_string_content) do |content, part|
2241
+ on_string_add(content, visit_string_content(part))
2242
+ end
2243
+
2244
+ bounds(node.location)
2245
+ on_string_literal(parts)
2246
+ end
2247
+ end
2248
+
2249
+ # :"foo #{bar}"
2250
+ # ^^^^^^^^^^^^^
2251
+ def visit_interpolated_symbol_node(node)
2252
+ bounds(node.parts.first.location)
2253
+ parts =
2254
+ node.parts.inject(on_string_content) do |content, part|
2255
+ on_string_add(content, visit_string_content(part))
2256
+ end
2257
+
2258
+ bounds(node.location)
2259
+ on_dyna_symbol(parts)
2260
+ end
2261
+
2262
+ # `foo #{bar}`
2263
+ # ^^^^^^^^^^^^
2264
+ def visit_interpolated_x_string_node(node)
2265
+ if node.opening.start_with?("<<~")
2266
+ heredoc = visit_heredoc_x_string_node(node)
2267
+
2268
+ bounds(node.location)
2269
+ on_xstring_literal(heredoc)
2270
+ else
2271
+ bounds(node.parts.first.location)
2272
+ parts =
2273
+ node.parts.inject(on_xstring_new) do |content, part|
2274
+ on_xstring_add(content, visit_string_content(part))
2275
+ end
2276
+
2277
+ bounds(node.location)
2278
+ on_xstring_literal(parts)
2279
+ end
2280
+ end
2281
+
2282
+ # Visit an individual part of a string-like node.
2283
+ private def visit_string_content(part)
2284
+ if part.is_a?(StringNode)
2285
+ bounds(part.content_loc)
2286
+ on_tstring_content(part.content)
2287
+ else
2288
+ visit(part)
2289
+ end
2290
+ end
2291
+
2292
+ # -> { it }
2293
+ # ^^
2294
+ def visit_it_local_variable_read_node(node)
2295
+ bounds(node.location)
2296
+ on_vcall(on_ident(node.slice))
2297
+ end
2298
+
2299
+ # -> { it }
2300
+ # ^^^^^^^^^
2301
+ def visit_it_parameters_node(node)
2302
+ end
2303
+
2304
+ # foo(bar: baz)
2305
+ # ^^^^^^^^
2306
+ def visit_keyword_hash_node(node)
2307
+ elements = visit_all(node.elements)
2308
+
2309
+ bounds(node.location)
2310
+ on_bare_assoc_hash(elements)
2311
+ end
2312
+
2313
+ # def foo(**bar); end
2314
+ # ^^^^^
2315
+ #
2316
+ # def foo(**); end
2317
+ # ^^
2318
+ def visit_keyword_rest_parameter_node(node)
2319
+ if node.name_loc.nil?
2320
+ bounds(node.location)
2321
+ on_kwrest_param(nil)
2322
+ else
2323
+ bounds(node.name_loc)
2324
+ name = on_ident(node.name.to_s)
2325
+
2326
+ bounds(node.location)
2327
+ on_kwrest_param(name)
2328
+ end
2329
+ end
2330
+
2331
+ # -> {}
2332
+ def visit_lambda_node(node)
2333
+ bounds(node.operator_loc)
2334
+ on_tlambda(node.operator)
2335
+
2336
+ parameters =
2337
+ if node.parameters.is_a?(BlockParametersNode)
2338
+ # Ripper does not track block-locals within lambdas, so we skip
2339
+ # directly to the parameters here.
2340
+ params =
2341
+ if node.parameters.parameters.nil?
2342
+ bounds(node.location)
2343
+ on_params(nil, nil, nil, nil, nil, nil, nil)
2344
+ else
2345
+ visit(node.parameters.parameters)
2346
+ end
2347
+
2348
+ if node.parameters.opening_loc.nil?
2349
+ params
2350
+ else
2351
+ bounds(node.parameters.opening_loc)
2352
+ on_paren(params)
2353
+ end
2354
+ else
2355
+ bounds(node.location)
2356
+ on_params(nil, nil, nil, nil, nil, nil, nil)
2357
+ end
2358
+
2359
+ braces = node.opening == "{"
2360
+ if braces
2361
+ bounds(node.opening_loc)
2362
+ on_tlambeg(node.opening)
2363
+ end
2364
+
2365
+ body =
2366
+ case node.body
2367
+ when nil
2368
+ bounds(node.location)
2369
+ stmts = on_stmts_add(on_stmts_new, on_void_stmt)
2370
+
2371
+ bounds(node.location)
2372
+ braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
2373
+ when StatementsNode
2374
+ stmts = node.body.body
2375
+ stmts.unshift(nil) if void_stmt?(node.parameters&.location || node.opening_loc, node.body.location, false)
2376
+ stmts = visit_statements_node_body(stmts)
2377
+
2378
+ bounds(node.body.location)
2379
+ braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
2380
+ when BeginNode
2381
+ visit_body_node(node.opening_loc, node.body)
2382
+ else
2383
+ raise
2384
+ end
2385
+
2386
+ bounds(node.location)
2387
+ on_lambda(parameters, body)
2388
+ end
2389
+
2390
+ # foo
2391
+ # ^^^
2392
+ def visit_local_variable_read_node(node)
2393
+ bounds(node.location)
2394
+ on_var_ref(on_ident(node.slice))
2395
+ end
2396
+
2397
+ # foo = 1
2398
+ # ^^^^^^^
2399
+ def visit_local_variable_write_node(node)
2400
+ bounds(node.name_loc)
2401
+ target = on_var_field(on_ident(node.name_loc.slice))
2402
+ value = visit_write_value(node.value)
2403
+
2404
+ bounds(node.location)
2405
+ on_assign(target, value)
2406
+ end
2407
+
2408
+ # foo += bar
2409
+ # ^^^^^^^^^^
2410
+ def visit_local_variable_operator_write_node(node)
2411
+ bounds(node.name_loc)
2412
+ target = on_var_field(on_ident(node.name_loc.slice))
2413
+
2414
+ bounds(node.binary_operator_loc)
2415
+ operator = on_op("#{node.binary_operator}=")
2416
+ value = visit_write_value(node.value)
2417
+
2418
+ bounds(node.location)
2419
+ on_opassign(target, operator, value)
2420
+ end
2421
+
2422
+ # foo &&= bar
2423
+ # ^^^^^^^^^^^
2424
+ def visit_local_variable_and_write_node(node)
2425
+ bounds(node.name_loc)
2426
+ target = on_var_field(on_ident(node.name_loc.slice))
2427
+
2428
+ bounds(node.operator_loc)
2429
+ operator = on_op("&&=")
2430
+ value = visit_write_value(node.value)
2431
+
2432
+ bounds(node.location)
2433
+ on_opassign(target, operator, value)
2434
+ end
2435
+
2436
+ # foo ||= bar
2437
+ # ^^^^^^^^^^^
2438
+ def visit_local_variable_or_write_node(node)
2439
+ bounds(node.name_loc)
2440
+ target = on_var_field(on_ident(node.name_loc.slice))
2441
+
2442
+ bounds(node.operator_loc)
2443
+ operator = on_op("||=")
2444
+ value = visit_write_value(node.value)
2445
+
2446
+ bounds(node.location)
2447
+ on_opassign(target, operator, value)
2448
+ end
2449
+
2450
+ # foo, = bar
2451
+ # ^^^
2452
+ def visit_local_variable_target_node(node)
2453
+ bounds(node.location)
2454
+ on_var_field(on_ident(node.name.to_s))
2455
+ end
2456
+
2457
+ # if /foo/ then end
2458
+ # ^^^^^
2459
+ def visit_match_last_line_node(node)
2460
+ bounds(node.opening_loc)
2461
+ on_regexp_beg(node.opening)
2462
+
2463
+ bounds(node.content_loc)
2464
+ tstring_content = on_tstring_content(node.content)
2465
+
2466
+ bounds(node.closing_loc)
2467
+ closing = on_regexp_end(node.closing)
2468
+
2469
+ on_regexp_literal(on_regexp_add(on_regexp_new, tstring_content), closing)
2470
+ end
2471
+
2472
+ # foo in bar
2473
+ # ^^^^^^^^^^
2474
+ def visit_match_predicate_node(node)
2475
+ value = visit(node.value)
2476
+ pattern = on_in(visit_pattern_node(node.pattern), nil, nil)
2477
+
2478
+ on_case(value, pattern)
2479
+ end
2480
+
2481
+ # foo => bar
2482
+ # ^^^^^^^^^^
2483
+ def visit_match_required_node(node)
2484
+ value = visit(node.value)
2485
+ pattern = on_in(visit_pattern_node(node.pattern), nil, nil)
2486
+
2487
+ on_case(value, pattern)
2488
+ end
2489
+
2490
+ # /(?<foo>foo)/ =~ bar
2491
+ # ^^^^^^^^^^^^^^^^^^^^
2492
+ def visit_match_write_node(node)
2493
+ visit(node.call)
2494
+ end
2495
+
2496
+ # A node that is missing from the syntax tree. This is only used in the
2497
+ # case of a syntax error.
2498
+ def visit_missing_node(node)
2499
+ raise "Cannot visit missing nodes directly."
2500
+ end
2501
+
2502
+ # module Foo; end
2503
+ # ^^^^^^^^^^^^^^^
2504
+ def visit_module_node(node)
2505
+ constant_path =
2506
+ if node.constant_path.is_a?(ConstantReadNode)
2507
+ bounds(node.constant_path.location)
2508
+ on_const_ref(on_const(node.constant_path.name.to_s))
2509
+ else
2510
+ visit(node.constant_path)
2511
+ end
2512
+
2513
+ bodystmt = visit_body_node(node.constant_path.location, node.body, true)
2514
+
2515
+ bounds(node.location)
2516
+ on_module(constant_path, bodystmt)
2517
+ end
2518
+
2519
+ # (foo, bar), bar = qux
2520
+ # ^^^^^^^^^^
2521
+ def visit_multi_target_node(node)
2522
+ bounds(node.location)
2523
+ targets = visit_multi_target_node_targets(node.lefts, node.rest, node.rights, true)
2524
+
2525
+ if node.lparen_loc.nil?
2526
+ targets
2527
+ else
2528
+ bounds(node.lparen_loc)
2529
+ on_mlhs_paren(targets)
2530
+ end
2531
+ end
2532
+
2533
+ # Visit the targets of a multi-target node.
2534
+ private def visit_multi_target_node_targets(lefts, rest, rights, skippable)
2535
+ if skippable && lefts.length == 1 && lefts.first.is_a?(MultiTargetNode) && rest.nil? && rights.empty?
2536
+ return visit(lefts.first)
2537
+ end
2538
+
2539
+ mlhs = on_mlhs_new
2540
+
2541
+ lefts.each do |left|
2542
+ bounds(left.location)
2543
+ mlhs = on_mlhs_add(mlhs, visit(left))
2544
+ end
2545
+
2546
+ case rest
2547
+ when nil
2548
+ # do nothing
2549
+ when ImplicitRestNode
2550
+ # these do not get put into the generated tree
2551
+ bounds(rest.location)
2552
+ on_excessed_comma
2553
+ else
2554
+ bounds(rest.location)
2555
+ mlhs = on_mlhs_add_star(mlhs, visit(rest))
2556
+ end
2557
+
2558
+ if rights.any?
2559
+ bounds(rights.first.location)
2560
+ post = on_mlhs_new
2561
+
2562
+ rights.each do |right|
2563
+ bounds(right.location)
2564
+ post = on_mlhs_add(post, visit(right))
2565
+ end
2566
+
2567
+ mlhs = on_mlhs_add_post(mlhs, post)
2568
+ end
2569
+
2570
+ mlhs
2571
+ end
2572
+
2573
+ # foo, bar = baz
2574
+ # ^^^^^^^^^^^^^^
2575
+ def visit_multi_write_node(node)
2576
+ bounds(node.location)
2577
+ targets = visit_multi_target_node_targets(node.lefts, node.rest, node.rights, true)
2578
+
2579
+ unless node.lparen_loc.nil?
2580
+ bounds(node.lparen_loc)
2581
+ targets = on_mlhs_paren(targets)
2582
+ end
2583
+
2584
+ value = visit_write_value(node.value)
2585
+
2586
+ bounds(node.location)
2587
+ on_massign(targets, value)
2588
+ end
2589
+
2590
+ # next
2591
+ # ^^^^
2592
+ #
2593
+ # next foo
2594
+ # ^^^^^^^^
2595
+ def visit_next_node(node)
2596
+ if node.arguments.nil?
2597
+ bounds(node.location)
2598
+ on_next(on_args_new)
2599
+ else
2600
+ arguments = visit(node.arguments)
2601
+
2602
+ bounds(node.location)
2603
+ on_next(arguments)
2604
+ end
2605
+ end
2606
+
2607
+ # nil
2608
+ # ^^^
2609
+ def visit_nil_node(node)
2610
+ bounds(node.location)
2611
+ on_var_ref(on_kw("nil"))
2612
+ end
2613
+
2614
+ # def foo(**nil); end
2615
+ # ^^^^^
2616
+ def visit_no_keywords_parameter_node(node)
2617
+ bounds(node.location)
2618
+ on_nokw_param(nil)
2619
+
2620
+ :nil
2621
+ end
2622
+
2623
+ # -> { _1 + _2 }
2624
+ # ^^^^^^^^^^^^^^
2625
+ def visit_numbered_parameters_node(node)
2626
+ end
2627
+
2628
+ # $1
2629
+ # ^^
2630
+ def visit_numbered_reference_read_node(node)
2631
+ bounds(node.location)
2632
+ on_backref(node.slice)
2633
+ end
2634
+
2635
+ # def foo(bar: baz); end
2636
+ # ^^^^^^^^
2637
+ def visit_optional_keyword_parameter_node(node)
2638
+ bounds(node.name_loc)
2639
+ name = on_label("#{node.name}:")
2640
+ value = visit(node.value)
2641
+
2642
+ [name, value]
2643
+ end
2644
+
2645
+ # def foo(bar = 1); end
2646
+ # ^^^^^^^
2647
+ def visit_optional_parameter_node(node)
2648
+ bounds(node.name_loc)
2649
+ name = visit_token(node.name.to_s)
2650
+ value = visit(node.value)
2651
+
2652
+ [name, value]
2653
+ end
2654
+
2655
+ # a or b
2656
+ # ^^^^^^
2657
+ def visit_or_node(node)
2658
+ left = visit(node.left)
2659
+ right = visit(node.right)
2660
+
2661
+ bounds(node.location)
2662
+ on_binary(left, node.operator.to_sym, right)
2663
+ end
2664
+
2665
+ # def foo(bar, *baz); end
2666
+ # ^^^^^^^^^
2667
+ def visit_parameters_node(node)
2668
+ requireds = node.requireds.map { |required| required.is_a?(MultiTargetNode) ? visit_destructured_parameter_node(required) : visit(required) } if node.requireds.any?
2669
+ optionals = visit_all(node.optionals) if node.optionals.any?
2670
+ rest = visit(node.rest)
2671
+ posts = node.posts.map { |post| post.is_a?(MultiTargetNode) ? visit_destructured_parameter_node(post) : visit(post) } if node.posts.any?
2672
+ keywords = visit_all(node.keywords) if node.keywords.any?
2673
+ keyword_rest = visit(node.keyword_rest)
2674
+ block = visit(node.block)
2675
+
2676
+ bounds(node.location)
2677
+ on_params(requireds, optionals, rest, posts, keywords, keyword_rest, block)
2678
+ end
2679
+
2680
+ # Visit a destructured positional parameter node.
2681
+ private def visit_destructured_parameter_node(node)
2682
+ bounds(node.location)
2683
+ targets = visit_multi_target_node_targets(node.lefts, node.rest, node.rights, false)
2684
+
2685
+ bounds(node.lparen_loc)
2686
+ on_mlhs_paren(targets)
2687
+ end
2688
+
2689
+ # ()
2690
+ # ^^
2691
+ #
2692
+ # (1)
2693
+ # ^^^
2694
+ def visit_parentheses_node(node)
2695
+ body =
2696
+ if node.body.nil?
2697
+ on_stmts_add(on_stmts_new, on_void_stmt)
2698
+ else
2699
+ visit(node.body)
2700
+ end
2701
+
2702
+ bounds(node.location)
2703
+ on_paren(body)
2704
+ end
2705
+
2706
+ # foo => ^(bar)
2707
+ # ^^^^^^
2708
+ def visit_pinned_expression_node(node)
2709
+ expression = visit(node.expression)
2710
+
2711
+ bounds(node.location)
2712
+ on_begin(expression)
2713
+ end
2714
+
2715
+ # foo = 1 and bar => ^foo
2716
+ # ^^^^
2717
+ def visit_pinned_variable_node(node)
2718
+ visit(node.variable)
2719
+ end
2720
+
2721
+ # END {}
2722
+ # ^^^^^^
2723
+ def visit_post_execution_node(node)
2724
+ statements =
2725
+ if node.statements.nil?
2726
+ bounds(node.location)
2727
+ on_stmts_add(on_stmts_new, on_void_stmt)
2728
+ else
2729
+ visit(node.statements)
2730
+ end
2731
+
2732
+ bounds(node.location)
2733
+ on_END(statements)
2734
+ end
2735
+
2736
+ # BEGIN {}
2737
+ # ^^^^^^^^
2738
+ def visit_pre_execution_node(node)
2739
+ statements =
2740
+ if node.statements.nil?
2741
+ bounds(node.location)
2742
+ on_stmts_add(on_stmts_new, on_void_stmt)
2743
+ else
2744
+ visit(node.statements)
2745
+ end
2746
+
2747
+ bounds(node.location)
2748
+ on_BEGIN(statements)
2749
+ end
2750
+
2751
+ # The top-level program node.
2752
+ def visit_program_node(node)
2753
+ body = node.statements.body
2754
+ body << nil if body.empty?
2755
+ statements = visit_statements_node_body(body)
2756
+
2757
+ bounds(node.location)
2758
+ on_program(statements)
2759
+ end
2760
+
2761
+ # 0..5
2762
+ # ^^^^
2763
+ def visit_range_node(node)
2764
+ left = visit(node.left)
2765
+ right = visit(node.right)
2766
+
2767
+ bounds(node.location)
2768
+ if node.exclude_end?
2769
+ on_dot3(left, right)
2770
+ else
2771
+ on_dot2(left, right)
2772
+ end
2773
+ end
2774
+
2775
+ # 1r
2776
+ # ^^
2777
+ def visit_rational_node(node)
2778
+ visit_number_node(node) { |text| on_rational(text) }
2779
+ end
2780
+
2781
+ # redo
2782
+ # ^^^^
2783
+ def visit_redo_node(node)
2784
+ bounds(node.location)
2785
+ on_redo
2786
+ end
2787
+
2788
+ # /foo/
2789
+ # ^^^^^
2790
+ def visit_regular_expression_node(node)
2791
+ bounds(node.opening_loc)
2792
+ on_regexp_beg(node.opening)
2793
+
2794
+ if node.content.empty?
2795
+ bounds(node.closing_loc)
2796
+ closing = on_regexp_end(node.closing)
2797
+
2798
+ on_regexp_literal(on_regexp_new, closing)
2799
+ else
2800
+ bounds(node.content_loc)
2801
+ tstring_content = on_tstring_content(node.content)
2802
+
2803
+ bounds(node.closing_loc)
2804
+ closing = on_regexp_end(node.closing)
2805
+
2806
+ on_regexp_literal(on_regexp_add(on_regexp_new, tstring_content), closing)
2807
+ end
2808
+ end
2809
+
2810
+ # def foo(bar:); end
2811
+ # ^^^^
2812
+ def visit_required_keyword_parameter_node(node)
2813
+ bounds(node.name_loc)
2814
+ [on_label("#{node.name}:"), false]
2815
+ end
2816
+
2817
+ # def foo(bar); end
2818
+ # ^^^
2819
+ def visit_required_parameter_node(node)
2820
+ bounds(node.location)
2821
+ on_ident(node.name.to_s)
2822
+ end
2823
+
2824
+ # foo rescue bar
2825
+ # ^^^^^^^^^^^^^^
2826
+ def visit_rescue_modifier_node(node)
2827
+ expression = visit_write_value(node.expression)
2828
+ rescue_expression = visit(node.rescue_expression)
2829
+
2830
+ bounds(node.location)
2831
+ on_rescue_mod(expression, rescue_expression)
2832
+ end
2833
+
2834
+ # begin; rescue; end
2835
+ # ^^^^^^^
2836
+ def visit_rescue_node(node)
2837
+ exceptions =
2838
+ case node.exceptions.length
2839
+ when 0
2840
+ nil
2841
+ when 1
2842
+ if (exception = node.exceptions.first).is_a?(SplatNode)
2843
+ bounds(exception.location)
2844
+ on_mrhs_add_star(on_mrhs_new, visit(exception))
2845
+ else
2846
+ [visit(node.exceptions.first)]
2847
+ end
2848
+ else
2849
+ bounds(node.location)
2850
+ length = node.exceptions.length
2851
+
2852
+ node.exceptions.each_with_index.inject(on_args_new) do |mrhs, (exception, index)|
2853
+ arg = visit(exception)
2854
+
2855
+ bounds(exception.location)
2856
+ mrhs = on_mrhs_new_from_args(mrhs) if index == length - 1
2857
+
2858
+ if exception.is_a?(SplatNode)
2859
+ if index == length - 1
2860
+ on_mrhs_add_star(mrhs, arg)
2861
+ else
2862
+ on_args_add_star(mrhs, arg)
2863
+ end
2864
+ else
2865
+ if index == length - 1
2866
+ on_mrhs_add(mrhs, arg)
2867
+ else
2868
+ on_args_add(mrhs, arg)
2869
+ end
2870
+ end
2871
+ end
2872
+ end
2873
+
2874
+ reference = visit(node.reference)
2875
+ statements =
2876
+ if node.statements.nil?
2877
+ bounds(node.location)
2878
+ on_stmts_add(on_stmts_new, on_void_stmt)
2879
+ else
2880
+ visit(node.statements)
2881
+ end
2882
+
2883
+ subsequent = visit(node.subsequent)
2884
+
2885
+ bounds(node.location)
2886
+ on_rescue(exceptions, reference, statements, subsequent)
2887
+ end
2888
+
2889
+ # def foo(*bar); end
2890
+ # ^^^^
2891
+ #
2892
+ # def foo(*); end
2893
+ # ^
2894
+ def visit_rest_parameter_node(node)
2895
+ if node.name_loc.nil?
2896
+ bounds(node.location)
2897
+ on_rest_param(nil)
2898
+ else
2899
+ bounds(node.name_loc)
2900
+ on_rest_param(visit_token(node.name.to_s))
2901
+ end
2902
+ end
2903
+
2904
+ # retry
2905
+ # ^^^^^
2906
+ def visit_retry_node(node)
2907
+ bounds(node.location)
2908
+ on_retry
2909
+ end
2910
+
2911
+ # return
2912
+ # ^^^^^^
2913
+ #
2914
+ # return 1
2915
+ # ^^^^^^^^
2916
+ def visit_return_node(node)
2917
+ if node.arguments.nil?
2918
+ bounds(node.location)
2919
+ on_return0
2920
+ else
2921
+ arguments = visit(node.arguments)
2922
+
2923
+ bounds(node.location)
2924
+ on_return(arguments)
2925
+ end
2926
+ end
2927
+
2928
+ # self
2929
+ # ^^^^
2930
+ def visit_self_node(node)
2931
+ bounds(node.location)
2932
+ on_var_ref(on_kw("self"))
2933
+ end
2934
+
2935
+ # A shareable constant.
2936
+ def visit_shareable_constant_node(node)
2937
+ visit(node.write)
2938
+ end
2939
+
2940
+ # class << self; end
2941
+ # ^^^^^^^^^^^^^^^^^^
2942
+ def visit_singleton_class_node(node)
2943
+ expression = visit(node.expression)
2944
+ bodystmt = visit_body_node(node.body&.location || node.end_keyword_loc, node.body)
2945
+
2946
+ bounds(node.location)
2947
+ on_sclass(expression, bodystmt)
2948
+ end
2949
+
2950
+ # __ENCODING__
2951
+ # ^^^^^^^^^^^^
2952
+ def visit_source_encoding_node(node)
2953
+ bounds(node.location)
2954
+ on_var_ref(on_kw("__ENCODING__"))
2955
+ end
2956
+
2957
+ # __FILE__
2958
+ # ^^^^^^^^
2959
+ def visit_source_file_node(node)
2960
+ bounds(node.location)
2961
+ on_var_ref(on_kw("__FILE__"))
2962
+ end
2963
+
2964
+ # __LINE__
2965
+ # ^^^^^^^^
2966
+ def visit_source_line_node(node)
2967
+ bounds(node.location)
2968
+ on_var_ref(on_kw("__LINE__"))
2969
+ end
2970
+
2971
+ # foo(*bar)
2972
+ # ^^^^
2973
+ #
2974
+ # def foo((bar, *baz)); end
2975
+ # ^^^^
2976
+ #
2977
+ # def foo(*); bar(*); end
2978
+ # ^
2979
+ def visit_splat_node(node)
2980
+ visit(node.expression)
2981
+ end
2982
+
2983
+ # A list of statements.
2984
+ def visit_statements_node(node)
2985
+ bounds(node.location)
2986
+ visit_statements_node_body(node.body)
2987
+ end
2988
+
2989
+ # Visit the list of statements of a statements node. We support nil
2990
+ # statements in the list. This would normally not be allowed by the
2991
+ # structure of the prism parse tree, but we manually add them here so that
2992
+ # we can mirror Ripper's void stmt.
2993
+ private def visit_statements_node_body(body)
2994
+ body.inject(on_stmts_new) do |stmts, stmt|
2995
+ on_stmts_add(stmts, stmt.nil? ? on_void_stmt : visit(stmt))
2996
+ end
2997
+ end
2998
+
2999
+ # "foo"
3000
+ # ^^^^^
3001
+ def visit_string_node(node)
3002
+ if (content = node.content).empty?
3003
+ bounds(node.location)
3004
+ on_string_literal(on_string_content)
3005
+ elsif (opening = node.opening) == "?"
3006
+ bounds(node.location)
3007
+ on_CHAR("?#{node.content}")
3008
+ elsif opening.start_with?("<<~")
3009
+ heredoc = visit_heredoc_string_node(node.to_interpolated)
3010
+
3011
+ bounds(node.location)
3012
+ on_string_literal(heredoc)
3013
+ else
3014
+ bounds(node.content_loc)
3015
+ tstring_content = on_tstring_content(content)
3016
+
3017
+ bounds(node.location)
3018
+ on_string_literal(on_string_add(on_string_content, tstring_content))
3019
+ end
3020
+ end
3021
+
3022
+ # Ripper gives back the escaped string content but strips out the common
3023
+ # leading whitespace. Prism gives back the unescaped string content and
3024
+ # a location for the escaped string content. Unfortunately these don't
3025
+ # work well together, so here we need to re-derive the common leading
3026
+ # whitespace.
3027
+ private def visit_heredoc_node_whitespace(parts)
3028
+ common_whitespace = nil
3029
+ dedent_next = true
3030
+
3031
+ parts.each do |part|
3032
+ if part.is_a?(StringNode)
3033
+ if dedent_next && !(content = part.content).chomp.empty?
3034
+ common_whitespace = [
3035
+ common_whitespace || Float::INFINITY,
3036
+ content[/\A\s*/].each_char.inject(0) do |part_whitespace, char|
3037
+ char == "\t" ? ((part_whitespace / 8 + 1) * 8) : (part_whitespace + 1)
3038
+ end
3039
+ ].min
3040
+ end
3041
+
3042
+ dedent_next = true
3043
+ else
3044
+ dedent_next = false
3045
+ end
3046
+ end
3047
+
3048
+ common_whitespace || 0
3049
+ end
3050
+
3051
+ # Visit a string that is expressed using a <<~ heredoc.
3052
+ private def visit_heredoc_node(parts, base)
3053
+ common_whitespace = visit_heredoc_node_whitespace(parts)
3054
+
3055
+ if common_whitespace == 0
3056
+ bounds(parts.first.location)
3057
+
3058
+ string = []
3059
+ result = base
3060
+
3061
+ parts.each do |part|
3062
+ if part.is_a?(StringNode)
3063
+ if string.empty?
3064
+ string = [part]
3065
+ else
3066
+ string << part
3067
+ end
3068
+ else
3069
+ unless string.empty?
3070
+ bounds(string[0].location)
3071
+ result = yield result, on_tstring_content(string.map(&:content).join)
3072
+ string = []
3073
+ end
3074
+
3075
+ result = yield result, visit(part)
3076
+ end
3077
+ end
3078
+
3079
+ unless string.empty?
3080
+ bounds(string[0].location)
3081
+ result = yield result, on_tstring_content(string.map(&:content).join)
3082
+ end
3083
+
3084
+ result
3085
+ else
3086
+ bounds(parts.first.location)
3087
+ result =
3088
+ parts.inject(base) do |string_content, part|
3089
+ yield string_content, visit_string_content(part)
3090
+ end
3091
+
3092
+ bounds(parts.first.location)
3093
+ on_heredoc_dedent(result, common_whitespace)
3094
+ end
3095
+ end
3096
+
3097
+ # Visit a heredoc node that is representing a string.
3098
+ private def visit_heredoc_string_node(node)
3099
+ bounds(node.opening_loc)
3100
+ on_heredoc_beg(node.opening)
3101
+
3102
+ bounds(node.location)
3103
+ result =
3104
+ visit_heredoc_node(node.parts, on_string_content) do |parts, part|
3105
+ on_string_add(parts, part)
3106
+ end
3107
+
3108
+ bounds(node.closing_loc)
3109
+ on_heredoc_end(node.closing)
3110
+
3111
+ result
3112
+ end
3113
+
3114
+ # Visit a heredoc node that is representing an xstring.
3115
+ private def visit_heredoc_x_string_node(node)
3116
+ bounds(node.opening_loc)
3117
+ on_heredoc_beg(node.opening)
3118
+
3119
+ bounds(node.location)
3120
+ result =
3121
+ visit_heredoc_node(node.parts, on_xstring_new) do |parts, part|
3122
+ on_xstring_add(parts, part)
3123
+ end
3124
+
3125
+ bounds(node.closing_loc)
3126
+ on_heredoc_end(node.closing)
3127
+
3128
+ result
3129
+ end
3130
+
3131
+ # super(foo)
3132
+ # ^^^^^^^^^^
3133
+ def visit_super_node(node)
3134
+ arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.rparen_loc || node.location))
3135
+
3136
+ if !node.lparen_loc.nil?
3137
+ bounds(node.lparen_loc)
3138
+ arguments = on_arg_paren(arguments)
3139
+ end
3140
+
3141
+ bounds(node.location)
3142
+ call = on_super(arguments)
3143
+
3144
+ if has_ripper_block
3145
+ bounds(node.block.location)
3146
+ on_method_add_block(call, block)
3147
+ else
3148
+ call
3149
+ end
3150
+ end
3151
+
3152
+ # :foo
3153
+ # ^^^^
3154
+ def visit_symbol_node(node)
3155
+ if (opening = node.opening)&.match?(/^%s|['"]:?$/)
3156
+ bounds(node.value_loc)
3157
+ content = on_string_content
3158
+
3159
+ if !(value = node.value).empty?
3160
+ content = on_string_add(content, on_tstring_content(value))
3161
+ end
3162
+
3163
+ on_dyna_symbol(content)
3164
+ elsif (closing = node.closing) == ":"
3165
+ bounds(node.location)
3166
+ on_label("#{node.value}:")
3167
+ elsif opening.nil? && node.closing_loc.nil?
3168
+ bounds(node.value_loc)
3169
+ on_symbol_literal(visit_token(node.value))
3170
+ else
3171
+ bounds(node.value_loc)
3172
+ on_symbol_literal(on_symbol(visit_token(node.value)))
3173
+ end
3174
+ end
3175
+
3176
+ # true
3177
+ # ^^^^
3178
+ def visit_true_node(node)
3179
+ bounds(node.location)
3180
+ on_var_ref(on_kw("true"))
3181
+ end
3182
+
3183
+ # undef foo
3184
+ # ^^^^^^^^^
3185
+ def visit_undef_node(node)
3186
+ names = visit_all(node.names)
3187
+
3188
+ bounds(node.location)
3189
+ on_undef(names)
3190
+ end
3191
+
3192
+ # unless foo; bar end
3193
+ # ^^^^^^^^^^^^^^^^^^^
3194
+ #
3195
+ # bar unless foo
3196
+ # ^^^^^^^^^^^^^^
3197
+ def visit_unless_node(node)
3198
+ if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
3199
+ predicate = visit(node.predicate)
3200
+ statements =
3201
+ if node.statements.nil?
3202
+ bounds(node.location)
3203
+ on_stmts_add(on_stmts_new, on_void_stmt)
3204
+ else
3205
+ visit(node.statements)
3206
+ end
3207
+ else_clause = visit(node.else_clause)
3208
+
3209
+ bounds(node.location)
3210
+ on_unless(predicate, statements, else_clause)
3211
+ else
3212
+ statements = visit(node.statements.body.first)
3213
+ predicate = visit(node.predicate)
3214
+
3215
+ bounds(node.location)
3216
+ on_unless_mod(predicate, statements)
3217
+ end
3218
+ end
3219
+
3220
+ # until foo; bar end
3221
+ # ^^^^^^^^^^^^^^^^^
3222
+ #
3223
+ # bar until foo
3224
+ # ^^^^^^^^^^^^^
3225
+ def visit_until_node(node)
3226
+ if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
3227
+ predicate = visit(node.predicate)
3228
+ statements =
3229
+ if node.statements.nil?
3230
+ bounds(node.location)
3231
+ on_stmts_add(on_stmts_new, on_void_stmt)
3232
+ else
3233
+ visit(node.statements)
3234
+ end
3235
+
3236
+ bounds(node.location)
3237
+ on_until(predicate, statements)
3238
+ else
3239
+ statements = visit(node.statements.body.first)
3240
+ predicate = visit(node.predicate)
3241
+
3242
+ bounds(node.location)
3243
+ on_until_mod(predicate, statements)
3244
+ end
3245
+ end
3246
+
3247
+ # case foo; when bar; end
3248
+ # ^^^^^^^^^^^^^
3249
+ def visit_when_node(node)
3250
+ # This is a special case where we're not going to call on_when directly
3251
+ # because we don't have access to the subsequent. Instead, we'll return
3252
+ # the component parts and let the parent node handle it.
3253
+ conditions = visit_arguments(node.conditions)
3254
+ statements =
3255
+ if node.statements.nil?
3256
+ bounds(node.location)
3257
+ on_stmts_add(on_stmts_new, on_void_stmt)
3258
+ else
3259
+ visit(node.statements)
3260
+ end
3261
+
3262
+ [conditions, statements]
3263
+ end
3264
+
3265
+ # while foo; bar end
3266
+ # ^^^^^^^^^^^^^^^^^^
3267
+ #
3268
+ # bar while foo
3269
+ # ^^^^^^^^^^^^^
3270
+ def visit_while_node(node)
3271
+ if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
3272
+ predicate = visit(node.predicate)
3273
+ statements =
3274
+ if node.statements.nil?
3275
+ bounds(node.location)
3276
+ on_stmts_add(on_stmts_new, on_void_stmt)
3277
+ else
3278
+ visit(node.statements)
3279
+ end
3280
+
3281
+ bounds(node.location)
3282
+ on_while(predicate, statements)
3283
+ else
3284
+ statements = visit(node.statements.body.first)
3285
+ predicate = visit(node.predicate)
3286
+
3287
+ bounds(node.location)
3288
+ on_while_mod(predicate, statements)
3289
+ end
3290
+ end
3291
+
3292
+ # `foo`
3293
+ # ^^^^^
3294
+ def visit_x_string_node(node)
3295
+ if node.unescaped.empty?
3296
+ bounds(node.location)
3297
+ on_xstring_literal(on_xstring_new)
3298
+ elsif node.opening.start_with?("<<~")
3299
+ heredoc = visit_heredoc_x_string_node(node.to_interpolated)
3300
+
3301
+ bounds(node.location)
3302
+ on_xstring_literal(heredoc)
3303
+ else
3304
+ bounds(node.content_loc)
3305
+ content = on_tstring_content(node.content)
3306
+
3307
+ bounds(node.location)
3308
+ on_xstring_literal(on_xstring_add(on_xstring_new, content))
3309
+ end
3310
+ end
3311
+
3312
+ # yield
3313
+ # ^^^^^
3314
+ #
3315
+ # yield 1
3316
+ # ^^^^^^^
3317
+ def visit_yield_node(node)
3318
+ if node.arguments.nil? && node.lparen_loc.nil?
3319
+ bounds(node.location)
3320
+ on_yield0
3321
+ else
3322
+ arguments =
3323
+ if node.arguments.nil?
3324
+ bounds(node.location)
3325
+ on_args_new
3326
+ else
3327
+ visit(node.arguments)
3328
+ end
3329
+
3330
+ unless node.lparen_loc.nil?
3331
+ bounds(node.lparen_loc)
3332
+ arguments = on_paren(arguments)
3333
+ end
3334
+
3335
+ bounds(node.location)
3336
+ on_yield(arguments)
3337
+ end
3338
+ end
3339
+
3340
+ private
3341
+
3342
+ # Lazily initialize the parse result.
3343
+ def result
3344
+ @result ||= Prism.parse(source, partial_script: true, version: "current")
3345
+ end
3346
+
3347
+ ##########################################################################
3348
+ # Helpers
3349
+ ##########################################################################
3350
+
3351
+ # Returns true if there is a comma between the two locations.
3352
+ def trailing_comma?(left, right)
3353
+ source.byteslice(left.end_offset...right.start_offset).include?(",")
3354
+ end
3355
+
3356
+ # Returns true if there is a semicolon between the two locations.
3357
+ def void_stmt?(left, right, allow_newline)
3358
+ pattern = allow_newline ? /[;\n]/ : /;/
3359
+ source.byteslice(left.end_offset...right.start_offset).match?(pattern)
3360
+ end
3361
+
3362
+ # Visit the string content of a particular node. This method is used to
3363
+ # split into the various token types.
3364
+ def visit_token(token, allow_keywords = true)
3365
+ case token
3366
+ when "."
3367
+ on_period(token)
3368
+ when "`"
3369
+ on_backtick(token)
3370
+ when *(allow_keywords ? KEYWORDS : [])
3371
+ on_kw(token)
3372
+ when /^_/
3373
+ on_ident(token)
3374
+ when /^[[:upper:]]\w*$/
3375
+ on_const(token)
3376
+ when /^@@/
3377
+ on_cvar(token)
3378
+ when /^@/
3379
+ on_ivar(token)
3380
+ when /^\$/
3381
+ on_gvar(token)
3382
+ when /^[[:punct:]]/
3383
+ on_op(token)
3384
+ else
3385
+ on_ident(token)
3386
+ end
3387
+ end
3388
+
3389
+ # Visit a node that represents a number. We need to explicitly handle the
3390
+ # unary - operator.
3391
+ def visit_number_node(node)
3392
+ slice = node.slice
3393
+ location = node.location
3394
+
3395
+ if slice[0] == "-"
3396
+ bounds(location.copy(start_offset: location.start_offset + 1))
3397
+ value = yield slice[1..-1]
3398
+
3399
+ bounds(node.location)
3400
+ on_unary(:-@, value)
3401
+ else
3402
+ bounds(location)
3403
+ yield slice
3404
+ end
3405
+ end
3406
+
3407
+ # Visit a node that represents a write value. This is used to handle the
3408
+ # special case of an implicit array that is generated without brackets.
3409
+ def visit_write_value(node)
3410
+ if node.is_a?(ArrayNode) && node.opening_loc.nil?
3411
+ elements = node.elements
3412
+ length = elements.length
3413
+
3414
+ bounds(elements.first.location)
3415
+ elements.each_with_index.inject((elements.first.is_a?(SplatNode) && length == 1) ? on_mrhs_new : on_args_new) do |args, (element, index)|
3416
+ arg = visit(element)
3417
+ bounds(element.location)
3418
+
3419
+ if index == length - 1
3420
+ if element.is_a?(SplatNode)
3421
+ mrhs = index == 0 ? args : on_mrhs_new_from_args(args)
3422
+ on_mrhs_add_star(mrhs, arg)
3423
+ else
3424
+ on_mrhs_add(on_mrhs_new_from_args(args), arg)
3425
+ end
3426
+ else
3427
+ case element
3428
+ when BlockArgumentNode
3429
+ on_args_add_block(args, arg)
3430
+ when SplatNode
3431
+ on_args_add_star(args, arg)
3432
+ else
3433
+ on_args_add(args, arg)
3434
+ end
3435
+ end
3436
+ end
3437
+ else
3438
+ visit(node)
3439
+ end
3440
+ end
3441
+
3442
+ # This method is responsible for updating lineno and column information
3443
+ # to reflect the current node.
3444
+ #
3445
+ # This method could be drastically improved with some caching on the start
3446
+ # of every line, but for now it's good enough.
3447
+ def bounds(location)
3448
+ @lineno = location.start_line
3449
+ @column = location.start_column
3450
+ end
3451
+
3452
+ ##########################################################################
3453
+ # Ripper interface
3454
+ ##########################################################################
3455
+
3456
+ # :stopdoc:
3457
+ def _dispatch_0; end
3458
+ def _dispatch_1(arg); arg end
3459
+ def _dispatch_2(arg, _); arg end
3460
+ def _dispatch_3(arg, _, _); arg end
3461
+ def _dispatch_4(arg, _, _, _); arg end
3462
+ def _dispatch_5(arg, _, _, _, _); arg end
3463
+ def _dispatch_7(arg, _, _, _, _, _, _); arg end
3464
+ # :startdoc:
3465
+
3466
+ #
3467
+ # Parser Events
3468
+ #
3469
+
3470
+ PARSER_EVENT_TABLE.each do |id, arity|
3471
+ alias_method "on_#{id}", "_dispatch_#{arity}"
3472
+ end
3473
+
3474
+ # This method is called when weak warning is produced by the parser.
3475
+ # +fmt+ and +args+ is printf style.
3476
+ def warn(fmt, *args)
3477
+ end
3478
+
3479
+ # This method is called when strong warning is produced by the parser.
3480
+ # +fmt+ and +args+ is printf style.
3481
+ def warning(fmt, *args)
3482
+ end
3483
+
3484
+ # This method is called when the parser found syntax error.
3485
+ def compile_error(msg)
3486
+ end
3487
+
3488
+ #
3489
+ # Scanner Events
3490
+ #
3491
+
3492
+ SCANNER_EVENTS.each do |id|
3493
+ alias_method "on_#{id}", :_dispatch_1
3494
+ end
3495
+
3496
+ # This method is provided by the Ripper C extension. It is called when a
3497
+ # string needs to be dedented because of a tilde heredoc. It is expected
3498
+ # that it will modify the string in place and return the number of bytes
3499
+ # that were removed.
3500
+ def dedent_string(string, width)
3501
+ whitespace = 0
3502
+ cursor = 0
3503
+
3504
+ while cursor < string.length && string[cursor].match?(/\s/) && whitespace < width
3505
+ if string[cursor] == "\t"
3506
+ whitespace = ((whitespace / 8 + 1) * 8)
3507
+ break if whitespace > width
3508
+ else
3509
+ whitespace += 1
3510
+ end
3511
+
3512
+ cursor += 1
3513
+ end
3514
+
3515
+ string.replace(string[cursor..])
3516
+ cursor
3517
+ end
3518
+ end
3519
+ end
3520
+ end