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,2224 @@
1
+ #include "../json.h"
2
+ #include "../fbuffer/fbuffer.h"
3
+ #include "../vendor/fpconv.c"
4
+
5
+ #include <math.h>
6
+ #include <ctype.h>
7
+
8
+ #include "../simd/simd.h"
9
+
10
+ /* ruby api and some helpers */
11
+
12
+ enum duplicate_key_action {
13
+ JSON_DEPRECATED = 0,
14
+ JSON_IGNORE,
15
+ JSON_RAISE,
16
+ };
17
+
18
+ typedef struct JSON_Generator_StateStruct {
19
+ VALUE indent;
20
+ VALUE space;
21
+ VALUE space_before;
22
+ VALUE object_nl;
23
+ VALUE array_nl;
24
+ VALUE as_json;
25
+
26
+ long max_nesting;
27
+ long depth;
28
+ long buffer_initial_length;
29
+
30
+ enum duplicate_key_action on_duplicate_key;
31
+
32
+ bool as_json_single_arg;
33
+ bool allow_nan;
34
+ bool ascii_only;
35
+ bool script_safe;
36
+ bool strict;
37
+ } JSON_Generator_State;
38
+
39
+ static VALUE mJSON, cState, cFragment, eGeneratorError, eNestingError, Encoding_UTF_8;
40
+
41
+ static ID i_to_s, i_to_json, i_new, i_encode;
42
+ static VALUE sym_indent, sym_space, sym_space_before, sym_object_nl, sym_array_nl, sym_max_nesting, sym_allow_nan, sym_allow_duplicate_key,
43
+ sym_ascii_only, sym_depth, sym_buffer_initial_length, sym_script_safe, sym_escape_slash, sym_strict, sym_as_json;
44
+
45
+
46
+ #define GET_STATE_TO(self, state) \
47
+ TypedData_Get_Struct(self, JSON_Generator_State, &JSON_Generator_State_type, state)
48
+
49
+ #define GET_STATE(self) \
50
+ JSON_Generator_State *state; \
51
+ GET_STATE_TO(self, state)
52
+
53
+ struct generate_json_data;
54
+
55
+ typedef void (*generator_func)(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
56
+
57
+ struct generate_json_data {
58
+ FBuffer *buffer;
59
+ VALUE vstate;
60
+ JSON_Generator_State *state;
61
+ VALUE obj;
62
+ generator_func func;
63
+ long depth;
64
+ };
65
+
66
+ static SIMD_Implementation simd_impl;
67
+
68
+ static VALUE cState_from_state_s(VALUE self, VALUE opts);
69
+ static VALUE cState_partial_generate(VALUE self, VALUE obj, generator_func, VALUE io);
70
+ static void generate_json(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
71
+ static void generate_json_object(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
72
+ static void generate_json_array(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
73
+ static void generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
74
+ static void generate_json_null(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
75
+ static void generate_json_false(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
76
+ static void generate_json_true(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
77
+ #ifdef RUBY_INTEGER_UNIFICATION
78
+ static void generate_json_integer(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
79
+ #endif
80
+ static void generate_json_fixnum(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
81
+ static void generate_json_bignum(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
82
+ static void generate_json_float(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
83
+ static void generate_json_fragment(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
84
+
85
+ static int usascii_encindex, utf8_encindex, binary_encindex;
86
+
87
+ NORETURN(static void) raise_generator_error_str(VALUE invalid_object, VALUE str)
88
+ {
89
+ rb_enc_associate_index(str, utf8_encindex);
90
+ VALUE exc = rb_exc_new_str(eGeneratorError, str);
91
+ rb_ivar_set(exc, rb_intern("@invalid_object"), invalid_object);
92
+ rb_exc_raise(exc);
93
+ }
94
+
95
+ #ifdef RBIMPL_ATTR_FORMAT
96
+ RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 2, 3)
97
+ #endif
98
+ NORETURN(static void) raise_generator_error(VALUE invalid_object, const char *fmt, ...)
99
+ {
100
+ va_list args;
101
+ va_start(args, fmt);
102
+ VALUE str = rb_vsprintf(fmt, args);
103
+ va_end(args);
104
+ raise_generator_error_str(invalid_object, str);
105
+ }
106
+
107
+ // 0 - single byte char that don't need to be escaped.
108
+ // (x | 8) - char that needs to be escaped.
109
+ static const unsigned char CHAR_LENGTH_MASK = 7;
110
+ static const unsigned char ESCAPE_MASK = 8;
111
+
112
+ typedef struct _search_state {
113
+ const char *ptr;
114
+ const char *end;
115
+ const char *cursor;
116
+ FBuffer *buffer;
117
+
118
+ #ifdef HAVE_SIMD
119
+ const char *chunk_base;
120
+ const char *chunk_end;
121
+ bool has_matches;
122
+
123
+ #if defined(HAVE_SIMD_NEON)
124
+ uint64_t matches_mask;
125
+ #elif defined(HAVE_SIMD_SSE2)
126
+ int matches_mask;
127
+ #else
128
+ #error "Unknown SIMD Implementation."
129
+ #endif /* HAVE_SIMD_NEON */
130
+ #endif /* HAVE_SIMD */
131
+ } search_state;
132
+
133
+ ALWAYS_INLINE(static) void search_flush(search_state *search)
134
+ {
135
+ // Do not remove this conditional without profiling, specifically escape-heavy text.
136
+ // escape_UTF8_char_basic will advance search->ptr and search->cursor (effectively a search_flush).
137
+ // For back-to-back characters that need to be escaped, specifically for the SIMD code paths, this method
138
+ // will be called just before calling escape_UTF8_char_basic. There will be no characters to append for the
139
+ // consecutive characters that need to be escaped. While the fbuffer_append is a no-op if
140
+ // nothing needs to be flushed, we can save a few memory references with this conditional.
141
+ if (search->ptr > search->cursor) {
142
+ fbuffer_append(search->buffer, search->cursor, search->ptr - search->cursor);
143
+ search->cursor = search->ptr;
144
+ }
145
+ }
146
+
147
+ static const unsigned char escape_table_basic[256] = {
148
+ // ASCII Control Characters
149
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
150
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
151
+ // ASCII Characters
152
+ 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // '"'
153
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
154
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
155
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, // '\\'
156
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
157
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
158
+ };
159
+
160
+ static inline unsigned char search_escape_basic(search_state *search)
161
+ {
162
+ while (search->ptr < search->end) {
163
+ if (RB_UNLIKELY(escape_table_basic[(const unsigned char)*search->ptr])) {
164
+ search_flush(search);
165
+ return 1;
166
+ } else {
167
+ search->ptr++;
168
+ }
169
+ }
170
+ search_flush(search);
171
+ return 0;
172
+ }
173
+
174
+ ALWAYS_INLINE(static) void escape_UTF8_char_basic(search_state *search)
175
+ {
176
+ const unsigned char ch = (unsigned char)*search->ptr;
177
+ switch (ch) {
178
+ case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
179
+ case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
180
+ case '/': fbuffer_append(search->buffer, "\\/", 2); break;
181
+ case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
182
+ case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
183
+ case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
184
+ case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
185
+ case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
186
+ default: {
187
+ const char *hexdig = "0123456789abcdef";
188
+ char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
189
+ scratch[4] = hexdig[(ch >> 4) & 0xf];
190
+ scratch[5] = hexdig[ch & 0xf];
191
+ fbuffer_append(search->buffer, scratch, 6);
192
+ break;
193
+ }
194
+ }
195
+ search->ptr++;
196
+ search->cursor = search->ptr;
197
+ }
198
+
199
+ /* Converts in_string to a JSON string (without the wrapping '"'
200
+ * characters) in FBuffer out_buffer.
201
+ *
202
+ * Character are JSON-escaped according to:
203
+ *
204
+ * - Always: ASCII control characters (0x00-0x1F), dquote, and
205
+ * backslash.
206
+ *
207
+ * - If out_ascii_only: non-ASCII characters (>0x7F)
208
+ *
209
+ * - If script_safe: forwardslash (/), line separator (U+2028), and
210
+ * paragraph separator (U+2029)
211
+ *
212
+ * Everything else (should be UTF-8) is just passed through and
213
+ * appended to the result.
214
+ */
215
+
216
+
217
+ #if defined(HAVE_SIMD_NEON)
218
+ static inline unsigned char search_escape_basic_neon(search_state *search);
219
+ #elif defined(HAVE_SIMD_SSE2)
220
+ static inline unsigned char search_escape_basic_sse2(search_state *search);
221
+ #endif
222
+
223
+ static inline unsigned char search_escape_basic(search_state *search);
224
+
225
+ static inline void convert_UTF8_to_JSON(search_state *search)
226
+ {
227
+ #ifdef HAVE_SIMD
228
+ #if defined(HAVE_SIMD_NEON)
229
+ while (search_escape_basic_neon(search)) {
230
+ escape_UTF8_char_basic(search);
231
+ }
232
+ #elif defined(HAVE_SIMD_SSE2)
233
+ if (simd_impl == SIMD_SSE2) {
234
+ while (search_escape_basic_sse2(search)) {
235
+ escape_UTF8_char_basic(search);
236
+ }
237
+ return;
238
+ }
239
+ while (search_escape_basic(search)) {
240
+ escape_UTF8_char_basic(search);
241
+ }
242
+ #endif
243
+ #else
244
+ while (search_escape_basic(search)) {
245
+ escape_UTF8_char_basic(search);
246
+ }
247
+ #endif /* HAVE_SIMD */
248
+ }
249
+
250
+ static inline void escape_UTF8_char(search_state *search, unsigned char ch_len)
251
+ {
252
+ const unsigned char ch = (unsigned char)*search->ptr;
253
+ switch (ch_len) {
254
+ case 1: {
255
+ switch (ch) {
256
+ case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
257
+ case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
258
+ case '/': fbuffer_append(search->buffer, "\\/", 2); break;
259
+ case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
260
+ case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
261
+ case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
262
+ case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
263
+ case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
264
+ default: {
265
+ const char *hexdig = "0123456789abcdef";
266
+ char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
267
+ scratch[4] = hexdig[(ch >> 4) & 0xf];
268
+ scratch[5] = hexdig[ch & 0xf];
269
+ fbuffer_append(search->buffer, scratch, 6);
270
+ break;
271
+ }
272
+ }
273
+ break;
274
+ }
275
+ case 3: {
276
+ if (search->ptr[2] & 1) {
277
+ fbuffer_append(search->buffer, "\\u2029", 6);
278
+ } else {
279
+ fbuffer_append(search->buffer, "\\u2028", 6);
280
+ }
281
+ break;
282
+ }
283
+ }
284
+ search->cursor = (search->ptr += ch_len);
285
+ }
286
+
287
+ #ifdef HAVE_SIMD
288
+
289
+ ALWAYS_INLINE(static) char *copy_remaining_bytes(search_state *search, unsigned long vec_len, unsigned long len)
290
+ {
291
+ RBIMPL_ASSERT_OR_ASSUME(len < vec_len);
292
+
293
+ // Flush the buffer so everything up until the last 'len' characters are unflushed.
294
+ search_flush(search);
295
+
296
+ FBuffer *buf = search->buffer;
297
+ fbuffer_inc_capa(buf, vec_len);
298
+
299
+ char *s = (buf->ptr + buf->len);
300
+
301
+ // Pad the buffer with dummy characters that won't need escaping.
302
+ // This seem wasteful at first sight, but memset of vector length is very fast.
303
+ // This is a space as it can be directly represented as an immediate on AArch64.
304
+ memset(s, ' ', vec_len);
305
+
306
+ // Optimistically copy the remaining 'len' characters to the output FBuffer. If there are no characters
307
+ // to escape, then everything ends up in the correct spot. Otherwise it was convenient temporary storage.
308
+ if (vec_len == 16) {
309
+ RBIMPL_ASSERT_OR_ASSUME(len >= SIMD_MINIMUM_THRESHOLD);
310
+ json_fast_memcpy16(s, search->ptr, len);
311
+ } else {
312
+ MEMCPY(s, search->ptr, char, len);
313
+ }
314
+
315
+ return s;
316
+ }
317
+
318
+ #ifdef HAVE_SIMD_NEON
319
+
320
+ ALWAYS_INLINE(static) unsigned char neon_next_match(search_state *search)
321
+ {
322
+ uint64_t mask = search->matches_mask;
323
+ uint32_t index = trailing_zeros64(mask) >> 2;
324
+
325
+ // It is assumed escape_UTF8_char_basic will only ever increase search->ptr by at most one character.
326
+ // If we want to use a similar approach for full escaping we'll need to ensure:
327
+ // search->chunk_base + index >= search->ptr
328
+ // However, since we know escape_UTF8_char_basic only increases search->ptr by one, if the next match
329
+ // is one byte after the previous match then:
330
+ // search->chunk_base + index == search->ptr
331
+ search->ptr = search->chunk_base + index;
332
+ mask &= mask - 1;
333
+ search->matches_mask = mask;
334
+ search_flush(search);
335
+ return 1;
336
+ }
337
+
338
+ static inline unsigned char search_escape_basic_neon(search_state *search)
339
+ {
340
+ if (RB_UNLIKELY(search->has_matches)) {
341
+ // There are more matches if search->matches_mask > 0.
342
+ if (search->matches_mask > 0) {
343
+ return neon_next_match(search);
344
+ } else {
345
+ // neon_next_match will only advance search->ptr up to the last matching character.
346
+ // Skip over any characters in the last chunk that occur after the last match.
347
+ search->has_matches = false;
348
+ search->ptr = search->chunk_end;
349
+ }
350
+ }
351
+
352
+ /*
353
+ * The code below implements an SIMD-based algorithm to determine if N bytes at a time
354
+ * need to be escaped.
355
+ *
356
+ * Assume the ptr = "Te\sting!" (the double quotes are included in the string)
357
+ *
358
+ * The explanation will be limited to the first 8 bytes of the string for simplicity. However
359
+ * the vector insructions may work on larger vectors.
360
+ *
361
+ * First, we load three constants 'lower_bound', 'backslash' and 'dblquote" in vector registers.
362
+ *
363
+ * lower_bound: [20 20 20 20 20 20 20 20]
364
+ * backslash: [5C 5C 5C 5C 5C 5C 5C 5C]
365
+ * dblquote: [22 22 22 22 22 22 22 22]
366
+ *
367
+ * Next we load the first chunk of the ptr:
368
+ * [22 54 65 5C 73 74 69 6E] (" T e \ s t i n)
369
+ *
370
+ * First we check if any byte in chunk is less than 32 (0x20). This returns the following vector
371
+ * as no bytes are less than 32 (0x20):
372
+ * [0 0 0 0 0 0 0 0]
373
+ *
374
+ * Next, we check if any byte in chunk is equal to a backslash:
375
+ * [0 0 0 FF 0 0 0 0]
376
+ *
377
+ * Finally we check if any byte in chunk is equal to a double quote:
378
+ * [FF 0 0 0 0 0 0 0]
379
+ *
380
+ * Now we have three vectors where each byte indicates if the corresponding byte in chunk
381
+ * needs to be escaped. We combine these vectors with a series of logical OR instructions.
382
+ * This is the needs_escape vector and it is equal to:
383
+ * [FF 0 0 FF 0 0 0 0]
384
+ *
385
+ * Next we compute the bitwise AND between each byte and 0x1 and compute the horizontal sum of
386
+ * the values in the vector. This computes how many bytes need to be escaped within this chunk.
387
+ *
388
+ * Finally we compute a mask that indicates which bytes need to be escaped. If the mask is 0 then,
389
+ * no bytes need to be escaped and we can continue to the next chunk. If the mask is not 0 then we
390
+ * have at least one byte that needs to be escaped.
391
+ */
392
+
393
+ if (string_scan_simd_neon(&search->ptr, search->end, &search->matches_mask)) {
394
+ search->has_matches = true;
395
+ search->chunk_base = search->ptr;
396
+ search->chunk_end = search->ptr + sizeof(uint8x16_t);
397
+ return neon_next_match(search);
398
+ }
399
+
400
+ // There are fewer than 16 bytes left.
401
+ unsigned long remaining = (search->end - search->ptr);
402
+ if (remaining >= SIMD_MINIMUM_THRESHOLD) {
403
+ char *s = copy_remaining_bytes(search, sizeof(uint8x16_t), remaining);
404
+
405
+ uint64_t mask = compute_chunk_mask_neon(s);
406
+
407
+ if (!mask) {
408
+ // Nothing to escape, ensure search_flush doesn't do anything by setting
409
+ // search->cursor to search->ptr.
410
+ fbuffer_consumed(search->buffer, remaining);
411
+ search->ptr = search->end;
412
+ search->cursor = search->end;
413
+ return 0;
414
+ }
415
+
416
+ search->matches_mask = mask;
417
+ search->has_matches = true;
418
+ search->chunk_end = search->end;
419
+ search->chunk_base = search->ptr;
420
+ return neon_next_match(search);
421
+ }
422
+
423
+ if (search->ptr < search->end) {
424
+ return search_escape_basic(search);
425
+ }
426
+
427
+ search_flush(search);
428
+ return 0;
429
+ }
430
+ #endif /* HAVE_SIMD_NEON */
431
+
432
+ #ifdef HAVE_SIMD_SSE2
433
+
434
+ ALWAYS_INLINE(static) unsigned char sse2_next_match(search_state *search)
435
+ {
436
+ int mask = search->matches_mask;
437
+ int index = trailing_zeros(mask);
438
+
439
+ // It is assumed escape_UTF8_char_basic will only ever increase search->ptr by at most one character.
440
+ // If we want to use a similar approach for full escaping we'll need to ensure:
441
+ // search->chunk_base + index >= search->ptr
442
+ // However, since we know escape_UTF8_char_basic only increases search->ptr by one, if the next match
443
+ // is one byte after the previous match then:
444
+ // search->chunk_base + index == search->ptr
445
+ search->ptr = search->chunk_base + index;
446
+ mask &= mask - 1;
447
+ search->matches_mask = mask;
448
+ search_flush(search);
449
+ return 1;
450
+ }
451
+
452
+ #if defined(__clang__) || defined(__GNUC__)
453
+ #define TARGET_SSE2 __attribute__((target("sse2")))
454
+ #else
455
+ #define TARGET_SSE2
456
+ #endif
457
+
458
+ ALWAYS_INLINE(static) TARGET_SSE2 unsigned char search_escape_basic_sse2(search_state *search)
459
+ {
460
+ if (RB_UNLIKELY(search->has_matches)) {
461
+ // There are more matches if search->matches_mask > 0.
462
+ if (search->matches_mask > 0) {
463
+ return sse2_next_match(search);
464
+ } else {
465
+ // sse2_next_match will only advance search->ptr up to the last matching character.
466
+ // Skip over any characters in the last chunk that occur after the last match.
467
+ search->has_matches = false;
468
+ if (RB_UNLIKELY(search->chunk_base + sizeof(__m128i) >= search->end)) {
469
+ search->ptr = search->end;
470
+ } else {
471
+ search->ptr = search->chunk_base + sizeof(__m128i);
472
+ }
473
+ }
474
+ }
475
+
476
+ if (string_scan_simd_sse2(&search->ptr, search->end, &search->matches_mask)) {
477
+ search->has_matches = true;
478
+ search->chunk_base = search->ptr;
479
+ search->chunk_end = search->ptr + sizeof(__m128i);
480
+ return sse2_next_match(search);
481
+ }
482
+
483
+ // There are fewer than 16 bytes left.
484
+ unsigned long remaining = (search->end - search->ptr);
485
+ if (remaining >= SIMD_MINIMUM_THRESHOLD) {
486
+ char *s = copy_remaining_bytes(search, sizeof(__m128i), remaining);
487
+
488
+ int needs_escape_mask = compute_chunk_mask_sse2(s);
489
+
490
+ if (needs_escape_mask == 0) {
491
+ // Nothing to escape, ensure search_flush doesn't do anything by setting
492
+ // search->cursor to search->ptr.
493
+ fbuffer_consumed(search->buffer, remaining);
494
+ search->ptr = search->end;
495
+ search->cursor = search->end;
496
+ return 0;
497
+ }
498
+
499
+ search->has_matches = true;
500
+ search->matches_mask = needs_escape_mask;
501
+ search->chunk_base = search->ptr;
502
+ return sse2_next_match(search);
503
+ }
504
+
505
+ if (search->ptr < search->end) {
506
+ return search_escape_basic(search);
507
+ }
508
+
509
+ search_flush(search);
510
+ return 0;
511
+ }
512
+
513
+ #endif /* HAVE_SIMD_SSE2 */
514
+
515
+ #endif /* HAVE_SIMD */
516
+
517
+ static const unsigned char script_safe_escape_table[256] = {
518
+ // ASCII Control Characters
519
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
520
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
521
+ // ASCII Characters
522
+ 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, // '"' and '/'
523
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
524
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
525
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, // '\\'
526
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
527
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
528
+ // Continuation byte
529
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
530
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
531
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
532
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
533
+ // First byte of a 2-byte code point
534
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
535
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
536
+ // First byte of a 3-byte code point
537
+ 3, 3,11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, // 0xE2 is the start of \u2028 and \u2029
538
+ //First byte of a 4+ byte code point
539
+ 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 9, 9,
540
+ };
541
+
542
+ static inline unsigned char search_script_safe_escape(search_state *search)
543
+ {
544
+ while (search->ptr < search->end) {
545
+ unsigned char ch = (unsigned char)*search->ptr;
546
+ unsigned char ch_len = script_safe_escape_table[ch];
547
+
548
+ if (RB_UNLIKELY(ch_len)) {
549
+ if (ch_len & ESCAPE_MASK) {
550
+ if (RB_UNLIKELY(ch_len == 11)) {
551
+ const unsigned char *uptr = (const unsigned char *)search->ptr;
552
+ if (!(uptr[1] == 0x80 && (uptr[2] >> 1) == 0x54)) {
553
+ search->ptr += 3;
554
+ continue;
555
+ }
556
+ }
557
+ search_flush(search);
558
+ return ch_len & CHAR_LENGTH_MASK;
559
+ } else {
560
+ search->ptr += ch_len;
561
+ }
562
+ } else {
563
+ search->ptr++;
564
+ }
565
+ }
566
+ search_flush(search);
567
+ return 0;
568
+ }
569
+
570
+ static void convert_UTF8_to_script_safe_JSON(search_state *search)
571
+ {
572
+ unsigned char ch_len;
573
+ while ((ch_len = search_script_safe_escape(search))) {
574
+ escape_UTF8_char(search, ch_len);
575
+ }
576
+ }
577
+
578
+ static const unsigned char ascii_only_escape_table[256] = {
579
+ // ASCII Control Characters
580
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
581
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
582
+ // ASCII Characters
583
+ 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // '"'
584
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
585
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
586
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, // '\\'
587
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
588
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
589
+ // Continuation byte
590
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
591
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
592
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
593
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
594
+ // First byte of a 2-byte code point
595
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
596
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
597
+ // First byte of a 3-byte code point
598
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
599
+ //First byte of a 4+ byte code point
600
+ 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 9, 9,
601
+ };
602
+
603
+ static inline unsigned char search_ascii_only_escape(search_state *search, const unsigned char escape_table[256])
604
+ {
605
+ while (search->ptr < search->end) {
606
+ unsigned char ch = (unsigned char)*search->ptr;
607
+ unsigned char ch_len = escape_table[ch];
608
+
609
+ if (RB_UNLIKELY(ch_len)) {
610
+ search_flush(search);
611
+ return ch_len & CHAR_LENGTH_MASK;
612
+ } else {
613
+ search->ptr++;
614
+ }
615
+ }
616
+ search_flush(search);
617
+ return 0;
618
+ }
619
+
620
+ static inline void full_escape_UTF8_char(search_state *search, unsigned char ch_len)
621
+ {
622
+ const unsigned char ch = (unsigned char)*search->ptr;
623
+ switch (ch_len) {
624
+ case 1: {
625
+ switch (ch) {
626
+ case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
627
+ case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
628
+ case '/': fbuffer_append(search->buffer, "\\/", 2); break;
629
+ case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
630
+ case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
631
+ case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
632
+ case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
633
+ case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
634
+ default: {
635
+ const char *hexdig = "0123456789abcdef";
636
+ char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
637
+ scratch[4] = hexdig[(ch >> 4) & 0xf];
638
+ scratch[5] = hexdig[ch & 0xf];
639
+ fbuffer_append(search->buffer, scratch, 6);
640
+ break;
641
+ }
642
+ }
643
+ break;
644
+ }
645
+ default: {
646
+ const char *hexdig = "0123456789abcdef";
647
+ char scratch[12] = { '\\', 'u', 0, 0, 0, 0, '\\', 'u' };
648
+
649
+ uint32_t wchar = 0;
650
+
651
+ switch (ch_len) {
652
+ case 2:
653
+ wchar = ch & 0x1F;
654
+ break;
655
+ case 3:
656
+ wchar = ch & 0x0F;
657
+ break;
658
+ case 4:
659
+ wchar = ch & 0x07;
660
+ break;
661
+ }
662
+
663
+ for (short i = 1; i < ch_len; i++) {
664
+ wchar = (wchar << 6) | (search->ptr[i] & 0x3F);
665
+ }
666
+
667
+ if (wchar <= 0xFFFF) {
668
+ scratch[2] = hexdig[wchar >> 12];
669
+ scratch[3] = hexdig[(wchar >> 8) & 0xf];
670
+ scratch[4] = hexdig[(wchar >> 4) & 0xf];
671
+ scratch[5] = hexdig[wchar & 0xf];
672
+ fbuffer_append(search->buffer, scratch, 6);
673
+ } else {
674
+ uint16_t hi, lo;
675
+ wchar -= 0x10000;
676
+ hi = 0xD800 + (uint16_t)(wchar >> 10);
677
+ lo = 0xDC00 + (uint16_t)(wchar & 0x3FF);
678
+
679
+ scratch[2] = hexdig[hi >> 12];
680
+ scratch[3] = hexdig[(hi >> 8) & 0xf];
681
+ scratch[4] = hexdig[(hi >> 4) & 0xf];
682
+ scratch[5] = hexdig[hi & 0xf];
683
+
684
+ scratch[8] = hexdig[lo >> 12];
685
+ scratch[9] = hexdig[(lo >> 8) & 0xf];
686
+ scratch[10] = hexdig[(lo >> 4) & 0xf];
687
+ scratch[11] = hexdig[lo & 0xf];
688
+
689
+ fbuffer_append(search->buffer, scratch, 12);
690
+ }
691
+
692
+ break;
693
+ }
694
+ }
695
+ search->cursor = (search->ptr += ch_len);
696
+ }
697
+
698
+ static void convert_UTF8_to_ASCII_only_JSON(search_state *search, const unsigned char escape_table[256])
699
+ {
700
+ unsigned char ch_len;
701
+ while ((ch_len = search_ascii_only_escape(search, escape_table))) {
702
+ full_escape_UTF8_char(search, ch_len);
703
+ }
704
+ }
705
+
706
+ /*
707
+ * Document-module: JSON::Ext::Generator
708
+ *
709
+ * This is the JSON generator implemented as a C extension. It can be
710
+ * configured to be used by setting
711
+ *
712
+ * JSON.generator = JSON::Ext::Generator
713
+ *
714
+ * with the method generator= in JSON.
715
+ *
716
+ */
717
+
718
+ /* Explanation of the following: that's the only way to not pollute
719
+ * standard library's docs with GeneratorMethods::<ClassName> which
720
+ * are uninformative and take a large place in a list of classes
721
+ */
722
+
723
+ /*
724
+ * Document-module: JSON::Ext::Generator::GeneratorMethods
725
+ * :nodoc:
726
+ */
727
+
728
+ /*
729
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Array
730
+ * :nodoc:
731
+ */
732
+
733
+ /*
734
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Bignum
735
+ * :nodoc:
736
+ */
737
+
738
+ /*
739
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::FalseClass
740
+ * :nodoc:
741
+ */
742
+
743
+ /*
744
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Fixnum
745
+ * :nodoc:
746
+ */
747
+
748
+ /*
749
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Float
750
+ * :nodoc:
751
+ */
752
+
753
+ /*
754
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Hash
755
+ * :nodoc:
756
+ */
757
+
758
+ /*
759
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Integer
760
+ * :nodoc:
761
+ */
762
+
763
+ /*
764
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::NilClass
765
+ * :nodoc:
766
+ */
767
+
768
+ /*
769
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::Object
770
+ * :nodoc:
771
+ */
772
+
773
+ /*
774
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::String
775
+ * :nodoc:
776
+ */
777
+
778
+ /*
779
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::String::Extend
780
+ * :nodoc:
781
+ */
782
+
783
+ /*
784
+ * Document-module: JSON::Ext::Generator::GeneratorMethods::TrueClass
785
+ * :nodoc:
786
+ */
787
+
788
+ /*
789
+ * call-seq: to_json(state = nil)
790
+ *
791
+ * Returns a JSON string containing a JSON object, that is generated from
792
+ * this Hash instance.
793
+ * _state_ is a JSON::State object, that can also be used to configure the
794
+ * produced JSON string output further.
795
+ */
796
+ static VALUE mHash_to_json(int argc, VALUE *argv, VALUE self)
797
+ {
798
+ rb_check_arity(argc, 0, 1);
799
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
800
+ return cState_partial_generate(Vstate, self, generate_json_object, Qfalse);
801
+ }
802
+
803
+ /*
804
+ * call-seq: to_json(state = nil)
805
+ *
806
+ * Returns a JSON string containing a JSON array, that is generated from
807
+ * this Array instance.
808
+ * _state_ is a JSON::State object, that can also be used to configure the
809
+ * produced JSON string output further.
810
+ */
811
+ static VALUE mArray_to_json(int argc, VALUE *argv, VALUE self)
812
+ {
813
+ rb_check_arity(argc, 0, 1);
814
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
815
+ return cState_partial_generate(Vstate, self, generate_json_array, Qfalse);
816
+ }
817
+
818
+ #ifdef RUBY_INTEGER_UNIFICATION
819
+ /*
820
+ * call-seq: to_json(*)
821
+ *
822
+ * Returns a JSON string representation for this Integer number.
823
+ */
824
+ static VALUE mInteger_to_json(int argc, VALUE *argv, VALUE self)
825
+ {
826
+ rb_check_arity(argc, 0, 1);
827
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
828
+ return cState_partial_generate(Vstate, self, generate_json_integer, Qfalse);
829
+ }
830
+
831
+ #else
832
+ /*
833
+ * call-seq: to_json(*)
834
+ *
835
+ * Returns a JSON string representation for this Integer number.
836
+ */
837
+ static VALUE mFixnum_to_json(int argc, VALUE *argv, VALUE self)
838
+ {
839
+ rb_check_arity(argc, 0, 1);
840
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
841
+ return cState_partial_generate(Vstate, self, generate_json_fixnum, Qfalse);
842
+ }
843
+
844
+ /*
845
+ * call-seq: to_json(*)
846
+ *
847
+ * Returns a JSON string representation for this Integer number.
848
+ */
849
+ static VALUE mBignum_to_json(int argc, VALUE *argv, VALUE self)
850
+ {
851
+ rb_check_arity(argc, 0, 1);
852
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
853
+ return cState_partial_generate(Vstate, self, generate_json_bignum, Qfalse);
854
+ }
855
+ #endif
856
+
857
+ /*
858
+ * call-seq: to_json(*)
859
+ *
860
+ * Returns a JSON string representation for this Float number.
861
+ */
862
+ static VALUE mFloat_to_json(int argc, VALUE *argv, VALUE self)
863
+ {
864
+ rb_check_arity(argc, 0, 1);
865
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
866
+ return cState_partial_generate(Vstate, self, generate_json_float, Qfalse);
867
+ }
868
+
869
+ /*
870
+ * call-seq: to_json(*)
871
+ *
872
+ * This string should be encoded with UTF-8 A call to this method
873
+ * returns a JSON string encoded with UTF16 big endian characters as
874
+ * \u????.
875
+ */
876
+ static VALUE mString_to_json(int argc, VALUE *argv, VALUE self)
877
+ {
878
+ rb_check_arity(argc, 0, 1);
879
+ VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
880
+ return cState_partial_generate(Vstate, self, generate_json_string, Qfalse);
881
+ }
882
+
883
+ /*
884
+ * call-seq: to_json(*)
885
+ *
886
+ * Returns a JSON string for true: 'true'.
887
+ */
888
+ static VALUE mTrueClass_to_json(int argc, VALUE *argv, VALUE self)
889
+ {
890
+ rb_check_arity(argc, 0, 1);
891
+ return rb_utf8_str_new("true", 4);
892
+ }
893
+
894
+ /*
895
+ * call-seq: to_json(*)
896
+ *
897
+ * Returns a JSON string for false: 'false'.
898
+ */
899
+ static VALUE mFalseClass_to_json(int argc, VALUE *argv, VALUE self)
900
+ {
901
+ rb_check_arity(argc, 0, 1);
902
+ return rb_utf8_str_new("false", 5);
903
+ }
904
+
905
+ /*
906
+ * call-seq: to_json(*)
907
+ *
908
+ * Returns a JSON string for nil: 'null'.
909
+ */
910
+ static VALUE mNilClass_to_json(int argc, VALUE *argv, VALUE self)
911
+ {
912
+ rb_check_arity(argc, 0, 1);
913
+ return rb_utf8_str_new("null", 4);
914
+ }
915
+
916
+ /*
917
+ * call-seq: to_json(*)
918
+ *
919
+ * Converts this object to a string (calling #to_s), converts
920
+ * it to a JSON string, and returns the result. This is a fallback, if no
921
+ * special method #to_json was defined for some object.
922
+ */
923
+ static VALUE mObject_to_json(int argc, VALUE *argv, VALUE self)
924
+ {
925
+ VALUE state;
926
+ VALUE string = rb_funcall(self, i_to_s, 0);
927
+ rb_scan_args(argc, argv, "01", &state);
928
+ Check_Type(string, T_STRING);
929
+ state = cState_from_state_s(cState, state);
930
+ return cState_partial_generate(state, string, generate_json_string, Qfalse);
931
+ }
932
+
933
+ static void State_mark(void *ptr)
934
+ {
935
+ JSON_Generator_State *state = ptr;
936
+ rb_gc_mark_movable(state->indent);
937
+ rb_gc_mark_movable(state->space);
938
+ rb_gc_mark_movable(state->space_before);
939
+ rb_gc_mark_movable(state->object_nl);
940
+ rb_gc_mark_movable(state->array_nl);
941
+ rb_gc_mark_movable(state->as_json);
942
+ }
943
+
944
+ static void State_compact(void *ptr)
945
+ {
946
+ JSON_Generator_State *state = ptr;
947
+ state->indent = rb_gc_location(state->indent);
948
+ state->space = rb_gc_location(state->space);
949
+ state->space_before = rb_gc_location(state->space_before);
950
+ state->object_nl = rb_gc_location(state->object_nl);
951
+ state->array_nl = rb_gc_location(state->array_nl);
952
+ state->as_json = rb_gc_location(state->as_json);
953
+ }
954
+
955
+ static void State_free(void *ptr)
956
+ {
957
+ JSON_Generator_State *state = ptr;
958
+ ruby_xfree(state);
959
+ }
960
+
961
+ static size_t State_memsize(const void *ptr)
962
+ {
963
+ return sizeof(JSON_Generator_State);
964
+ }
965
+
966
+ static const rb_data_type_t JSON_Generator_State_type = {
967
+ "JSON/Generator/State",
968
+ {
969
+ .dmark = State_mark,
970
+ .dfree = State_free,
971
+ .dsize = State_memsize,
972
+ .dcompact = State_compact,
973
+ },
974
+ 0, 0,
975
+ RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_FROZEN_SHAREABLE,
976
+ };
977
+
978
+ static void state_init(JSON_Generator_State *state)
979
+ {
980
+ state->max_nesting = 100;
981
+ state->buffer_initial_length = FBUFFER_INITIAL_LENGTH_DEFAULT;
982
+ }
983
+
984
+ static VALUE cState_s_allocate(VALUE klass)
985
+ {
986
+ JSON_Generator_State *state;
987
+ VALUE obj = TypedData_Make_Struct(klass, JSON_Generator_State, &JSON_Generator_State_type, state);
988
+ state_init(state);
989
+ return obj;
990
+ }
991
+
992
+ static void vstate_spill(struct generate_json_data *data)
993
+ {
994
+ VALUE vstate = cState_s_allocate(cState);
995
+ GET_STATE(vstate);
996
+ MEMCPY(state, data->state, JSON_Generator_State, 1);
997
+ data->state = state;
998
+ data->vstate = vstate;
999
+ RB_OBJ_WRITTEN(vstate, Qundef, state->indent);
1000
+ RB_OBJ_WRITTEN(vstate, Qundef, state->space);
1001
+ RB_OBJ_WRITTEN(vstate, Qundef, state->space_before);
1002
+ RB_OBJ_WRITTEN(vstate, Qundef, state->object_nl);
1003
+ RB_OBJ_WRITTEN(vstate, Qundef, state->array_nl);
1004
+ RB_OBJ_WRITTEN(vstate, Qundef, state->as_json);
1005
+ }
1006
+
1007
+ static inline VALUE json_call_to_json(struct generate_json_data *data, VALUE obj)
1008
+ {
1009
+ if (RB_UNLIKELY(!data->vstate)) {
1010
+ vstate_spill(data);
1011
+ }
1012
+ GET_STATE(data->vstate);
1013
+ state->depth = data->depth;
1014
+ VALUE tmp = rb_funcall(obj, i_to_json, 1, data->vstate);
1015
+ // no need to restore state->depth, vstate is just a temporary State
1016
+ return tmp;
1017
+ }
1018
+
1019
+ static VALUE
1020
+ json_call_as_json(JSON_Generator_State *state, VALUE object, VALUE is_key)
1021
+ {
1022
+ VALUE proc_args[2] = {object, is_key};
1023
+ return rb_proc_call_with_block(state->as_json, 2, proc_args, Qnil);
1024
+ }
1025
+
1026
+ static VALUE
1027
+ convert_string_subclass(VALUE key)
1028
+ {
1029
+ VALUE key_to_s = rb_funcall(key, i_to_s, 0);
1030
+
1031
+ if (RB_UNLIKELY(!RB_TYPE_P(key_to_s, T_STRING))) {
1032
+ VALUE cname = rb_obj_class(key);
1033
+ rb_raise(rb_eTypeError,
1034
+ "can't convert %"PRIsVALUE" to %s (%"PRIsVALUE"#%s gives %"PRIsVALUE")",
1035
+ cname, "String", cname, "to_s", rb_obj_class(key_to_s));
1036
+ }
1037
+
1038
+ return key_to_s;
1039
+ }
1040
+
1041
+ static bool enc_utf8_compatible_p(int enc_idx)
1042
+ {
1043
+ if (enc_idx == usascii_encindex) return true;
1044
+ if (enc_idx == utf8_encindex) return true;
1045
+ return false;
1046
+ }
1047
+
1048
+ static VALUE encode_json_string_try(VALUE str)
1049
+ {
1050
+ return rb_funcall(str, i_encode, 1, Encoding_UTF_8);
1051
+ }
1052
+
1053
+ static VALUE encode_json_string_rescue(VALUE str, VALUE exception)
1054
+ {
1055
+ raise_generator_error_str(str, rb_funcall(exception, rb_intern("message"), 0));
1056
+ return Qundef;
1057
+ }
1058
+
1059
+ static inline bool valid_json_string_p(VALUE str)
1060
+ {
1061
+ int coderange = rb_enc_str_coderange(str);
1062
+
1063
+ if (RB_LIKELY(coderange == ENC_CODERANGE_7BIT)) {
1064
+ return true;
1065
+ }
1066
+
1067
+ if (RB_LIKELY(coderange == ENC_CODERANGE_VALID)) {
1068
+ return enc_utf8_compatible_p(RB_ENCODING_GET_INLINED(str));
1069
+ }
1070
+
1071
+ return false;
1072
+ }
1073
+
1074
+ static inline VALUE ensure_valid_encoding(struct generate_json_data *data, VALUE str, bool as_json_called, bool is_key)
1075
+ {
1076
+ if (RB_LIKELY(valid_json_string_p(str))) {
1077
+ return str;
1078
+ }
1079
+
1080
+ if (!as_json_called && data->state->strict && RTEST(data->state->as_json)) {
1081
+ VALUE coerced_str = json_call_as_json(data->state, str, Qfalse);
1082
+ if (coerced_str != str) {
1083
+ if (RB_TYPE_P(coerced_str, T_STRING)) {
1084
+ if (!valid_json_string_p(coerced_str)) {
1085
+ raise_generator_error(str, "source sequence is illegal/malformed utf-8");
1086
+ }
1087
+ } else {
1088
+ // as_json could return another type than T_STRING
1089
+ if (is_key) {
1090
+ raise_generator_error(coerced_str, "%"PRIsVALUE" not allowed as object key in JSON", CLASS_OF(coerced_str));
1091
+ }
1092
+ }
1093
+
1094
+ return coerced_str;
1095
+ }
1096
+ }
1097
+
1098
+ if (RB_ENCODING_GET_INLINED(str) == binary_encindex) {
1099
+ VALUE utf8_string = rb_enc_associate_index(rb_str_dup(str), utf8_encindex);
1100
+ switch (rb_enc_str_coderange(utf8_string)) {
1101
+ case ENC_CODERANGE_7BIT:
1102
+ return utf8_string;
1103
+ case ENC_CODERANGE_VALID:
1104
+ // For historical reason, we silently reinterpret binary strings as UTF-8 if it would work.
1105
+ // TODO: Raise in 3.0.0
1106
+ rb_warn("JSON.generate: UTF-8 string passed as BINARY, this will raise an encoding error in json 3.0");
1107
+ return utf8_string;
1108
+ break;
1109
+ }
1110
+ }
1111
+
1112
+ return rb_rescue(encode_json_string_try, str, encode_json_string_rescue, str);
1113
+ }
1114
+
1115
+ static void raw_generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1116
+ {
1117
+ fbuffer_append_char(buffer, '"');
1118
+
1119
+ long len;
1120
+ search_state search;
1121
+ search.buffer = buffer;
1122
+ RSTRING_GETMEM(obj, search.ptr, len);
1123
+ search.cursor = search.ptr;
1124
+ search.end = search.ptr + len;
1125
+
1126
+ #ifdef HAVE_SIMD
1127
+ search.matches_mask = 0;
1128
+ search.has_matches = false;
1129
+ search.chunk_base = NULL;
1130
+ search.chunk_end = NULL;
1131
+ #endif /* HAVE_SIMD */
1132
+
1133
+ switch (rb_enc_str_coderange(obj)) {
1134
+ case ENC_CODERANGE_7BIT:
1135
+ case ENC_CODERANGE_VALID:
1136
+ if (RB_UNLIKELY(data->state->ascii_only)) {
1137
+ convert_UTF8_to_ASCII_only_JSON(&search, data->state->script_safe ? script_safe_escape_table : ascii_only_escape_table);
1138
+ } else if (RB_UNLIKELY(data->state->script_safe)) {
1139
+ convert_UTF8_to_script_safe_JSON(&search);
1140
+ } else {
1141
+ convert_UTF8_to_JSON(&search);
1142
+ }
1143
+ break;
1144
+ default:
1145
+ raise_generator_error(obj, "source sequence is illegal/malformed utf-8");
1146
+ break;
1147
+ }
1148
+ fbuffer_append_char(buffer, '"');
1149
+ }
1150
+
1151
+ static void generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1152
+ {
1153
+ obj = ensure_valid_encoding(data, obj, false, false);
1154
+ raw_generate_json_string(buffer, data, obj);
1155
+ }
1156
+
1157
+ struct hash_foreach_arg {
1158
+ VALUE hash;
1159
+ struct generate_json_data *data;
1160
+ int first_key_type;
1161
+ bool first;
1162
+ bool mixed_keys_encountered;
1163
+ };
1164
+
1165
+ NOINLINE(static) void
1166
+ json_inspect_hash_with_mixed_keys(struct hash_foreach_arg *arg)
1167
+ {
1168
+ if (arg->mixed_keys_encountered) {
1169
+ return;
1170
+ }
1171
+ arg->mixed_keys_encountered = true;
1172
+
1173
+ JSON_Generator_State *state = arg->data->state;
1174
+ if (state->on_duplicate_key != JSON_IGNORE) {
1175
+ VALUE do_raise = state->on_duplicate_key == JSON_RAISE ? Qtrue : Qfalse;
1176
+ rb_funcall(mJSON, rb_intern("on_mixed_keys_hash"), 2, arg->hash, do_raise);
1177
+ }
1178
+ }
1179
+
1180
+ static int
1181
+ json_object_i(VALUE key, VALUE val, VALUE _arg)
1182
+ {
1183
+ struct hash_foreach_arg *arg = (struct hash_foreach_arg *)_arg;
1184
+ struct generate_json_data *data = arg->data;
1185
+
1186
+ FBuffer *buffer = data->buffer;
1187
+ JSON_Generator_State *state = data->state;
1188
+
1189
+ long depth = data->depth;
1190
+ int key_type = rb_type(key);
1191
+
1192
+ if (arg->first) {
1193
+ arg->first = false;
1194
+ arg->first_key_type = key_type;
1195
+ }
1196
+ else {
1197
+ fbuffer_append_char(buffer, ',');
1198
+ }
1199
+
1200
+ if (RB_UNLIKELY(data->state->object_nl)) {
1201
+ fbuffer_append_str(buffer, data->state->object_nl);
1202
+ }
1203
+ if (RB_UNLIKELY(data->state->indent)) {
1204
+ fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1205
+ }
1206
+
1207
+ VALUE key_to_s;
1208
+ bool as_json_called = false;
1209
+
1210
+ start:
1211
+ switch (key_type) {
1212
+ case T_STRING:
1213
+ if (RB_UNLIKELY(arg->first_key_type != T_STRING)) {
1214
+ json_inspect_hash_with_mixed_keys(arg);
1215
+ }
1216
+
1217
+ if (RB_LIKELY(RBASIC_CLASS(key) == rb_cString)) {
1218
+ key_to_s = key;
1219
+ } else {
1220
+ key_to_s = convert_string_subclass(key);
1221
+ }
1222
+ break;
1223
+ case T_SYMBOL:
1224
+ if (RB_UNLIKELY(arg->first_key_type != T_SYMBOL)) {
1225
+ json_inspect_hash_with_mixed_keys(arg);
1226
+ }
1227
+
1228
+ key_to_s = rb_sym2str(key);
1229
+ break;
1230
+ default:
1231
+ if (data->state->strict) {
1232
+ if (RTEST(data->state->as_json) && !as_json_called) {
1233
+ key = json_call_as_json(data->state, key, Qtrue);
1234
+ key_type = rb_type(key);
1235
+ as_json_called = true;
1236
+ goto start;
1237
+ } else {
1238
+ raise_generator_error(key, "%"PRIsVALUE" not allowed as object key in JSON", CLASS_OF(key));
1239
+ }
1240
+ }
1241
+ key_to_s = rb_convert_type(key, T_STRING, "String", "to_s");
1242
+ break;
1243
+ }
1244
+
1245
+ key_to_s = ensure_valid_encoding(data, key_to_s, as_json_called, true);
1246
+
1247
+ if (RB_LIKELY(RBASIC_CLASS(key_to_s) == rb_cString)) {
1248
+ raw_generate_json_string(buffer, data, key_to_s);
1249
+ } else {
1250
+ generate_json(buffer, data, key_to_s);
1251
+ }
1252
+ if (RB_UNLIKELY(state->space_before)) fbuffer_append_str(buffer, data->state->space_before);
1253
+ fbuffer_append_char(buffer, ':');
1254
+ if (RB_UNLIKELY(state->space)) fbuffer_append_str(buffer, data->state->space);
1255
+ generate_json(buffer, data, val);
1256
+
1257
+ return ST_CONTINUE;
1258
+ }
1259
+
1260
+ static inline long increase_depth(struct generate_json_data *data)
1261
+ {
1262
+ JSON_Generator_State *state = data->state;
1263
+ long depth = ++data->depth;
1264
+ if (RB_UNLIKELY(depth > state->max_nesting && state->max_nesting)) {
1265
+ rb_raise(eNestingError, "nesting of %ld is too deep. Did you try to serialize objects with circular references?", --data->depth);
1266
+ }
1267
+ return depth;
1268
+ }
1269
+
1270
+ static void generate_json_object(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1271
+ {
1272
+ long depth = increase_depth(data);
1273
+
1274
+ if (RHASH_SIZE(obj) == 0) {
1275
+ fbuffer_append(buffer, "{}", 2);
1276
+ --data->depth;
1277
+ return;
1278
+ }
1279
+
1280
+ fbuffer_append_char(buffer, '{');
1281
+
1282
+ struct hash_foreach_arg arg = {
1283
+ .hash = obj,
1284
+ .data = data,
1285
+ .first = true,
1286
+ };
1287
+ rb_hash_foreach(obj, json_object_i, (VALUE)&arg);
1288
+
1289
+ depth = --data->depth;
1290
+ if (RB_UNLIKELY(data->state->object_nl)) {
1291
+ fbuffer_append_str(buffer, data->state->object_nl);
1292
+ if (RB_UNLIKELY(data->state->indent)) {
1293
+ fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1294
+ }
1295
+ }
1296
+ fbuffer_append_char(buffer, '}');
1297
+ }
1298
+
1299
+ static void generate_json_array(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1300
+ {
1301
+ long depth = increase_depth(data);
1302
+
1303
+ if (RARRAY_LEN(obj) == 0) {
1304
+ fbuffer_append(buffer, "[]", 2);
1305
+ --data->depth;
1306
+ return;
1307
+ }
1308
+
1309
+ fbuffer_append_char(buffer, '[');
1310
+ if (RB_UNLIKELY(data->state->array_nl)) fbuffer_append_str(buffer, data->state->array_nl);
1311
+ for (int i = 0; i < RARRAY_LEN(obj); i++) {
1312
+ if (i > 0) {
1313
+ fbuffer_append_char(buffer, ',');
1314
+ if (RB_UNLIKELY(data->state->array_nl)) fbuffer_append_str(buffer, data->state->array_nl);
1315
+ }
1316
+ if (RB_UNLIKELY(data->state->indent)) {
1317
+ fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1318
+ }
1319
+ generate_json(buffer, data, RARRAY_AREF(obj, i));
1320
+ }
1321
+ data->depth = --depth;
1322
+ if (RB_UNLIKELY(data->state->array_nl)) {
1323
+ fbuffer_append_str(buffer, data->state->array_nl);
1324
+ if (RB_UNLIKELY(data->state->indent)) {
1325
+ fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1326
+ }
1327
+ }
1328
+ fbuffer_append_char(buffer, ']');
1329
+ }
1330
+
1331
+ static void generate_json_fallback(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1332
+ {
1333
+ VALUE tmp;
1334
+ if (rb_respond_to(obj, i_to_json)) {
1335
+ tmp = json_call_to_json(data, obj);
1336
+ Check_Type(tmp, T_STRING);
1337
+ fbuffer_append_str(buffer, tmp);
1338
+ } else {
1339
+ tmp = rb_funcall(obj, i_to_s, 0);
1340
+ Check_Type(tmp, T_STRING);
1341
+ generate_json_string(buffer, data, tmp);
1342
+ }
1343
+ }
1344
+
1345
+ static inline void generate_json_symbol(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1346
+ {
1347
+ if (data->state->strict) {
1348
+ generate_json_string(buffer, data, rb_sym2str(obj));
1349
+ } else {
1350
+ generate_json_fallback(buffer, data, obj);
1351
+ }
1352
+ }
1353
+
1354
+ static void generate_json_null(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1355
+ {
1356
+ fbuffer_append(buffer, "null", 4);
1357
+ }
1358
+
1359
+ static void generate_json_false(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1360
+ {
1361
+ fbuffer_append(buffer, "false", 5);
1362
+ }
1363
+
1364
+ static void generate_json_true(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1365
+ {
1366
+ fbuffer_append(buffer, "true", 4);
1367
+ }
1368
+
1369
+ static void generate_json_fixnum(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1370
+ {
1371
+ fbuffer_append_long(buffer, FIX2LONG(obj));
1372
+ }
1373
+
1374
+ static void generate_json_bignum(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1375
+ {
1376
+ VALUE tmp = rb_funcall(obj, i_to_s, 0);
1377
+ fbuffer_append_str(buffer, StringValue(tmp));
1378
+ }
1379
+
1380
+ #ifdef RUBY_INTEGER_UNIFICATION
1381
+ static void generate_json_integer(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1382
+ {
1383
+ if (FIXNUM_P(obj))
1384
+ generate_json_fixnum(buffer, data, obj);
1385
+ else
1386
+ generate_json_bignum(buffer, data, obj);
1387
+ }
1388
+ #endif
1389
+
1390
+ static void generate_json_float(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1391
+ {
1392
+ double value = RFLOAT_VALUE(obj);
1393
+ char allow_nan = data->state->allow_nan;
1394
+ if (isinf(value) || isnan(value)) {
1395
+ /* for NaN and Infinity values we either raise an error or rely on Float#to_s. */
1396
+ if (!allow_nan) {
1397
+ if (data->state->strict && data->state->as_json) {
1398
+ VALUE casted_obj = json_call_as_json(data->state, obj, Qfalse);
1399
+ if (casted_obj != obj) {
1400
+ increase_depth(data);
1401
+ generate_json(buffer, data, casted_obj);
1402
+ data->depth--;
1403
+ return;
1404
+ }
1405
+ }
1406
+ raise_generator_error(obj, "%"PRIsVALUE" not allowed in JSON", rb_funcall(obj, i_to_s, 0));
1407
+ }
1408
+
1409
+ VALUE tmp = rb_funcall(obj, i_to_s, 0);
1410
+ fbuffer_append_str(buffer, tmp);
1411
+ return;
1412
+ }
1413
+
1414
+ /* This implementation writes directly into the buffer. We reserve
1415
+ * the 32 characters that fpconv_dtoa states as its maximum.
1416
+ */
1417
+ fbuffer_inc_capa(buffer, 32);
1418
+ char* d = buffer->ptr + buffer->len;
1419
+ int len = fpconv_dtoa(value, d);
1420
+ /* fpconv_dtoa converts a float to its shortest string representation,
1421
+ * but it adds a ".0" if this is a plain integer.
1422
+ */
1423
+ fbuffer_consumed(buffer, len);
1424
+ }
1425
+
1426
+ static void generate_json_fragment(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1427
+ {
1428
+ VALUE fragment = RSTRUCT_GET(obj, 0);
1429
+ Check_Type(fragment, T_STRING);
1430
+ fbuffer_append_str(buffer, fragment);
1431
+ }
1432
+
1433
+ static void generate_json(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1434
+ {
1435
+ bool as_json_called = false;
1436
+ start:
1437
+ if (obj == Qnil) {
1438
+ generate_json_null(buffer, data, obj);
1439
+ } else if (obj == Qfalse) {
1440
+ generate_json_false(buffer, data, obj);
1441
+ } else if (obj == Qtrue) {
1442
+ generate_json_true(buffer, data, obj);
1443
+ } else if (RB_SPECIAL_CONST_P(obj)) {
1444
+ if (RB_FIXNUM_P(obj)) {
1445
+ generate_json_fixnum(buffer, data, obj);
1446
+ } else if (RB_FLONUM_P(obj)) {
1447
+ generate_json_float(buffer, data, obj);
1448
+ } else if (RB_STATIC_SYM_P(obj)) {
1449
+ generate_json_symbol(buffer, data, obj);
1450
+ } else {
1451
+ goto general;
1452
+ }
1453
+ } else {
1454
+ VALUE klass = RBASIC_CLASS(obj);
1455
+ switch (RB_BUILTIN_TYPE(obj)) {
1456
+ case T_BIGNUM:
1457
+ generate_json_bignum(buffer, data, obj);
1458
+ break;
1459
+ case T_HASH:
1460
+ if (klass != rb_cHash) goto general;
1461
+ generate_json_object(buffer, data, obj);
1462
+ break;
1463
+ case T_ARRAY:
1464
+ if (klass != rb_cArray) goto general;
1465
+ generate_json_array(buffer, data, obj);
1466
+ break;
1467
+ case T_STRING:
1468
+ if (klass != rb_cString) goto general;
1469
+
1470
+ if (RB_LIKELY(valid_json_string_p(obj))) {
1471
+ raw_generate_json_string(buffer, data, obj);
1472
+ } else if (as_json_called) {
1473
+ raise_generator_error(obj, "source sequence is illegal/malformed utf-8");
1474
+ } else {
1475
+ obj = ensure_valid_encoding(data, obj, false, false);
1476
+ as_json_called = true;
1477
+ goto start;
1478
+ }
1479
+ break;
1480
+ case T_SYMBOL:
1481
+ generate_json_symbol(buffer, data, obj);
1482
+ break;
1483
+ case T_FLOAT:
1484
+ if (klass != rb_cFloat) goto general;
1485
+ generate_json_float(buffer, data, obj);
1486
+ break;
1487
+ case T_STRUCT:
1488
+ if (klass != cFragment) goto general;
1489
+ generate_json_fragment(buffer, data, obj);
1490
+ break;
1491
+ default:
1492
+ general:
1493
+ if (data->state->strict) {
1494
+ if (RTEST(data->state->as_json) && !as_json_called) {
1495
+ obj = json_call_as_json(data->state, obj, Qfalse);
1496
+ as_json_called = true;
1497
+ goto start;
1498
+ } else {
1499
+ raise_generator_error(obj, "%"PRIsVALUE" not allowed in JSON", CLASS_OF(obj));
1500
+ }
1501
+ } else {
1502
+ generate_json_fallback(buffer, data, obj);
1503
+ }
1504
+ }
1505
+ }
1506
+ }
1507
+
1508
+ static VALUE generate_json_try(VALUE d)
1509
+ {
1510
+ struct generate_json_data *data = (struct generate_json_data *)d;
1511
+
1512
+ data->func(data->buffer, data, data->obj);
1513
+
1514
+ return fbuffer_finalize(data->buffer);
1515
+ }
1516
+
1517
+ static VALUE generate_json_ensure(VALUE d)
1518
+ {
1519
+ struct generate_json_data *data = (struct generate_json_data *)d;
1520
+ fbuffer_free(data->buffer);
1521
+
1522
+ return Qundef;
1523
+ }
1524
+
1525
+ static VALUE cState_partial_generate(VALUE self, VALUE obj, generator_func func, VALUE io)
1526
+ {
1527
+ GET_STATE(self);
1528
+
1529
+ char stack_buffer[FBUFFER_STACK_SIZE];
1530
+ FBuffer buffer = {
1531
+ .io = RTEST(io) ? io : Qfalse,
1532
+ };
1533
+ fbuffer_stack_init(&buffer, state->buffer_initial_length, stack_buffer, FBUFFER_STACK_SIZE);
1534
+
1535
+ struct generate_json_data data = {
1536
+ .buffer = &buffer,
1537
+ .vstate = Qfalse, // don't use self as it may be frozen and its depth is mutated when calling to_json
1538
+ .state = state,
1539
+ .depth = state->depth,
1540
+ .obj = obj,
1541
+ .func = func
1542
+ };
1543
+ VALUE result = rb_ensure(generate_json_try, (VALUE)&data, generate_json_ensure, (VALUE)&data);
1544
+ RB_GC_GUARD(self);
1545
+ return result;
1546
+ }
1547
+
1548
+ /* call-seq:
1549
+ * generate(obj) -> String
1550
+ * generate(obj, anIO) -> anIO
1551
+ *
1552
+ * Generates a valid JSON document from object +obj+ and returns the
1553
+ * result. If no valid JSON document can be created this method raises a
1554
+ * GeneratorError exception.
1555
+ */
1556
+ static VALUE cState_generate(int argc, VALUE *argv, VALUE self)
1557
+ {
1558
+ rb_check_arity(argc, 1, 2);
1559
+ VALUE obj = argv[0];
1560
+ VALUE io = argc > 1 ? argv[1] : Qnil;
1561
+ return cState_partial_generate(self, obj, generate_json, io);
1562
+ }
1563
+
1564
+ static VALUE cState_initialize(int argc, VALUE *argv, VALUE self)
1565
+ {
1566
+ rb_warn("The json gem extension was loaded with the stdlib ruby code. You should upgrade rubygems with `gem update --system`");
1567
+ return self;
1568
+ }
1569
+
1570
+ /*
1571
+ * call-seq: initialize_copy(orig)
1572
+ *
1573
+ * Initializes this object from orig if it can be duplicated/cloned and returns
1574
+ * it.
1575
+ */
1576
+ static VALUE cState_init_copy(VALUE obj, VALUE orig)
1577
+ {
1578
+ JSON_Generator_State *objState, *origState;
1579
+
1580
+ if (obj == orig) return obj;
1581
+ GET_STATE_TO(obj, objState);
1582
+ GET_STATE_TO(orig, origState);
1583
+ if (!objState) rb_raise(rb_eArgError, "unallocated JSON::State");
1584
+
1585
+ MEMCPY(objState, origState, JSON_Generator_State, 1);
1586
+ objState->indent = origState->indent;
1587
+ objState->space = origState->space;
1588
+ objState->space_before = origState->space_before;
1589
+ objState->object_nl = origState->object_nl;
1590
+ objState->array_nl = origState->array_nl;
1591
+ objState->as_json = origState->as_json;
1592
+ return obj;
1593
+ }
1594
+
1595
+ /*
1596
+ * call-seq: from_state(opts)
1597
+ *
1598
+ * Creates a State object from _opts_, which ought to be Hash to create a
1599
+ * new State instance configured by _opts_, something else to create an
1600
+ * unconfigured instance. If _opts_ is a State object, it is just returned.
1601
+ */
1602
+ static VALUE cState_from_state_s(VALUE self, VALUE opts)
1603
+ {
1604
+ if (rb_obj_is_kind_of(opts, self)) {
1605
+ return opts;
1606
+ } else if (rb_obj_is_kind_of(opts, rb_cHash)) {
1607
+ return rb_funcall(self, i_new, 1, opts);
1608
+ } else {
1609
+ return rb_class_new_instance(0, NULL, cState);
1610
+ }
1611
+ }
1612
+
1613
+ /*
1614
+ * call-seq: indent()
1615
+ *
1616
+ * Returns the string that is used to indent levels in the JSON text.
1617
+ */
1618
+ static VALUE cState_indent(VALUE self)
1619
+ {
1620
+ GET_STATE(self);
1621
+ return state->indent ? state->indent : rb_str_freeze(rb_utf8_str_new("", 0));
1622
+ }
1623
+
1624
+ static VALUE string_config(VALUE config)
1625
+ {
1626
+ if (RTEST(config)) {
1627
+ Check_Type(config, T_STRING);
1628
+ if (RSTRING_LEN(config)) {
1629
+ return rb_str_new_frozen(config);
1630
+ }
1631
+ }
1632
+ return Qfalse;
1633
+ }
1634
+
1635
+ /*
1636
+ * call-seq: indent=(indent)
1637
+ *
1638
+ * Sets the string that is used to indent levels in the JSON text.
1639
+ */
1640
+ static VALUE cState_indent_set(VALUE self, VALUE indent)
1641
+ {
1642
+ rb_check_frozen(self);
1643
+ GET_STATE(self);
1644
+ RB_OBJ_WRITE(self, &state->indent, string_config(indent));
1645
+ return Qnil;
1646
+ }
1647
+
1648
+ /*
1649
+ * call-seq: space()
1650
+ *
1651
+ * Returns the string that is used to insert a space between the tokens in a JSON
1652
+ * string.
1653
+ */
1654
+ static VALUE cState_space(VALUE self)
1655
+ {
1656
+ GET_STATE(self);
1657
+ return state->space ? state->space : rb_str_freeze(rb_utf8_str_new("", 0));
1658
+ }
1659
+
1660
+ /*
1661
+ * call-seq: space=(space)
1662
+ *
1663
+ * Sets _space_ to the string that is used to insert a space between the tokens in a JSON
1664
+ * string.
1665
+ */
1666
+ static VALUE cState_space_set(VALUE self, VALUE space)
1667
+ {
1668
+ rb_check_frozen(self);
1669
+ GET_STATE(self);
1670
+ RB_OBJ_WRITE(self, &state->space, string_config(space));
1671
+ return Qnil;
1672
+ }
1673
+
1674
+ /*
1675
+ * call-seq: space_before()
1676
+ *
1677
+ * Returns the string that is used to insert a space before the ':' in JSON objects.
1678
+ */
1679
+ static VALUE cState_space_before(VALUE self)
1680
+ {
1681
+ GET_STATE(self);
1682
+ return state->space_before ? state->space_before : rb_str_freeze(rb_utf8_str_new("", 0));
1683
+ }
1684
+
1685
+ /*
1686
+ * call-seq: space_before=(space_before)
1687
+ *
1688
+ * Sets the string that is used to insert a space before the ':' in JSON objects.
1689
+ */
1690
+ static VALUE cState_space_before_set(VALUE self, VALUE space_before)
1691
+ {
1692
+ rb_check_frozen(self);
1693
+ GET_STATE(self);
1694
+ RB_OBJ_WRITE(self, &state->space_before, string_config(space_before));
1695
+ return Qnil;
1696
+ }
1697
+
1698
+ /*
1699
+ * call-seq: object_nl()
1700
+ *
1701
+ * This string is put at the end of a line that holds a JSON object (or
1702
+ * Hash).
1703
+ */
1704
+ static VALUE cState_object_nl(VALUE self)
1705
+ {
1706
+ GET_STATE(self);
1707
+ return state->object_nl ? state->object_nl : rb_str_freeze(rb_utf8_str_new("", 0));
1708
+ }
1709
+
1710
+ /*
1711
+ * call-seq: object_nl=(object_nl)
1712
+ *
1713
+ * This string is put at the end of a line that holds a JSON object (or
1714
+ * Hash).
1715
+ */
1716
+ static VALUE cState_object_nl_set(VALUE self, VALUE object_nl)
1717
+ {
1718
+ rb_check_frozen(self);
1719
+ GET_STATE(self);
1720
+ RB_OBJ_WRITE(self, &state->object_nl, string_config(object_nl));
1721
+ return Qnil;
1722
+ }
1723
+
1724
+ /*
1725
+ * call-seq: array_nl()
1726
+ *
1727
+ * This string is put at the end of a line that holds a JSON array.
1728
+ */
1729
+ static VALUE cState_array_nl(VALUE self)
1730
+ {
1731
+ GET_STATE(self);
1732
+ return state->array_nl ? state->array_nl : rb_str_freeze(rb_utf8_str_new("", 0));
1733
+ }
1734
+
1735
+ /*
1736
+ * call-seq: array_nl=(array_nl)
1737
+ *
1738
+ * This string is put at the end of a line that holds a JSON array.
1739
+ */
1740
+ static VALUE cState_array_nl_set(VALUE self, VALUE array_nl)
1741
+ {
1742
+ rb_check_frozen(self);
1743
+ GET_STATE(self);
1744
+ RB_OBJ_WRITE(self, &state->array_nl, string_config(array_nl));
1745
+ return Qnil;
1746
+ }
1747
+
1748
+ /*
1749
+ * call-seq: as_json()
1750
+ *
1751
+ * This string is put at the end of a line that holds a JSON array.
1752
+ */
1753
+ static VALUE cState_as_json(VALUE self)
1754
+ {
1755
+ GET_STATE(self);
1756
+ return state->as_json;
1757
+ }
1758
+
1759
+ /*
1760
+ * call-seq: as_json=(as_json)
1761
+ *
1762
+ * This string is put at the end of a line that holds a JSON array.
1763
+ */
1764
+ static VALUE cState_as_json_set(VALUE self, VALUE as_json)
1765
+ {
1766
+ rb_check_frozen(self);
1767
+ GET_STATE(self);
1768
+ RB_OBJ_WRITE(self, &state->as_json, rb_convert_type(as_json, T_DATA, "Proc", "to_proc"));
1769
+ return Qnil;
1770
+ }
1771
+
1772
+ /*
1773
+ * call-seq: check_circular?
1774
+ *
1775
+ * Returns true, if circular data structures should be checked,
1776
+ * otherwise returns false.
1777
+ */
1778
+ static VALUE cState_check_circular_p(VALUE self)
1779
+ {
1780
+ GET_STATE(self);
1781
+ return state->max_nesting ? Qtrue : Qfalse;
1782
+ }
1783
+
1784
+ /*
1785
+ * call-seq: max_nesting
1786
+ *
1787
+ * This integer returns the maximum level of data structure nesting in
1788
+ * the generated JSON, max_nesting = 0 if no maximum is checked.
1789
+ */
1790
+ static VALUE cState_max_nesting(VALUE self)
1791
+ {
1792
+ GET_STATE(self);
1793
+ return LONG2FIX(state->max_nesting);
1794
+ }
1795
+
1796
+ static long long_config(VALUE num)
1797
+ {
1798
+ return RTEST(num) ? FIX2LONG(num) : 0;
1799
+ }
1800
+
1801
+ /*
1802
+ * call-seq: max_nesting=(depth)
1803
+ *
1804
+ * This sets the maximum level of data structure nesting in the generated JSON
1805
+ * to the integer depth, max_nesting = 0 if no maximum should be checked.
1806
+ */
1807
+ static VALUE cState_max_nesting_set(VALUE self, VALUE depth)
1808
+ {
1809
+ rb_check_frozen(self);
1810
+ GET_STATE(self);
1811
+ state->max_nesting = long_config(depth);
1812
+ return Qnil;
1813
+ }
1814
+
1815
+ /*
1816
+ * call-seq: script_safe
1817
+ *
1818
+ * If this boolean is true, the forward slashes will be escaped in
1819
+ * the json output.
1820
+ */
1821
+ static VALUE cState_script_safe(VALUE self)
1822
+ {
1823
+ GET_STATE(self);
1824
+ return state->script_safe ? Qtrue : Qfalse;
1825
+ }
1826
+
1827
+ /*
1828
+ * call-seq: script_safe=(enable)
1829
+ *
1830
+ * This sets whether or not the forward slashes will be escaped in
1831
+ * the json output.
1832
+ */
1833
+ static VALUE cState_script_safe_set(VALUE self, VALUE enable)
1834
+ {
1835
+ rb_check_frozen(self);
1836
+ GET_STATE(self);
1837
+ state->script_safe = RTEST(enable);
1838
+ return Qnil;
1839
+ }
1840
+
1841
+ /*
1842
+ * call-seq: strict
1843
+ *
1844
+ * If this boolean is false, types unsupported by the JSON format will
1845
+ * be serialized as strings.
1846
+ * If this boolean is true, types unsupported by the JSON format will
1847
+ * raise a JSON::GeneratorError.
1848
+ */
1849
+ static VALUE cState_strict(VALUE self)
1850
+ {
1851
+ GET_STATE(self);
1852
+ return state->strict ? Qtrue : Qfalse;
1853
+ }
1854
+
1855
+ /*
1856
+ * call-seq: strict=(enable)
1857
+ *
1858
+ * This sets whether or not to serialize types unsupported by the
1859
+ * JSON format as strings.
1860
+ * If this boolean is false, types unsupported by the JSON format will
1861
+ * be serialized as strings.
1862
+ * If this boolean is true, types unsupported by the JSON format will
1863
+ * raise a JSON::GeneratorError.
1864
+ */
1865
+ static VALUE cState_strict_set(VALUE self, VALUE enable)
1866
+ {
1867
+ rb_check_frozen(self);
1868
+ GET_STATE(self);
1869
+ state->strict = RTEST(enable);
1870
+ return Qnil;
1871
+ }
1872
+
1873
+ /*
1874
+ * call-seq: allow_nan?
1875
+ *
1876
+ * Returns true, if NaN, Infinity, and -Infinity should be generated, otherwise
1877
+ * returns false.
1878
+ */
1879
+ static VALUE cState_allow_nan_p(VALUE self)
1880
+ {
1881
+ GET_STATE(self);
1882
+ return state->allow_nan ? Qtrue : Qfalse;
1883
+ }
1884
+
1885
+ /*
1886
+ * call-seq: allow_nan=(enable)
1887
+ *
1888
+ * This sets whether or not to serialize NaN, Infinity, and -Infinity
1889
+ */
1890
+ static VALUE cState_allow_nan_set(VALUE self, VALUE enable)
1891
+ {
1892
+ rb_check_frozen(self);
1893
+ GET_STATE(self);
1894
+ state->allow_nan = RTEST(enable);
1895
+ return Qnil;
1896
+ }
1897
+
1898
+ /*
1899
+ * call-seq: ascii_only?
1900
+ *
1901
+ * Returns true, if only ASCII characters should be generated. Otherwise
1902
+ * returns false.
1903
+ */
1904
+ static VALUE cState_ascii_only_p(VALUE self)
1905
+ {
1906
+ GET_STATE(self);
1907
+ return state->ascii_only ? Qtrue : Qfalse;
1908
+ }
1909
+
1910
+ /*
1911
+ * call-seq: ascii_only=(enable)
1912
+ *
1913
+ * This sets whether only ASCII characters should be generated.
1914
+ */
1915
+ static VALUE cState_ascii_only_set(VALUE self, VALUE enable)
1916
+ {
1917
+ rb_check_frozen(self);
1918
+ GET_STATE(self);
1919
+ state->ascii_only = RTEST(enable);
1920
+ return Qnil;
1921
+ }
1922
+
1923
+ static VALUE cState_allow_duplicate_key_p(VALUE self)
1924
+ {
1925
+ GET_STATE(self);
1926
+ switch (state->on_duplicate_key) {
1927
+ case JSON_IGNORE:
1928
+ return Qtrue;
1929
+ case JSON_DEPRECATED:
1930
+ return Qnil;
1931
+ default:
1932
+ return Qfalse;
1933
+ }
1934
+ }
1935
+
1936
+ /*
1937
+ * call-seq: depth
1938
+ *
1939
+ * This integer returns the current depth of data structure nesting.
1940
+ */
1941
+ static VALUE cState_depth(VALUE self)
1942
+ {
1943
+ GET_STATE(self);
1944
+ return LONG2FIX(state->depth);
1945
+ }
1946
+
1947
+ /*
1948
+ * call-seq: depth=(depth)
1949
+ *
1950
+ * This sets the maximum level of data structure nesting in the generated JSON
1951
+ * to the integer depth, max_nesting = 0 if no maximum should be checked.
1952
+ */
1953
+ static VALUE cState_depth_set(VALUE self, VALUE depth)
1954
+ {
1955
+ rb_check_frozen(self);
1956
+ GET_STATE(self);
1957
+ state->depth = long_config(depth);
1958
+ return Qnil;
1959
+ }
1960
+
1961
+ /*
1962
+ * call-seq: buffer_initial_length
1963
+ *
1964
+ * This integer returns the current initial length of the buffer.
1965
+ */
1966
+ static VALUE cState_buffer_initial_length(VALUE self)
1967
+ {
1968
+ GET_STATE(self);
1969
+ return LONG2FIX(state->buffer_initial_length);
1970
+ }
1971
+
1972
+ static void buffer_initial_length_set(JSON_Generator_State *state, VALUE buffer_initial_length)
1973
+ {
1974
+ Check_Type(buffer_initial_length, T_FIXNUM);
1975
+ long initial_length = FIX2LONG(buffer_initial_length);
1976
+ if (initial_length > 0) {
1977
+ state->buffer_initial_length = initial_length;
1978
+ }
1979
+ }
1980
+
1981
+ /*
1982
+ * call-seq: buffer_initial_length=(length)
1983
+ *
1984
+ * This sets the initial length of the buffer to +length+, if +length+ > 0,
1985
+ * otherwise its value isn't changed.
1986
+ */
1987
+ static VALUE cState_buffer_initial_length_set(VALUE self, VALUE buffer_initial_length)
1988
+ {
1989
+ rb_check_frozen(self);
1990
+ GET_STATE(self);
1991
+ buffer_initial_length_set(state, buffer_initial_length);
1992
+ return Qnil;
1993
+ }
1994
+
1995
+ struct configure_state_data {
1996
+ JSON_Generator_State *state;
1997
+ VALUE vstate; // Ruby object that owns the state, or Qfalse if stack-allocated
1998
+ };
1999
+
2000
+ static inline void state_write_value(struct configure_state_data *data, VALUE *field, VALUE value)
2001
+ {
2002
+ if (RTEST(data->vstate)) {
2003
+ RB_OBJ_WRITE(data->vstate, field, value);
2004
+ } else {
2005
+ *field = value;
2006
+ }
2007
+ }
2008
+
2009
+ static int configure_state_i(VALUE key, VALUE val, VALUE _arg)
2010
+ {
2011
+ struct configure_state_data *data = (struct configure_state_data *)_arg;
2012
+ JSON_Generator_State *state = data->state;
2013
+
2014
+ if (key == sym_indent) { state_write_value(data, &state->indent, string_config(val)); }
2015
+ else if (key == sym_space) { state_write_value(data, &state->space, string_config(val)); }
2016
+ else if (key == sym_space_before) { state_write_value(data, &state->space_before, string_config(val)); }
2017
+ else if (key == sym_object_nl) { state_write_value(data, &state->object_nl, string_config(val)); }
2018
+ else if (key == sym_array_nl) { state_write_value(data, &state->array_nl, string_config(val)); }
2019
+ else if (key == sym_max_nesting) { state->max_nesting = long_config(val); }
2020
+ else if (key == sym_allow_nan) { state->allow_nan = RTEST(val); }
2021
+ else if (key == sym_ascii_only) { state->ascii_only = RTEST(val); }
2022
+ else if (key == sym_depth) { state->depth = long_config(val); }
2023
+ else if (key == sym_buffer_initial_length) { buffer_initial_length_set(state, val); }
2024
+ else if (key == sym_script_safe) { state->script_safe = RTEST(val); }
2025
+ else if (key == sym_escape_slash) { state->script_safe = RTEST(val); }
2026
+ else if (key == sym_strict) { state->strict = RTEST(val); }
2027
+ else if (key == sym_allow_duplicate_key) { state->on_duplicate_key = RTEST(val) ? JSON_IGNORE : JSON_RAISE; }
2028
+ else if (key == sym_as_json) {
2029
+ VALUE proc = RTEST(val) ? rb_convert_type(val, T_DATA, "Proc", "to_proc") : Qfalse;
2030
+ state->as_json_single_arg = proc && rb_proc_arity(proc) == 1;
2031
+ state_write_value(data, &state->as_json, proc);
2032
+ }
2033
+ return ST_CONTINUE;
2034
+ }
2035
+
2036
+ static void configure_state(JSON_Generator_State *state, VALUE vstate, VALUE config)
2037
+ {
2038
+ if (!RTEST(config)) return;
2039
+
2040
+ Check_Type(config, T_HASH);
2041
+
2042
+ if (!RHASH_SIZE(config)) return;
2043
+
2044
+ struct configure_state_data data = {
2045
+ .state = state,
2046
+ .vstate = vstate
2047
+ };
2048
+
2049
+ // We assume in most cases few keys are set so it's faster to go over
2050
+ // the provided keys than to check all possible keys.
2051
+ rb_hash_foreach(config, configure_state_i, (VALUE)&data);
2052
+ }
2053
+
2054
+ static VALUE cState_configure(VALUE self, VALUE opts)
2055
+ {
2056
+ rb_check_frozen(self);
2057
+ GET_STATE(self);
2058
+ configure_state(state, self, opts);
2059
+ return self;
2060
+ }
2061
+
2062
+ static VALUE cState_m_generate(VALUE klass, VALUE obj, VALUE opts, VALUE io)
2063
+ {
2064
+ JSON_Generator_State state = {0};
2065
+ state_init(&state);
2066
+ configure_state(&state, Qfalse, opts);
2067
+
2068
+ char stack_buffer[FBUFFER_STACK_SIZE];
2069
+ FBuffer buffer = {
2070
+ .io = RTEST(io) ? io : Qfalse,
2071
+ };
2072
+ fbuffer_stack_init(&buffer, state.buffer_initial_length, stack_buffer, FBUFFER_STACK_SIZE);
2073
+
2074
+ struct generate_json_data data = {
2075
+ .buffer = &buffer,
2076
+ .vstate = Qfalse,
2077
+ .state = &state,
2078
+ .depth = state.depth,
2079
+ .obj = obj,
2080
+ .func = generate_json,
2081
+ };
2082
+ return rb_ensure(generate_json_try, (VALUE)&data, generate_json_ensure, (VALUE)&data);
2083
+ }
2084
+
2085
+ /*
2086
+ *
2087
+ */
2088
+ void Init_generator(void)
2089
+ {
2090
+ #ifdef HAVE_RB_EXT_RACTOR_SAFE
2091
+ rb_ext_ractor_safe(true);
2092
+ #endif
2093
+
2094
+ #undef rb_intern
2095
+ rb_require("json/common");
2096
+
2097
+ mJSON = rb_define_module("JSON");
2098
+
2099
+ rb_global_variable(&cFragment);
2100
+ cFragment = rb_const_get(mJSON, rb_intern("Fragment"));
2101
+
2102
+ VALUE mExt = rb_define_module_under(mJSON, "Ext");
2103
+ VALUE mGenerator = rb_define_module_under(mExt, "Generator");
2104
+
2105
+ rb_global_variable(&eGeneratorError);
2106
+ eGeneratorError = rb_path2class("JSON::GeneratorError");
2107
+
2108
+ rb_global_variable(&eNestingError);
2109
+ eNestingError = rb_path2class("JSON::NestingError");
2110
+
2111
+ cState = rb_define_class_under(mGenerator, "State", rb_cObject);
2112
+ rb_define_alloc_func(cState, cState_s_allocate);
2113
+ rb_define_singleton_method(cState, "from_state", cState_from_state_s, 1);
2114
+ rb_define_method(cState, "initialize", cState_initialize, -1);
2115
+ rb_define_alias(cState, "initialize", "initialize"); // avoid method redefinition warnings
2116
+ rb_define_private_method(cState, "_configure", cState_configure, 1);
2117
+
2118
+ rb_define_method(cState, "initialize_copy", cState_init_copy, 1);
2119
+ rb_define_method(cState, "indent", cState_indent, 0);
2120
+ rb_define_method(cState, "indent=", cState_indent_set, 1);
2121
+ rb_define_method(cState, "space", cState_space, 0);
2122
+ rb_define_method(cState, "space=", cState_space_set, 1);
2123
+ rb_define_method(cState, "space_before", cState_space_before, 0);
2124
+ rb_define_method(cState, "space_before=", cState_space_before_set, 1);
2125
+ rb_define_method(cState, "object_nl", cState_object_nl, 0);
2126
+ rb_define_method(cState, "object_nl=", cState_object_nl_set, 1);
2127
+ rb_define_method(cState, "array_nl", cState_array_nl, 0);
2128
+ rb_define_method(cState, "array_nl=", cState_array_nl_set, 1);
2129
+ rb_define_method(cState, "as_json", cState_as_json, 0);
2130
+ rb_define_method(cState, "as_json=", cState_as_json_set, 1);
2131
+ rb_define_method(cState, "max_nesting", cState_max_nesting, 0);
2132
+ rb_define_method(cState, "max_nesting=", cState_max_nesting_set, 1);
2133
+ rb_define_method(cState, "script_safe", cState_script_safe, 0);
2134
+ rb_define_method(cState, "script_safe?", cState_script_safe, 0);
2135
+ rb_define_method(cState, "script_safe=", cState_script_safe_set, 1);
2136
+ rb_define_alias(cState, "escape_slash", "script_safe");
2137
+ rb_define_alias(cState, "escape_slash?", "script_safe?");
2138
+ rb_define_alias(cState, "escape_slash=", "script_safe=");
2139
+ rb_define_method(cState, "strict", cState_strict, 0);
2140
+ rb_define_method(cState, "strict?", cState_strict, 0);
2141
+ rb_define_method(cState, "strict=", cState_strict_set, 1);
2142
+ rb_define_method(cState, "check_circular?", cState_check_circular_p, 0);
2143
+ rb_define_method(cState, "allow_nan?", cState_allow_nan_p, 0);
2144
+ rb_define_method(cState, "allow_nan=", cState_allow_nan_set, 1);
2145
+ rb_define_method(cState, "ascii_only?", cState_ascii_only_p, 0);
2146
+ rb_define_method(cState, "ascii_only=", cState_ascii_only_set, 1);
2147
+ rb_define_method(cState, "depth", cState_depth, 0);
2148
+ rb_define_method(cState, "depth=", cState_depth_set, 1);
2149
+ rb_define_method(cState, "buffer_initial_length", cState_buffer_initial_length, 0);
2150
+ rb_define_method(cState, "buffer_initial_length=", cState_buffer_initial_length_set, 1);
2151
+ rb_define_method(cState, "generate", cState_generate, -1);
2152
+
2153
+ rb_define_private_method(cState, "allow_duplicate_key?", cState_allow_duplicate_key_p, 0);
2154
+
2155
+ rb_define_singleton_method(cState, "generate", cState_m_generate, 3);
2156
+
2157
+ VALUE mGeneratorMethods = rb_define_module_under(mGenerator, "GeneratorMethods");
2158
+
2159
+ VALUE mObject = rb_define_module_under(mGeneratorMethods, "Object");
2160
+ rb_define_method(mObject, "to_json", mObject_to_json, -1);
2161
+
2162
+ VALUE mHash = rb_define_module_under(mGeneratorMethods, "Hash");
2163
+ rb_define_method(mHash, "to_json", mHash_to_json, -1);
2164
+
2165
+ VALUE mArray = rb_define_module_under(mGeneratorMethods, "Array");
2166
+ rb_define_method(mArray, "to_json", mArray_to_json, -1);
2167
+
2168
+ #ifdef RUBY_INTEGER_UNIFICATION
2169
+ VALUE mInteger = rb_define_module_under(mGeneratorMethods, "Integer");
2170
+ rb_define_method(mInteger, "to_json", mInteger_to_json, -1);
2171
+ #else
2172
+ VALUE mFixnum = rb_define_module_under(mGeneratorMethods, "Fixnum");
2173
+ rb_define_method(mFixnum, "to_json", mFixnum_to_json, -1);
2174
+
2175
+ VALUE mBignum = rb_define_module_under(mGeneratorMethods, "Bignum");
2176
+ rb_define_method(mBignum, "to_json", mBignum_to_json, -1);
2177
+ #endif
2178
+ VALUE mFloat = rb_define_module_under(mGeneratorMethods, "Float");
2179
+ rb_define_method(mFloat, "to_json", mFloat_to_json, -1);
2180
+
2181
+ VALUE mString = rb_define_module_under(mGeneratorMethods, "String");
2182
+ rb_define_method(mString, "to_json", mString_to_json, -1);
2183
+
2184
+ VALUE mTrueClass = rb_define_module_under(mGeneratorMethods, "TrueClass");
2185
+ rb_define_method(mTrueClass, "to_json", mTrueClass_to_json, -1);
2186
+
2187
+ VALUE mFalseClass = rb_define_module_under(mGeneratorMethods, "FalseClass");
2188
+ rb_define_method(mFalseClass, "to_json", mFalseClass_to_json, -1);
2189
+
2190
+ VALUE mNilClass = rb_define_module_under(mGeneratorMethods, "NilClass");
2191
+ rb_define_method(mNilClass, "to_json", mNilClass_to_json, -1);
2192
+
2193
+ rb_global_variable(&Encoding_UTF_8);
2194
+ Encoding_UTF_8 = rb_const_get(rb_path2class("Encoding"), rb_intern("UTF_8"));
2195
+
2196
+ i_to_s = rb_intern("to_s");
2197
+ i_to_json = rb_intern("to_json");
2198
+ i_new = rb_intern("new");
2199
+ i_encode = rb_intern("encode");
2200
+
2201
+ sym_indent = ID2SYM(rb_intern("indent"));
2202
+ sym_space = ID2SYM(rb_intern("space"));
2203
+ sym_space_before = ID2SYM(rb_intern("space_before"));
2204
+ sym_object_nl = ID2SYM(rb_intern("object_nl"));
2205
+ sym_array_nl = ID2SYM(rb_intern("array_nl"));
2206
+ sym_max_nesting = ID2SYM(rb_intern("max_nesting"));
2207
+ sym_allow_nan = ID2SYM(rb_intern("allow_nan"));
2208
+ sym_ascii_only = ID2SYM(rb_intern("ascii_only"));
2209
+ sym_depth = ID2SYM(rb_intern("depth"));
2210
+ sym_buffer_initial_length = ID2SYM(rb_intern("buffer_initial_length"));
2211
+ sym_script_safe = ID2SYM(rb_intern("script_safe"));
2212
+ sym_escape_slash = ID2SYM(rb_intern("escape_slash"));
2213
+ sym_strict = ID2SYM(rb_intern("strict"));
2214
+ sym_as_json = ID2SYM(rb_intern("as_json"));
2215
+ sym_allow_duplicate_key = ID2SYM(rb_intern("allow_duplicate_key"));
2216
+
2217
+ usascii_encindex = rb_usascii_encindex();
2218
+ utf8_encindex = rb_utf8_encindex();
2219
+ binary_encindex = rb_ascii8bit_encindex();
2220
+
2221
+ rb_require("json/ext/generator/state");
2222
+
2223
+ simd_impl = find_simd_implementation();
2224
+ }