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