lightning_ui_kit 0.3.5 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1305) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +34 -3
  3. data/app/assets/stylesheets/lightning_ui_kit/application.css +6 -0
  4. data/app/assets/stylesheets/lightning_ui_kit/themes.css +14 -0
  5. data/app/assets/vendor/lightning_ui_kit.css +3258 -0
  6. data/app/assets/vendor/lightning_ui_kit.js +18 -0
  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 +13 -0
  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 +102 -0
  21. data/app/components/lightning_ui_kit/chart_component.rb +534 -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/description_list/item_component.html.erb +2 -12
  37. data/app/components/lightning_ui_kit/description_list/item_component.rb +28 -1
  38. data/app/components/lightning_ui_kit/description_list_component.html.erb +2 -2
  39. data/app/components/lightning_ui_kit/description_list_component.rb +27 -1
  40. data/app/components/lightning_ui_kit/file_input_component.rb +1 -1
  41. data/app/components/lightning_ui_kit/hover_card_component.html.erb +15 -0
  42. data/app/components/lightning_ui_kit/hover_card_component.rb +35 -0
  43. data/app/components/lightning_ui_kit/input_component.rb +1 -0
  44. data/app/components/lightning_ui_kit/input_otp_component.html.erb +19 -0
  45. data/app/components/lightning_ui_kit/input_otp_component.rb +40 -0
  46. data/app/components/lightning_ui_kit/menubar/menu_component.html.erb +12 -0
  47. data/app/components/lightning_ui_kit/menubar/menu_component.rb +22 -0
  48. data/app/components/lightning_ui_kit/menubar_component.html.erb +5 -0
  49. data/app/components/lightning_ui_kit/menubar_component.rb +21 -0
  50. data/app/components/lightning_ui_kit/modal_component.html.erb +44 -24
  51. data/app/components/lightning_ui_kit/modal_component.rb +42 -2
  52. data/app/components/lightning_ui_kit/navigation_menu/item_component.html.erb +1 -0
  53. data/app/components/lightning_ui_kit/navigation_menu/item_component.rb +13 -0
  54. data/app/components/lightning_ui_kit/navigation_menu_component.html.erb +27 -0
  55. data/app/components/lightning_ui_kit/navigation_menu_component.rb +26 -0
  56. data/app/components/lightning_ui_kit/pagination_component.html.erb +2 -2
  57. data/app/components/lightning_ui_kit/pagination_component.rb +1 -2
  58. data/app/components/lightning_ui_kit/popover_component.html.erb +8 -0
  59. data/app/components/lightning_ui_kit/popover_component.rb +32 -0
  60. data/app/components/lightning_ui_kit/progress_component.html.erb +3 -0
  61. data/app/components/lightning_ui_kit/progress_component.rb +39 -0
  62. data/app/components/lightning_ui_kit/resizable_component.html.erb +17 -0
  63. data/app/components/lightning_ui_kit/resizable_component.rb +52 -0
  64. data/app/components/lightning_ui_kit/scroll_area_component.html.erb +3 -0
  65. data/app/components/lightning_ui_kit/scroll_area_component.rb +32 -0
  66. data/app/components/lightning_ui_kit/separator_component.html.erb +1 -0
  67. data/app/components/lightning_ui_kit/separator_component.rb +36 -0
  68. data/app/components/lightning_ui_kit/sheet_component.html.erb +53 -0
  69. data/app/components/lightning_ui_kit/sheet_component.rb +60 -0
  70. data/app/components/lightning_ui_kit/slider_component.html.erb +20 -0
  71. data/app/components/lightning_ui_kit/slider_component.rb +56 -0
  72. data/app/components/lightning_ui_kit/table/column_component.rb +19 -2
  73. data/app/components/lightning_ui_kit/table_component.html.erb +128 -35
  74. data/app/components/lightning_ui_kit/table_component.rb +161 -5
  75. data/app/components/lightning_ui_kit/toggle_component.html.erb +3 -0
  76. data/app/components/lightning_ui_kit/toggle_component.rb +53 -0
  77. data/app/components/lightning_ui_kit/toggle_group/item_component.html.erb +1 -0
  78. data/app/components/lightning_ui_kit/toggle_group/item_component.rb +8 -0
  79. data/app/components/lightning_ui_kit/toggle_group_component.html.erb +15 -0
  80. data/app/components/lightning_ui_kit/toggle_group_component.rb +57 -0
  81. data/app/components/lightning_ui_kit/tooltip_component.html.erb +1 -1
  82. data/app/controllers/concerns/lightning_ui_kit/sortable.rb +18 -0
  83. data/app/javascript/lightning_ui_kit/controllers/calendar_controller.js +103 -0
  84. data/app/javascript/lightning_ui_kit/controllers/carousel_controller.js +68 -0
  85. data/app/javascript/lightning_ui_kit/controllers/chart_controller.js +109 -0
  86. data/app/javascript/lightning_ui_kit/controllers/clipboard_controller.js +40 -3
  87. data/app/javascript/lightning_ui_kit/controllers/collapsible_controller.js +24 -0
  88. data/app/javascript/lightning_ui_kit/controllers/command_controller.js +71 -0
  89. data/app/javascript/lightning_ui_kit/controllers/context_menu_controller.js +59 -0
  90. data/app/javascript/lightning_ui_kit/controllers/date_picker_controller.js +69 -0
  91. data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +1 -1
  92. data/app/javascript/lightning_ui_kit/controllers/hover_card_controller.js +84 -0
  93. data/app/javascript/lightning_ui_kit/controllers/menubar_controller.js +55 -0
  94. data/app/javascript/lightning_ui_kit/controllers/modal_controller.js +28 -16
  95. data/app/javascript/lightning_ui_kit/controllers/navigation_menu_controller.js +96 -0
  96. data/app/javascript/lightning_ui_kit/controllers/otp_controller.js +65 -0
  97. data/app/javascript/lightning_ui_kit/controllers/popover_controller.js +75 -0
  98. data/app/javascript/lightning_ui_kit/controllers/resizable_controller.js +51 -0
  99. data/app/javascript/lightning_ui_kit/controllers/reveal_controller.js +2 -2
  100. data/app/javascript/lightning_ui_kit/controllers/sheet_controller.js +42 -0
  101. data/app/javascript/lightning_ui_kit/controllers/slider_controller.js +23 -0
  102. data/app/javascript/lightning_ui_kit/controllers/table_controller.js +82 -0
  103. data/app/javascript/lightning_ui_kit/controllers/toggle_controller.js +16 -0
  104. data/app/javascript/lightning_ui_kit/controllers/toggle_group_controller.js +31 -0
  105. data/app/javascript/lightning_ui_kit/index.js +36 -0
  106. data/config/deploy.yml +1 -1
  107. data/lib/lightning_ui_kit/builder.rb +96 -0
  108. data/lib/lightning_ui_kit/sorting.rb +46 -0
  109. data/lib/lightning_ui_kit/version.rb +1 -1
  110. data/lib/lightning_ui_kit.rb +1 -0
  111. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.1.gem +0 -0
  112. data/vendor/bundle/ruby/3.4.0/cache/ostruct-0.6.3.gem +0 -0
  113. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.84.2.gem +0 -0
  114. data/vendor/bundle/ruby/3.4.0/cache/standard-1.54.0.gem +0 -0
  115. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/bigdecimal.so +0 -0
  116. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/gem_make.out +6 -6
  117. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/mkmf.log +26 -26
  118. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/date_core.so +0 -0
  119. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/gem_make.out +6 -6
  120. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/mkmf.log +4 -4
  121. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/erb/escape.so +0 -0
  122. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/gem_make.out +6 -6
  123. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/mkmf.log +2 -2
  124. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/gem_make.out +6 -6
  125. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/io/console.so +0 -0
  126. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/mkmf.log +16 -16
  127. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/gem_make.out +25 -0
  128. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/generator.so +0 -0
  129. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/parser.so +0 -0
  130. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/mkmf.log +165 -0
  131. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/gem_make.out +6 -6
  132. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/mkmf.log +12 -12
  133. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/nio4r_ext.so +0 -0
  134. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/gem_make.out +6 -6
  135. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/mkmf.log +6 -6
  136. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/prism/prism.so +0 -0
  137. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/gem_make.out +6 -6
  138. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/mkmf.log +10 -10
  139. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/psych.so +0 -0
  140. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/gem_make.out +6 -6
  141. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/racc/cparse.so +0 -0
  142. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/gem_make.out +6 -6
  143. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/mkmf.log +2 -2
  144. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/stringio.so +0 -0
  145. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/gem_make.out +6 -6
  146. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
  147. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +3 -3
  148. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal.so +0 -0
  149. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/ext/date/Makefile +3 -3
  150. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/lib/date_core.so +0 -0
  151. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/ext/erb/escape/Makefile +3 -3
  152. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/lib/erb/escape.so +0 -0
  153. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/ext/io/console/Makefile +3 -3
  154. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/lib/io/console.so +0 -0
  155. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/CHANGES.md +733 -0
  156. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/fbuffer/fbuffer.h +249 -0
  157. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/Makefile +273 -0
  158. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/generator.c +2224 -0
  159. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/json.h +101 -0
  160. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/Makefile +273 -0
  161. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/parser.c +1672 -0
  162. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/simd/simd.h +218 -0
  163. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/vendor/fpconv.c +480 -0
  164. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/generator.so +0 -0
  165. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/parser.so +0 -0
  166. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/version.rb +5 -0
  167. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json.rb +663 -0
  168. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/ext/nio4r/Makefile +3 -3
  169. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/lib/nio4r_ext.so +0 -0
  170. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/BSDL +22 -0
  171. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/COPYING +56 -0
  172. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/Gemfile +10 -0
  173. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/README.md +69 -0
  174. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/Rakefile +18 -0
  175. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/bin/console +14 -0
  176. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/lib/ostruct.rb +492 -0
  177. data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/ostruct.gemspec +26 -0
  178. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/ext/prism/Makefile +3 -3
  179. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/prism.so +0 -0
  180. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/ext/psych/Makefile +3 -3
  181. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/lib/psych.so +0 -0
  182. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +3 -3
  183. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
  184. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/LICENSE.txt +20 -0
  185. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/README.md +255 -0
  186. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/config/default.yml +6146 -0
  187. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cache_config.rb +58 -0
  188. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/lsp.rb +19 -0
  189. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli.rb +247 -0
  190. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/comment_config.rb +261 -0
  191. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/config_loader.rb +269 -0
  192. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_version.rb +132 -0
  193. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/alignment_corrector.rb +144 -0
  194. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  195. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +241 -0
  196. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +49 -0
  197. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/case_indentation.rb +221 -0
  198. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/class_structure.rb +388 -0
  199. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
  200. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_argument_indentation.rb +315 -0
  201. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_line_break.rb +94 -0
  202. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
  203. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_indentation.rb +195 -0
  204. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_width.rb +493 -0
  205. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_length.rb +431 -0
  206. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  207. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
  208. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +403 -0
  209. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
  210. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_methods.rb +398 -0
  211. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
  212. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_as_condition.rb +283 -0
  213. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_splat_expansion.rb +216 -0
  214. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/struct_new_override.rb +75 -0
  215. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_json.rb +45 -0
  216. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_or.rb +111 -0
  217. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
  218. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +236 -0
  219. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_method.rb +330 -0
  220. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  221. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/offense.rb +246 -0
  222. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/json_load.rb +69 -0
  223. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/access_modifier_declarations.rb +364 -0
  224. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_delimiters.rb +504 -0
  225. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation.rb +198 -0
  226. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation_method.rb +152 -0
  227. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_class_definition.rb +96 -0
  228. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string_token.rb +272 -0
  229. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/guard_clause.rb +321 -0
  230. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_as_last_array_item.rb +102 -0
  231. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_lookup_method.rb +94 -0
  232. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier.rb +351 -0
  233. 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
  234. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +166 -0
  235. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda_call.rb +79 -0
  236. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_def_parentheses.rb +178 -0
  237. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_member_existence_check.rb +117 -0
  238. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_then.rb +42 -0
  239. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negative_array_index.rb +220 -0
  240. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
  241. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_condition.rb +345 -0
  242. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/reverse_find.rb +51 -0
  243. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/team.rb +290 -0
  244. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branch.rb +355 -0
  245. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/clang_style_formatter.rb +58 -0
  246. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/formatter_set.rb +114 -0
  247. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/tap_formatter.rb +85 -0
  248. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/diagnostic.rb +173 -0
  249. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/disable_comment_edits.rb +135 -0
  250. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/routes.rb +256 -0
  251. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/runtime.rb +79 -0
  252. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/stdin_runner.rb +76 -0
  253. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/remote_config.rb +114 -0
  254. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/shared_contexts.rb +275 -0
  255. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/support.rb +35 -0
  256. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/server/cache.rb +187 -0
  257. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/target_ruby.rb +308 -0
  258. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/version.rb +160 -0
  259. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop.rb +830 -0
  260. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/CHANGELOG.md +716 -0
  261. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/Gemfile.lock +89 -0
  262. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/bin/setup +8 -0
  263. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/base.yml +1981 -0
  264. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.3.yml +7 -0
  265. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.4.yml +7 -0
  266. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/lib/standard/version.rb +3 -0
  267. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/standard.gemspec +32 -0
  268. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/ext/stringio/Makefile +3 -3
  269. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/lib/stringio.so +0 -0
  270. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/ext/websocket-driver/Makefile +3 -3
  271. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
  272. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.1.gemspec +0 -0
  273. data/vendor/bundle/ruby/3.4.0/specifications/ostruct-0.6.3.gemspec +22 -0
  274. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.84.2.gemspec +39 -0
  275. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.54.0.gemspec +31 -0
  276. metadata +1127 -1030
  277. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.0.gem +0 -0
  278. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.82.1.gem +0 -0
  279. data/vendor/bundle/ruby/3.4.0/cache/standard-1.53.0.gem +0 -0
  280. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/gem_make.out +0 -25
  281. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/generator.so +0 -0
  282. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/parser.so +0 -0
  283. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/mkmf.log +0 -165
  284. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/CHANGES.md +0 -728
  285. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/fbuffer/fbuffer.h +0 -247
  286. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/Makefile +0 -273
  287. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/generator.c +0 -2202
  288. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/json.h +0 -97
  289. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/Makefile +0 -273
  290. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/parser.c +0 -1679
  291. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/simd/simd.h +0 -191
  292. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/vendor/fpconv.c +0 -480
  293. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/generator.so +0 -0
  294. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/parser.so +0 -0
  295. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/version.rb +0 -5
  296. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json.rb +0 -642
  297. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/LICENSE.txt +0 -20
  298. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/README.md +0 -255
  299. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/config/default.yml +0 -6099
  300. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cache_config.rb +0 -29
  301. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli/command/lsp.rb +0 -19
  302. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli.rb +0 -228
  303. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/comment_config.rb +0 -261
  304. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/config_loader.rb +0 -273
  305. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/bundler/gem_version.rb +0 -132
  306. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -126
  307. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -111
  308. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -241
  309. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -49
  310. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/case_indentation.rb +0 -219
  311. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/class_structure.rb +0 -381
  312. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -101
  313. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
  314. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -68
  315. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -68
  316. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -162
  317. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/indentation_width.rb +0 -400
  318. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/line_length.rb +0 -428
  319. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -115
  320. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -115
  321. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -267
  322. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
  323. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -346
  324. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
  325. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/literal_as_condition.rb +0 -283
  326. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
  327. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/struct_new_override.rb +0 -59
  328. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/to_json.rb +0 -49
  329. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/useless_or.rb +0 -111
  330. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
  331. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -236
  332. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_method.rb +0 -319
  333. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
  334. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/offense.rb +0 -238
  335. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/security/json_load.rb +0 -69
  336. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -365
  337. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/block_delimiters.rb +0 -503
  338. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation.rb +0 -198
  339. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation_method.rb +0 -152
  340. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/format_string_token.rb +0 -255
  341. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/guard_clause.rb +0 -308
  342. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -100
  343. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -322
  344. 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
  345. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -163
  346. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/lambda_call.rb +0 -79
  347. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
  348. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -74
  349. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/multiline_if_then.rb +0 -44
  350. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -74
  351. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/redundant_condition.rb +0 -342
  352. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/team.rb +0 -290
  353. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/variable_force/branch.rb +0 -331
  354. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/clang_style_formatter.rb +0 -55
  355. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/formatter_set.rb +0 -114
  356. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/tap_formatter.rb +0 -82
  357. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/diagnostic.rb +0 -185
  358. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/routes.rb +0 -256
  359. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/runtime.rb +0 -69
  360. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/stdin_runner.rb +0 -69
  361. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/remote_config.rb +0 -111
  362. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/shared_contexts.rb +0 -271
  363. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/support.rb +0 -34
  364. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/server/cache.rb +0 -208
  365. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/target_ruby.rb +0 -306
  366. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/version.rb +0 -160
  367. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop.rb +0 -826
  368. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/CHANGELOG.md +0 -712
  369. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/Gemfile.lock +0 -89
  370. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/base.yml +0 -1969
  371. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/ruby-3.3.yml +0 -7
  372. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/lib/standard/version.rb +0 -3
  373. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/standard.gemspec +0 -32
  374. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.0.gemspec +0 -0
  375. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.82.1.gemspec +0 -39
  376. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.53.0.gemspec +0 -31
  377. /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
  378. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/BSDL +0 -0
  379. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/COPYING +0 -0
  380. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/LEGAL +0 -0
  381. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/README.md +0 -0
  382. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/generator/extconf.rb +0 -0
  383. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/parser/extconf.rb +0 -0
  384. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/simd/conf.rb +0 -0
  385. /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
  386. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/ryu.h +0 -0
  387. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/json.gemspec +0 -0
  388. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/bigdecimal.rb +0 -0
  389. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/complex.rb +0 -0
  390. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/core.rb +0 -0
  391. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date.rb +0 -0
  392. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date_time.rb +0 -0
  393. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/exception.rb +0 -0
  394. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/ostruct.rb +0 -0
  395. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/range.rb +0 -0
  396. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/rational.rb +0 -0
  397. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/regexp.rb +0 -0
  398. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/set.rb +0 -0
  399. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/string.rb +0 -0
  400. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/struct.rb +0 -0
  401. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/symbol.rb +0 -0
  402. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/time.rb +0 -0
  403. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/common.rb +0 -0
  404. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext/generator/state.rb +0 -0
  405. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext.rb +0 -0
  406. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/generic_object.rb +0 -0
  407. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/truffle_ruby/generator.rb +0 -0
  408. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → ostruct-0.6.3}/bin/setup +0 -0
  409. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/logo.png +0 -0
  410. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.css.erb +0 -0
  411. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.html.erb +0 -0
  412. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/internal_affairs.yml +0 -0
  413. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/obsoletion.yml +0 -0
  414. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/exe/rubocop +0 -0
  415. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_env.rb +0 -0
  416. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_file.rb +0 -0
  417. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ast_aliases.rb +0 -0
  418. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cached_data.rb +0 -0
  419. /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
  420. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/base.rb +0 -0
  421. /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
  422. /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
  423. /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
  424. /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
  425. /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
  426. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/version.rb +0 -0
  427. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command.rb +0 -0
  428. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/environment.rb +0 -0
  429. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config.rb +0 -0
  430. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_finder.rb +0 -0
  431. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_loader_resolver.rb +0 -0
  432. /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
  433. /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
  434. /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
  435. /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
  436. /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
  437. /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
  438. /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
  439. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  440. /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
  441. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion.rb +0 -0
  442. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_regeneration.rb +0 -0
  443. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_store.rb +0 -0
  444. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_validator.rb +0 -0
  445. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  446. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/badge.rb +0 -0
  447. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/base.rb +0 -0
  448. /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
  449. /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
  450. /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
  451. /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
  452. /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
  453. /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
  454. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/commissioner.rb +0 -0
  455. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/cop.rb +0 -0
  456. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/corrector.rb +0 -0
  457. /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
  458. /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
  459. /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
  460. /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
  461. /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
  462. /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
  463. /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
  464. /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
  465. /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
  466. /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
  467. /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
  468. /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
  469. /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
  470. /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
  471. /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
  472. /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
  473. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/documentation.rb +0 -0
  474. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
  475. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/force.rb +0 -0
  476. /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
  477. /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
  478. /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
  479. /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
  480. /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
  481. /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
  482. /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
  483. /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
  484. /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
  485. /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
  486. /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
  487. /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
  488. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator.rb +0 -0
  489. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/ignored_node.rb +0 -0
  490. /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
  491. /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
  492. /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
  493. /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
  494. /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
  495. /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
  496. /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
  497. /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
  498. /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
  499. /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
  500. /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
  501. /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
  502. /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
  503. /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
  504. /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
  505. /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
  506. /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
  507. /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
  508. /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
  509. /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
  510. /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
  511. /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
  512. /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
  513. /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
  514. /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
  515. /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
  516. /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
  517. /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
  518. /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
  519. /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
  520. /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
  521. /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
  522. /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
  523. /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
  524. /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
  525. /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
  526. /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
  527. /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
  528. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
  529. /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
  530. /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
  531. /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
  532. /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
  533. /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
  534. /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
  535. /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
  536. /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
  537. /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
  538. /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
  539. /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
  540. /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
  541. /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
  542. /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
  543. /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
  544. /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
  545. /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
  546. /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
  547. /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
  548. /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
  549. /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
  550. /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
  551. /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
  552. /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
  553. /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
  554. /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
  555. /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
  556. /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
  557. /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
  558. /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
  559. /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
  560. /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
  561. /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
  562. /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
  563. /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
  564. /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
  565. /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
  566. /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
  567. /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
  568. /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
  569. /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
  570. /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
  571. /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
  572. /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
  573. /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
  574. /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
  575. /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
  576. /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
  577. /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
  578. /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
  579. /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
  580. /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
  581. /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
  582. /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
  583. /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
  584. /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
  585. /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
  586. /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
  587. /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
  588. /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
  589. /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
  590. /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
  591. /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
  592. /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
  593. /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
  594. /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
  595. /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
  596. /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
  597. /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
  598. /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
  599. /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
  600. /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
  601. /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
  602. /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
  603. /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
  604. /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
  605. /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
  606. /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
  607. /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
  608. /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
  609. /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
  610. /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
  611. /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
  612. /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
  613. /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
  614. /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
  615. /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
  616. /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
  617. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  618. /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
  619. /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
  620. /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
  621. /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
  622. /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
  623. /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
  624. /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
  625. /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
  626. /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
  627. /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
  628. /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
  629. /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
  630. /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
  631. /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
  632. /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
  633. /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
  634. /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
  635. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
  636. /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
  637. /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
  638. /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
  639. /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
  640. /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
  641. /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
  642. /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
  643. /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
  644. /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
  645. /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
  646. /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
  647. /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
  648. /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
  649. /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
  650. /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
  651. /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
  652. /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
  653. /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
  654. /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
  655. /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
  656. /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
  657. /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
  658. /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
  659. /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
  660. /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
  661. /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
  662. /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
  663. /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
  664. /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
  665. /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
  666. /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
  667. /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
  668. /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
  669. /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
  670. /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
  671. /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
  672. /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
  673. /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
  674. /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
  675. /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
  676. /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
  677. /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
  678. /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
  679. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/loop.rb +0 -0
  680. /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
  681. /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
  682. /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
  683. /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
  684. /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
  685. /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
  686. /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
  687. /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
  688. /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
  689. /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
  690. /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
  691. /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
  692. /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
  693. /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
  694. /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
  695. /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
  696. /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
  697. /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
  698. /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
  699. /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
  700. /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
  701. /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
  702. /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
  703. /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
  704. /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
  705. /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
  706. /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
  707. /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
  708. /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
  709. /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
  710. /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
  711. /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
  712. /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
  713. /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
  714. /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
  715. /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
  716. /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
  717. /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
  718. /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
  719. /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
  720. /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
  721. /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
  722. /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
  723. /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
  724. /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
  725. /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
  726. /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
  727. /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
  728. /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
  729. /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
  730. /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
  731. /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
  732. /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
  733. /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
  734. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
  735. /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
  736. /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
  737. /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
  738. /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
  739. /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
  740. /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
  741. /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
  742. /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
  743. /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
  744. /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
  745. /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
  746. /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
  747. /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
  748. /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
  749. /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
  750. /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
  751. /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
  752. /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
  753. /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
  754. /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
  755. /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
  756. /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
  757. /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
  758. /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
  759. /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
  760. /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
  761. /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
  762. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/void.rb +0 -0
  763. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/message_annotator.rb +0 -0
  764. /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
  765. /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
  766. /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
  767. /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
  768. /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
  769. /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
  770. /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
  771. /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
  772. /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
  773. /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
  774. /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
  775. /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
  776. /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
  777. /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
  778. /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
  779. /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
  780. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  781. /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
  782. /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
  783. /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
  784. /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
  785. /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
  786. /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
  787. /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
  788. /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
  789. /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
  790. /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
  791. /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
  792. /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
  793. /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
  794. /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
  795. /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
  796. /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
  797. /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
  798. /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
  799. /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
  800. /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
  801. /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
  802. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  803. /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
  804. /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
  805. /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
  806. /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
  807. /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
  808. /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
  809. /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
  810. /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
  811. /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
  812. /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
  813. /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
  814. /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
  815. /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
  816. /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
  817. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  818. /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
  819. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  820. /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
  821. /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
  822. /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
  823. /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
  824. /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
  825. /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
  826. /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
  827. /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
  828. /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
  829. /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
  830. /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
  831. /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
  832. /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
  833. /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
  834. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  835. /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
  836. /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
  837. /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
  838. /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
  839. /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
  840. /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
  841. /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
  842. /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
  843. /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
  844. /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
  845. /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
  846. /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
  847. /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
  848. /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
  849. /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
  850. /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
  851. /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
  852. /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
  853. /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
  854. /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
  855. /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
  856. /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
  857. /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
  858. /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
  859. /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
  860. /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
  861. /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
  862. /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
  863. /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
  864. /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
  865. /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
  866. /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
  867. /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
  868. /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
  869. /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
  870. /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
  871. /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
  872. /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
  873. /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
  874. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/registry.rb +0 -0
  875. /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
  876. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/eval.rb +0 -0
  877. /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
  878. /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
  879. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/open.rb +0 -0
  880. /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
  881. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/severity.rb +0 -0
  882. /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
  883. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/alias.rb +0 -0
  884. /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
  885. /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
  886. /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
  887. /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
  888. /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
  889. /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
  890. /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
  891. /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
  892. /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
  893. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/attr.rb +0 -0
  894. /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
  895. /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
  896. /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
  897. /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
  898. /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
  899. /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
  900. /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
  901. /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
  902. /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
  903. /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
  904. /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
  905. /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
  906. /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
  907. /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
  908. /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
  909. /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
  910. /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
  911. /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
  912. /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
  913. /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
  914. /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
  915. /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
  916. /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
  917. /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
  918. /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
  919. /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
  920. /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
  921. /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
  922. /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
  923. /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
  924. /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
  925. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/copyright.rb +0 -0
  926. /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
  927. /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
  928. /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
  929. /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
  930. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir.rb +0 -0
  931. /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
  932. /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
  933. /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
  934. /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
  935. /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
  936. /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
  937. /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
  938. /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
  939. /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
  940. /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
  941. /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
  942. /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
  943. /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
  944. /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
  945. /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
  946. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/encoding.rb +0 -0
  947. /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
  948. /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
  949. /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
  950. /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
  951. /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
  952. /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
  953. /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
  954. /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
  955. /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
  956. /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
  957. /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
  958. /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
  959. /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
  960. /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
  961. /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
  962. /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
  963. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/for.rb +0 -0
  964. /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
  965. /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
  966. /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
  967. /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
  968. /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
  969. /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
  970. /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
  971. /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
  972. /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
  973. /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
  974. /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
  975. /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
  976. /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
  977. /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
  978. /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
  979. /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
  980. /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
  981. /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
  982. /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
  983. /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
  984. /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
  985. /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
  986. /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
  987. /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
  988. /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
  989. /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
  990. /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
  991. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/lambda.rb +0 -0
  992. /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
  993. /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
  994. /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
  995. /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
  996. /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
  997. /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
  998. /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
  999. /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
  1000. /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
  1001. /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
  1002. /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
  1003. /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
  1004. /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
  1005. /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
  1006. /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
  1007. /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
  1008. /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
  1009. /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
  1010. /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
  1011. /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
  1012. /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
  1013. /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
  1014. /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
  1015. /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
  1016. /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
  1017. /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
  1018. /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
  1019. /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
  1020. /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
  1021. /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
  1022. /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
  1023. /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
  1024. /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
  1025. /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
  1026. /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
  1027. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/next.rb +0 -0
  1028. /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
  1029. /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
  1030. /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
  1031. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/not.rb +0 -0
  1032. /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
  1033. /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
  1034. /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
  1035. /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
  1036. /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
  1037. /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
  1038. /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
  1039. /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
  1040. /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
  1041. /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
  1042. /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
  1043. /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
  1044. /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
  1045. /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
  1046. /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
  1047. /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
  1048. /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
  1049. /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
  1050. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/proc.rb +0 -0
  1051. /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
  1052. /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
  1053. /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
  1054. /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
  1055. /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
  1056. /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
  1057. /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
  1058. /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
  1059. /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
  1060. /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
  1061. /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
  1062. /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
  1063. /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
  1064. /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
  1065. /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
  1066. /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
  1067. /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
  1068. /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
  1069. /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
  1070. /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
  1071. /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
  1072. /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
  1073. /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
  1074. /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
  1075. /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
  1076. /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
  1077. /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
  1078. /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
  1079. /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
  1080. /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
  1081. /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
  1082. /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
  1083. /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
  1084. /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
  1085. /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
  1086. /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
  1087. /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
  1088. /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
  1089. /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
  1090. /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
  1091. /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
  1092. /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
  1093. /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
  1094. /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
  1095. /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
  1096. /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
  1097. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sample.rb +0 -0
  1098. /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
  1099. /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
  1100. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
  1101. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send.rb +0 -0
  1102. /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
  1103. /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
  1104. /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
  1105. /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
  1106. /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
  1107. /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
  1108. /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
  1109. /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
  1110. /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
  1111. /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
  1112. /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
  1113. /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
  1114. /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
  1115. /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
  1116. /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
  1117. /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
  1118. /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
  1119. /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
  1120. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/strip.rb +0 -0
  1121. /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
  1122. /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
  1123. /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
  1124. /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
  1125. /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
  1126. /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
  1127. /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
  1128. /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
  1129. /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
  1130. /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
  1131. /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
  1132. /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
  1133. /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
  1134. /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
  1135. /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
  1136. /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
  1137. /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
  1138. /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
  1139. /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
  1140. /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
  1141. /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
  1142. /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
  1143. /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
  1144. /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
  1145. /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
  1146. /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
  1147. /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
  1148. /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
  1149. /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
  1150. /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
  1151. /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
  1152. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/util.rb +0 -0
  1153. /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
  1154. /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
  1155. /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
  1156. /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
  1157. /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
  1158. /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
  1159. /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
  1160. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force.rb +0 -0
  1161. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
  1162. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/core_ext/string.rb +0 -0
  1163. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/directive_comment.rb +0 -0
  1164. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/error.rb +0 -0
  1165. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/comment.rb +0 -0
  1166. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/processed_source.rb +0 -0
  1167. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/range.rb +0 -0
  1168. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_node.rb +0 -0
  1169. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
  1170. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/feature_loader.rb +0 -0
  1171. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_finder.rb +0 -0
  1172. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_patterns.rb +0 -0
  1173. /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
  1174. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
  1175. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/colorizable.rb +0 -0
  1176. /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
  1177. /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
  1178. /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
  1179. /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
  1180. /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
  1181. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
  1182. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
  1183. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  1184. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  1185. /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
  1186. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  1187. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  1188. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  1189. /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
  1190. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/text_util.rb +0 -0
  1191. /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
  1192. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter.rb +0 -0
  1193. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lockfile.rb +0 -0
  1194. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/logger.rb +0 -0
  1195. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/server.rb +0 -0
  1196. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/severity.rb +0 -0
  1197. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp.rb +0 -0
  1198. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/magic_comment.rb +0 -0
  1199. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/name_similarity.rb +0 -0
  1200. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/options.rb +0 -0
  1201. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/path_util.rb +0 -0
  1202. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/pending_cops_reporter.rb +0 -0
  1203. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/platform.rb +0 -0
  1204. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  1205. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/load_error.rb +0 -0
  1206. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/loader.rb +0 -0
  1207. /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
  1208. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin.rb +0 -0
  1209. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rake_task.rb +0 -0
  1210. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/result_cache.rb +0 -0
  1211. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
  1212. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/expect_offense.rb +0 -0
  1213. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  1214. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/runner.rb +0 -0
  1215. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/cli.rb +0 -0
  1216. /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
  1217. /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
  1218. /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
  1219. /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
  1220. /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
  1221. /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
  1222. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command.rb +0 -0
  1223. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/core.rb +0 -0
  1224. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/errors.rb +0 -0
  1225. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/helper.rb +0 -0
  1226. /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
  1227. /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
  1228. /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
  1229. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command.rb +0 -0
  1230. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/socket_reader.rb +0 -0
  1231. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server.rb +0 -0
  1232. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/string_interpreter.rb +0 -0
  1233. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/target_finder.rb +0 -0
  1234. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/util.rb +0 -0
  1235. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/warning.rb +0 -0
  1236. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  1237. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  1238. /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
  1239. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Gemfile +0 -0
  1240. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/LICENSE.txt +0 -0
  1241. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/README.md +0 -0
  1242. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Rakefile +0 -0
  1243. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/console +0 -0
  1244. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/rake +0 -0
  1245. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/run +0 -0
  1246. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/default.yml +0 -0
  1247. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.8.yml +0 -0
  1248. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.9.yml +0 -0
  1249. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.0.yml +0 -0
  1250. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.1.yml +0 -0
  1251. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.2.yml +0 -0
  1252. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.3.yml +0 -0
  1253. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.4.yml +0 -0
  1254. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.5.yml +0 -0
  1255. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.6.yml +0 -0
  1256. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.7.yml +0 -0
  1257. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.0.yml +0 -0
  1258. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.1.yml +0 -0
  1259. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.2.yml +0 -0
  1260. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/ARCHITECTURE.md +0 -0
  1261. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RELEASE.md +0 -0
  1262. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RUBY_VERSIONS.md +0 -0
  1263. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/UPGRADING.md +0 -0
  1264. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/exe/standardrb +0 -0
  1265. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/addon.rb +0 -0
  1266. /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
  1267. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base/plugin.rb +0 -0
  1268. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base.rb +0 -0
  1269. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/builds_config.rb +0 -0
  1270. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/cli.rb +0 -0
  1271. /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
  1272. /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
  1273. /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
  1274. /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
  1275. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/file_finder.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/formatter.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_runner.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_yaml_config.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/diagnostic.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/kills_server.rb +0 -0
  1282. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/logger.rb +0 -0
  1283. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/routes.rb +0 -0
  1284. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/server.rb +0 -0
  1285. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/standardizer.rb +0 -0
  1286. /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
  1287. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/merges_settings.rb +0 -0
  1288. /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
  1289. /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
  1290. /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
  1291. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/initializes_plugins.rb +0 -0
  1292. /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
  1293. /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
  1294. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin.rb +0 -0
  1295. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/railtie.rb +0 -0
  1296. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rake.rb +0 -0
  1297. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/resolves_yaml_option.rb +0 -0
  1298. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rubocop/ext.rb +0 -0
  1299. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/genignore.rb +0 -0
  1300. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/help.rb +0 -0
  1301. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/lsp.rb +0 -0
  1302. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/rubocop.rb +0 -0
  1303. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/verbose_version.rb +0 -0
  1304. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/version.rb +0 -0
  1305. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard.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
+ }