localizable_model 0.6.7 → 0.6.8

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 (2563) hide show
  1. checksums.yaml +4 -4
  2. data/lib/localizable_model/active_record_extension.rb +3 -2
  3. data/lib/localizable_model/localizer.rb +7 -5
  4. data/lib/localizable_model/version.rb +1 -1
  5. data/vendor/bundle/ruby/4.0.0/cache/action_text-trix-2.1.19.gem +0 -0
  6. data/vendor/bundle/ruby/4.0.0/cache/concurrent-ruby-1.3.7.gem +0 -0
  7. data/vendor/bundle/ruby/4.0.0/cache/factory_bot-6.6.0.gem +0 -0
  8. data/vendor/bundle/ruby/4.0.0/cache/i18n-1.15.2.gem +0 -0
  9. data/vendor/bundle/ruby/4.0.0/cache/json-2.19.9.gem +0 -0
  10. data/vendor/bundle/ruby/4.0.0/cache/marcel-1.2.1.gem +0 -0
  11. data/vendor/bundle/ruby/4.0.0/cache/minitest-6.0.6.gem +0 -0
  12. data/vendor/bundle/ruby/4.0.0/cache/net-imap-0.6.4.1.gem +0 -0
  13. data/vendor/bundle/ruby/4.0.0/cache/nokogiri-1.19.4-x86_64-linux-gnu.gem +0 -0
  14. data/vendor/bundle/ruby/4.0.0/cache/pp-0.6.4.gem +0 -0
  15. data/vendor/bundle/ruby/4.0.0/cache/psych-5.4.0.gem +0 -0
  16. data/vendor/bundle/ruby/4.0.0/cache/rubocop-1.88.0.gem +0 -0
  17. data/vendor/bundle/ruby/4.0.0/cache/rubocop-rails-2.35.5.gem +0 -0
  18. data/vendor/bundle/ruby/4.0.0/cache/rubocop-rspec-3.10.2.gem +0 -0
  19. data/vendor/bundle/ruby/4.0.0/cache/shoulda-matchers-8.0.1.gem +0 -0
  20. data/vendor/bundle/ruby/4.0.0/cache/websocket-driver-0.8.1.gem +0 -0
  21. data/vendor/bundle/ruby/4.0.0/cache/zeitwerk-2.8.2.gem +0 -0
  22. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/gem_make.out +26 -0
  23. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/json/ext/generator.so +0 -0
  24. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/json/ext/parser.so +0 -0
  25. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.4.0/gem_make.out +29 -0
  26. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.4.0/psych.so +0 -0
  27. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.1/gem_make.out +26 -0
  28. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.1/websocket_mask.so +0 -0
  29. data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.19/app/assets/javascripts/trix.js +14001 -0
  30. data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.19/lib/action_text/trix/version.rb +3 -0
  31. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/CHANGELOG.md +615 -0
  32. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/Rakefile +343 -0
  33. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +140 -0
  34. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +142 -0
  35. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +268 -0
  36. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +386 -0
  37. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +66 -0
  38. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +36 -0
  39. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  40. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/version.rb +3 -0
  41. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/GETTING_STARTED.md +2203 -0
  42. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/NEWS.md +607 -0
  43. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/README.md +99 -0
  44. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/definition_proxy.rb +269 -0
  45. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/factory_runner.rb +35 -0
  46. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/linter.rb +121 -0
  47. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/version.rb +3 -0
  48. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/README.md +139 -0
  49. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/fallbacks.rb +127 -0
  50. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/simple.rb +113 -0
  51. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/transliterator.rb +109 -0
  52. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/config.rb +199 -0
  53. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/middleware.rb +21 -0
  54. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/version.rb +5 -0
  55. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n.rb +507 -0
  56. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/CHANGES.md +788 -0
  57. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/README.md +310 -0
  58. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/fbuffer/fbuffer.h +259 -0
  59. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/generator/generator.c +1993 -0
  60. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/parser/parser.c +1757 -0
  61. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/ext/generator.so +0 -0
  62. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/ext/parser.so +0 -0
  63. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/truffle_ruby/generator.rb +755 -0
  64. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/version.rb +5 -0
  65. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/magic.rb +156 -0
  66. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/mime_type/definitions.rb +95 -0
  67. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/tables.rb +2958 -0
  68. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/version.rb +5 -0
  69. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/History.rdoc +1860 -0
  70. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/lib/minitest/assertions.rb +821 -0
  71. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/lib/minitest.rb +1232 -0
  72. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/command_data.rb +450 -0
  73. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/config.rb +674 -0
  74. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/data_encoding.rb +314 -0
  75. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/response_parser.rb +2297 -0
  76. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/response_reader.rb +87 -0
  77. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap.rb +4004 -0
  78. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/nokogiri.c +297 -0
  79. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/nokogiri.h +247 -0
  80. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_attr.c +108 -0
  81. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_document.c +796 -0
  82. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_node.c +2523 -0
  83. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_node_set.c +518 -0
  84. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_xpath_context.c +496 -0
  85. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +457 -0
  86. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
  87. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
  88. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
  89. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/4.0/nokogiri.so +0 -0
  90. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +155 -0
  91. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +57 -0
  92. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +6 -0
  93. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/version/info.rb +234 -0
  94. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/document.rb +515 -0
  95. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/node.rb +1701 -0
  96. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +217 -0
  97. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +258 -0
  98. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +54 -0
  99. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xslt.rb +138 -0
  100. data/vendor/bundle/ruby/4.0.0/gems/pp-0.6.4/lib/pp.rb +738 -0
  101. data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/README.md +90 -0
  102. data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/ext/psych/psych_parser.c +575 -0
  103. data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/lib/psych/versions.rb +10 -0
  104. data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/lib/psych.so +0 -0
  105. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/config/default.yml +6240 -0
  106. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/config/obsoletion.yml +272 -0
  107. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/auto_generate_config.rb +199 -0
  108. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/list_enabled_cops_for.rb +40 -0
  109. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/show_docs_url.rb +44 -0
  110. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/suggest_extensions.rb +132 -0
  111. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli.rb +249 -0
  112. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/comment_config.rb +258 -0
  113. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_loader.rb +284 -0
  114. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_loader_resolver.rb +322 -0
  115. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_store.rb +77 -0
  116. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/autocorrect_logic.rb +164 -0
  117. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/base.rb +568 -0
  118. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  119. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +109 -0
  120. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors/parentheses_corrector.rb +120 -0
  121. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors.rb +28 -0
  122. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/exclude_limit.rb +52 -0
  123. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/duplicated_assignment.rb +111 -0
  124. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/require_mfa.rb +159 -0
  125. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  126. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +62 -0
  127. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +75 -0
  128. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/begin_end_alignment.rb +73 -0
  129. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/block_alignment.rb +296 -0
  130. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/class_structure.rb +388 -0
  131. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +233 -0
  132. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/end_alignment.rb +217 -0
  133. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/indentation_width.rb +505 -0
  134. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +132 -0
  135. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +453 -0
  136. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/redundant_line_break.rb +136 -0
  137. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/space_before_brackets.rb +40 -0
  138. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_assignment.rb +44 -0
  139. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_block_association.rb +105 -0
  140. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +102 -0
  141. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/circular_argument_reference.rb +104 -0
  142. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +52 -0
  143. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_reassignment.rb +230 -0
  144. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
  145. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/debugger.rb +143 -0
  146. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/deprecated_constants.rb +82 -0
  147. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/empty_block.rb +94 -0
  148. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ensure_return.rb +69 -0
  149. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/erb_new_arguments.rb +164 -0
  150. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/float_comparison.rb +137 -0
  151. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +85 -0
  152. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/interpolation_check.rb +84 -0
  153. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
  154. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +95 -0
  155. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/literal_in_interpolation.rb +207 -0
  156. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +120 -0
  157. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  158. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +73 -0
  159. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/non_deterministic_require_order.rb +185 -0
  160. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +86 -0
  161. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/number_conversion.rb +209 -0
  162. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +46 -0
  163. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +97 -0
  164. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ordered_magic_comments.rb +81 -0
  165. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +77 -0
  166. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/raise_exception.rb +110 -0
  167. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/rand_one.rb +42 -0
  168. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +347 -0
  169. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +129 -0
  170. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +73 -0
  171. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +283 -0
  172. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_splat_expansion.rb +220 -0
  173. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_type_conversion.rb +268 -0
  174. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_with_index.rb +87 -0
  175. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_with_object.rb +87 -0
  176. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/refinement_import_methods.rb +59 -0
  177. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/regexp_as_condition.rb +44 -0
  178. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_parentheses.rb +71 -0
  179. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_range_parentheses.rb +58 -0
  180. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_relative_self_path.rb +52 -0
  181. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/rescue_type.rb +82 -0
  182. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +134 -0
  183. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  184. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/script_permission.rb +77 -0
  185. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/self_assignment.rb +171 -0
  186. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
  187. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shadowed_exception.rb +165 -0
  188. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +130 -0
  189. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shared_mutable_default.rb +78 -0
  190. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +123 -0
  191. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/symbol_conversion.rb +201 -0
  192. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/to_enum_arguments.rb +126 -0
  193. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/top_level_return_with_argument.rb +48 -0
  194. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +59 -0
  195. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +90 -0
  196. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/unreachable_code.rb +146 -0
  197. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_assignment.rb +242 -0
  198. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +131 -0
  199. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_setter_call.rb +161 -0
  200. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_times.rb +135 -0
  201. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +147 -0
  202. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/block_length.rb +88 -0
  203. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/collection_literal_length.rb +83 -0
  204. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/method_length.rb +80 -0
  205. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  206. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin/configurable_max.rb +29 -0
  207. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin/project_index_help.rb +48 -0
  208. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin.rb +86 -0
  209. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
  210. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +294 -0
  211. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/predicate_method.rb +330 -0
  212. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  213. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +172 -0
  214. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/offense.rb +254 -0
  215. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/registry.rb +342 -0
  216. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/security/io_methods.rb +49 -0
  217. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/alias.rb +170 -0
  218. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/and_or.rb +159 -0
  219. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_first_last.rb +91 -0
  220. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_intersect.rb +199 -0
  221. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_intersect_with_single_element.rb +50 -0
  222. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/block_delimiters.rb +510 -0
  223. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/case_equality.rb +122 -0
  224. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/character_literal.rb +57 -0
  225. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_and_module_children.rb +244 -0
  226. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_equality_comparison.rb +142 -0
  227. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_methods_definitions.rb +164 -0
  228. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/colon_method_call.rb +55 -0
  229. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/combinable_loops.rb +136 -0
  230. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/comparable_clamp.rb +136 -0
  231. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/concat_array_literals.rb +101 -0
  232. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/conditional_assignment.rb +671 -0
  233. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/constant_visibility.rb +105 -0
  234. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/copyright.rb +120 -0
  235. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/date_time.rb +94 -0
  236. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/dig_chain.rb +94 -0
  237. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  238. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +174 -0
  239. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/fetch_env_var.rb +159 -0
  240. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/file_write.rb +138 -0
  241. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/format_string.rb +155 -0
  242. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_conversion.rb +151 -0
  243. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_lookup_method.rb +106 -0
  244. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_slice.rb +96 -0
  245. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/if_inside_else.rb +161 -0
  246. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/if_unless_modifier.rb +362 -0
  247. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
  248. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/min_max_comparison.rb +91 -0
  249. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/module_member_existence_check.rb +110 -0
  250. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/mutable_constant.rb +340 -0
  251. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/parallel_assignment.rb +313 -0
  252. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/reduce_to_hash.rb +200 -0
  253. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
  254. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
  255. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_format.rb +284 -0
  256. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
  257. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_self.rb +215 -0
  258. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/regexp_literal.rb +260 -0
  259. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/rescue_modifier.rb +112 -0
  260. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/self_assignment.rb +95 -0
  261. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/semicolon.rb +205 -0
  262. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/sole_nested_conditional.rb +246 -0
  263. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/struct_inheritance.rb +92 -0
  264. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/symbol_proc.rb +283 -0
  265. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/top_level_method_definition.rb +86 -0
  266. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
  267. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/while_until_do.rb +54 -0
  268. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/while_until_modifier.rb +67 -0
  269. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/word_array.rb +156 -0
  270. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/yoda_condition.rb +185 -0
  271. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/zero_length_predicate.rb +157 -0
  272. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/team.rb +341 -0
  273. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/file_patterns.rb +51 -0
  274. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/formatter/disabled_config_formatter.rb +307 -0
  275. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/lsp/runtime.rb +78 -0
  276. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/options.rb +693 -0
  277. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/project_index_loader.rb +66 -0
  278. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/rspec/shared_contexts.rb +305 -0
  279. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/runner.rb +600 -0
  280. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/server/core.rb +124 -0
  281. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/target_finder.rb +228 -0
  282. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/version.rb +178 -0
  283. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop.rb +756 -0
  284. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/config/default.yml +1349 -0
  285. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/mixin/database_type_resolvable.rb +66 -0
  286. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/mixin/target_rails_version.rb +31 -0
  287. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/action_filter.rb +110 -0
  288. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/env.rb +70 -0
  289. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/i18n_locale_texts.rb +136 -0
  290. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/not_null_column.rb +167 -0
  291. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/presence.rb +208 -0
  292. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/rake_environment.rb +128 -0
  293. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/redundant_active_record_all_method.rb +190 -0
  294. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/response_parsed_body.rb +108 -0
  295. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/save_bang.rb +359 -0
  296. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/select_map.rb +101 -0
  297. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/strong_parameters_expect.rb +214 -0
  298. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/unknown_env.rb +125 -0
  299. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/rails/version.rb +14 -0
  300. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/CHANGELOG.md +1136 -0
  301. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/config/default.yml +1067 -0
  302. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/around_block.rb +117 -0
  303. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/contain_exactly.rb +43 -0
  304. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/context_method.rb +57 -0
  305. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/context_wording.rb +128 -0
  306. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/described_class.rb +246 -0
  307. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/discarded_matcher.rb +113 -0
  308. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_example_group.rb +190 -0
  309. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_hook.rb +49 -0
  310. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_example.rb +82 -0
  311. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_example_group.rb +42 -0
  312. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_final_let.rb +45 -0
  313. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_hook.rb +83 -0
  314. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_subject.rb +36 -0
  315. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_length.rb +76 -0
  316. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_without_description.rb +98 -0
  317. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_wording.rb +168 -0
  318. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_actual.rb +125 -0
  319. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_change.rb +135 -0
  320. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_in_hook.rb +51 -0
  321. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_in_let.rb +42 -0
  322. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/hook_argument.rb +135 -0
  323. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/hooks_before_examples.rb +82 -0
  324. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/indexed_let.rb +115 -0
  325. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/instance_spy.rb +74 -0
  326. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/iterated_expectation.rb +109 -0
  327. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/leading_subject.rb +86 -0
  328. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/let_before_examples.rb +101 -0
  329. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/let_setup.rb +104 -0
  330. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/match_with_simple_regex.rb +92 -0
  331. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/missing_example_group_argument.rb +35 -0
  332. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/inside_example.rb +16 -0
  333. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/metadata.rb +61 -0
  334. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/repeated_items.rb +36 -0
  335. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_expectations.rb +149 -0
  336. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_memoized_helpers.rb +147 -0
  337. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_subjects.rb +97 -0
  338. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/named_subject.rb +156 -0
  339. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/no_expectation_example.rb +103 -0
  340. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/overwriting_setup.rb +74 -0
  341. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/predicate_matcher.rb +349 -0
  342. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/redundant_around.rb +66 -0
  343. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_description.rb +98 -0
  344. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example.rb +74 -0
  345. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example_group_body.rb +96 -0
  346. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example_group_description.rb +92 -0
  347. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_include_example.rb +102 -0
  348. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/return_from_stub.rb +170 -0
  349. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/scattered_let.rb +65 -0
  350. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/scattered_setup.rb +108 -0
  351. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/shared_context.rb +147 -0
  352. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/skip_block_inside_example.rb +43 -0
  353. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/spec_file_path_format.rb +191 -0
  354. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/subject_declaration.rb +62 -0
  355. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/undescriptive_literals_description.rb +69 -0
  356. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/void_expect.rb +63 -0
  357. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/yield.rb +82 -0
  358. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec_cops.rb +117 -0
  359. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/rspec/description_extractor.rb +77 -0
  360. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/rspec/version.rb +10 -0
  361. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop-rspec.rb +53 -0
  362. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/README.md +567 -0
  363. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +145 -0
  364. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/allow_value_matcher.rb +695 -0
  365. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/helpers.rb +37 -0
  366. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +180 -0
  367. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +128 -0
  368. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb +567 -0
  369. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +185 -0
  370. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +272 -0
  371. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +664 -0
  372. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +575 -0
  373. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +711 -0
  374. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +428 -0
  375. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validation_matcher.rb +195 -0
  376. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validator.rb +127 -0
  377. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matcher.rb +2134 -0
  378. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +71 -0
  379. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +76 -0
  380. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +784 -0
  381. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/have_attached_matcher.rb +343 -0
  382. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +95 -0
  383. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/uniqueness/namespace.rb +39 -0
  384. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +55 -0
  385. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +1197 -0
  386. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/matcher_collection.rb +99 -0
  387. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/rails_shim.rb +190 -0
  388. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/version.rb +6 -0
  389. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers.rb +25 -0
  390. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/shoulda-matchers.gemspec +43 -0
  391. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/CHANGELOG.md +177 -0
  392. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/LICENSE.md +12 -0
  393. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/driver/draft75.rb +103 -0
  394. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/driver/hybi.rb +430 -0
  395. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/http/headers.rb +115 -0
  396. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket_mask.so +0 -0
  397. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/README.md +1531 -0
  398. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/core_ext/kernel.rb +64 -0
  399. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/cref/map.rb +159 -0
  400. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/cref.rb +76 -0
  401. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/error.rb +34 -0
  402. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/gem_inflector.rb +17 -0
  403. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/gem_loader.rb +68 -0
  404. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/inflector.rb +46 -0
  405. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/callbacks.rb +96 -0
  406. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/config.rb +420 -0
  407. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/constant_path_validator.rb +17 -0
  408. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/eager_load.rb +226 -0
  409. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/file_system.rb +212 -0
  410. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/helpers.rb +43 -0
  411. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader.rb +683 -0
  412. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/registry/loaders.rb +33 -0
  413. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/registry.rb +89 -0
  414. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/version.rb +6 -0
  415. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk.rb +29 -0
  416. data/vendor/bundle/ruby/4.0.0/specifications/action_text-trix-2.1.19.gemspec +23 -0
  417. data/vendor/bundle/ruby/4.0.0/specifications/concurrent-ruby-1.3.7.gemspec +24 -0
  418. data/vendor/bundle/ruby/4.0.0/specifications/factory_bot-6.6.0.gemspec +37 -0
  419. data/vendor/bundle/ruby/4.0.0/specifications/i18n-1.15.2.gemspec +26 -0
  420. data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.9.gemspec +0 -0
  421. data/vendor/bundle/ruby/4.0.0/specifications/marcel-1.2.1.gemspec +29 -0
  422. data/vendor/bundle/ruby/4.0.0/specifications/minitest-6.0.6.gemspec +35 -0
  423. data/vendor/bundle/ruby/4.0.0/specifications/net-imap-0.6.4.1.gemspec +28 -0
  424. data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.4-x86_64-linux-gnu.gemspec +31 -0
  425. data/vendor/bundle/ruby/4.0.0/specifications/pp-0.6.4.gemspec +27 -0
  426. data/vendor/bundle/ruby/4.0.0/specifications/psych-5.4.0.gemspec +32 -0
  427. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.88.0.gemspec +39 -0
  428. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rails-2.35.5.gemspec +32 -0
  429. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rspec-3.10.2.gemspec +30 -0
  430. data/vendor/bundle/ruby/4.0.0/specifications/shoulda-matchers-8.0.1.gemspec +27 -0
  431. data/vendor/bundle/ruby/4.0.0/specifications/websocket-driver-0.8.1.gemspec +34 -0
  432. data/vendor/bundle/ruby/4.0.0/specifications/zeitwerk-2.8.2.gemspec +22 -0
  433. metadata +2142 -2131
  434. data/vendor/bundle/ruby/4.0.0/cache/action_text-trix-2.1.18.gem +0 -0
  435. data/vendor/bundle/ruby/4.0.0/cache/concurrent-ruby-1.3.6.gem +0 -0
  436. data/vendor/bundle/ruby/4.0.0/cache/factory_bot-6.5.6.gem +0 -0
  437. data/vendor/bundle/ruby/4.0.0/cache/i18n-1.14.8.gem +0 -0
  438. data/vendor/bundle/ruby/4.0.0/cache/json-2.19.4.gem +0 -0
  439. data/vendor/bundle/ruby/4.0.0/cache/marcel-1.1.0.gem +0 -0
  440. data/vendor/bundle/ruby/4.0.0/cache/minitest-6.0.5.gem +0 -0
  441. data/vendor/bundle/ruby/4.0.0/cache/net-imap-0.6.4.gem +0 -0
  442. data/vendor/bundle/ruby/4.0.0/cache/nokogiri-1.19.2-x86_64-linux-gnu.gem +0 -0
  443. data/vendor/bundle/ruby/4.0.0/cache/pp-0.6.3.gem +0 -0
  444. data/vendor/bundle/ruby/4.0.0/cache/psych-5.3.1.gem +0 -0
  445. data/vendor/bundle/ruby/4.0.0/cache/rubocop-1.86.1.gem +0 -0
  446. data/vendor/bundle/ruby/4.0.0/cache/rubocop-rails-2.34.3.gem +0 -0
  447. data/vendor/bundle/ruby/4.0.0/cache/rubocop-rspec-3.9.0.gem +0 -0
  448. data/vendor/bundle/ruby/4.0.0/cache/shoulda-matchers-7.0.1.gem +0 -0
  449. data/vendor/bundle/ruby/4.0.0/cache/websocket-driver-0.8.0.gem +0 -0
  450. data/vendor/bundle/ruby/4.0.0/cache/zeitwerk-2.7.5.gem +0 -0
  451. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/gem_make.out +0 -26
  452. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/json/ext/generator.so +0 -0
  453. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/json/ext/parser.so +0 -0
  454. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/gem_make.out +0 -29
  455. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/psych.so +0 -0
  456. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.0/gem_make.out +0 -26
  457. data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
  458. data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.18/app/assets/javascripts/trix.js +0 -13886
  459. data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.18/lib/action_text/trix/version.rb +0 -3
  460. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/CHANGELOG.md +0 -609
  461. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/Rakefile +0 -344
  462. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +0 -175
  463. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +0 -135
  464. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +0 -255
  465. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +0 -379
  466. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +0 -67
  467. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +0 -28
  468. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  469. data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/version.rb +0 -3
  470. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/GETTING_STARTED.md +0 -2183
  471. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/NEWS.md +0 -593
  472. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/README.md +0 -101
  473. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/definition_proxy.rb +0 -269
  474. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/factory_runner.rb +0 -33
  475. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/linter.rb +0 -121
  476. data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/version.rb +0 -3
  477. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/README.md +0 -127
  478. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/fallbacks.rb +0 -119
  479. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/simple.rb +0 -113
  480. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/transliterator.rb +0 -108
  481. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/config.rb +0 -165
  482. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/middleware.rb +0 -17
  483. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/version.rb +0 -5
  484. data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n.rb +0 -478
  485. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/CHANGES.md +0 -762
  486. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/README.md +0 -299
  487. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/fbuffer/fbuffer.h +0 -251
  488. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/generator/generator.c +0 -1978
  489. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/parser/parser.c +0 -1709
  490. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/ext/generator.so +0 -0
  491. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/ext/parser.so +0 -0
  492. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/truffle_ruby/generator.rb +0 -752
  493. data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/version.rb +0 -5
  494. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/magic.rb +0 -148
  495. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/mime_type/definitions.rb +0 -72
  496. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/tables.rb +0 -2962
  497. data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/version.rb +0 -5
  498. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/History.rdoc +0 -1846
  499. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/lib/minitest/assertions.rb +0 -826
  500. data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/lib/minitest.rb +0 -1232
  501. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/command_data.rb +0 -410
  502. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/config.rb +0 -674
  503. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/data_encoding.rb +0 -313
  504. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/response_parser.rb +0 -2297
  505. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/response_reader.rb +0 -82
  506. data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap.rb +0 -3976
  507. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/nokogiri.c +0 -294
  508. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/nokogiri.h +0 -238
  509. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_attr.c +0 -103
  510. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_document.c +0 -788
  511. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_node.c +0 -2459
  512. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_node_set.c +0 -518
  513. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_xpath_context.c +0 -486
  514. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +0 -421
  515. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
  516. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
  517. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
  518. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/4.0/nokogiri.so +0 -0
  519. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +0 -155
  520. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +0 -57
  521. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +0 -6
  522. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/info.rb +0 -224
  523. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/document.rb +0 -514
  524. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/node.rb +0 -1650
  525. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +0 -213
  526. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +0 -258
  527. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +0 -49
  528. data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xslt.rb +0 -129
  529. data/vendor/bundle/ruby/4.0.0/gems/pp-0.6.3/lib/pp.rb +0 -738
  530. data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/README.md +0 -90
  531. data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/ext/psych/psych_parser.c +0 -564
  532. data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/lib/psych/versions.rb +0 -10
  533. data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/lib/psych.so +0 -0
  534. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/config/default.yml +0 -6222
  535. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/config/obsoletion.yml +0 -252
  536. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/auto_generate_config.rb +0 -167
  537. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/show_docs_url.rb +0 -48
  538. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/suggest_extensions.rb +0 -132
  539. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli.rb +0 -250
  540. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/comment_config.rb +0 -261
  541. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_loader.rb +0 -269
  542. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_loader_resolver.rb +0 -314
  543. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_store.rb +0 -77
  544. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/autocorrect_logic.rb +0 -163
  545. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/base.rb +0 -547
  546. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/bundler/gem_comment.rb +0 -171
  547. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -113
  548. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -89
  549. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/exclude_limit.rb +0 -26
  550. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -111
  551. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/require_mfa.rb +0 -159
  552. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -55
  553. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -61
  554. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -73
  555. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -73
  556. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/block_alignment.rb +0 -259
  557. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/class_structure.rb +0 -388
  558. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -224
  559. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/end_alignment.rb +0 -217
  560. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/indentation_width.rb +0 -493
  561. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -132
  562. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -428
  563. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/redundant_line_break.rb +0 -134
  564. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/space_before_brackets.rb +0 -40
  565. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -54
  566. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -105
  567. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -111
  568. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -106
  569. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -52
  570. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_reassignment.rb +0 -198
  571. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_resolution.rb +0 -93
  572. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/debugger.rb +0 -144
  573. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/deprecated_constants.rb +0 -88
  574. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/empty_block.rb +0 -94
  575. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ensure_return.rb +0 -51
  576. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -162
  577. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
  578. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -81
  579. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/interpolation_check.rb +0 -69
  580. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -51
  581. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -85
  582. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -210
  583. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -120
  584. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/multiple_comparison.rb +0 -48
  585. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -57
  586. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -185
  587. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -86
  588. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/number_conversion.rb +0 -200
  589. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -46
  590. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -94
  591. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -81
  592. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -87
  593. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/raise_exception.rb +0 -110
  594. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/rand_one.rb +0 -42
  595. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -344
  596. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -126
  597. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -62
  598. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -276
  599. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
  600. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -261
  601. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_with_index.rb +0 -87
  602. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_with_object.rb +0 -82
  603. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -52
  604. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -36
  605. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_parentheses.rb +0 -62
  606. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -57
  607. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -50
  608. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/rescue_type.rb +0 -82
  609. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -133
  610. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -46
  611. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/script_permission.rb +0 -73
  612. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/self_assignment.rb +0 -148
  613. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -83
  614. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shadowed_exception.rb +0 -165
  615. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -116
  616. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -76
  617. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -111
  618. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/symbol_conversion.rb +0 -184
  619. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -99
  620. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -48
  621. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -56
  622. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -88
  623. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/unreachable_code.rb +0 -146
  624. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_assignment.rb +0 -242
  625. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -127
  626. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_setter_call.rb +0 -158
  627. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_times.rb +0 -114
  628. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -136
  629. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/block_length.rb +0 -88
  630. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -83
  631. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/method_length.rb +0 -80
  632. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -61
  633. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/mixin/configurable_max.rb +0 -28
  634. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -53
  635. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -294
  636. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/predicate_method.rb +0 -330
  637. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
  638. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -172
  639. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/offense.rb +0 -246
  640. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/registry.rb +0 -325
  641. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/security/io_methods.rb +0 -49
  642. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/alias.rb +0 -161
  643. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/and_or.rb +0 -159
  644. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_first_last.rb +0 -80
  645. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_intersect.rb +0 -195
  646. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -47
  647. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/block_delimiters.rb +0 -496
  648. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/case_equality.rb +0 -110
  649. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/character_literal.rb +0 -57
  650. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_and_module_children.rb +0 -236
  651. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_equality_comparison.rb +0 -134
  652. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_methods_definitions.rb +0 -158
  653. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/colon_method_call.rb +0 -48
  654. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/combinable_loops.rb +0 -131
  655. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/comparable_clamp.rb +0 -125
  656. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/concat_array_literals.rb +0 -97
  657. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/conditional_assignment.rb +0 -666
  658. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/constant_visibility.rb +0 -102
  659. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/copyright.rb +0 -109
  660. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/date_time.rb +0 -94
  661. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/dig_chain.rb +0 -89
  662. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -87
  663. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -169
  664. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/fetch_env_var.rb +0 -159
  665. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/file_write.rb +0 -133
  666. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/format_string.rb +0 -154
  667. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_conversion.rb +0 -151
  668. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_lookup_method.rb +0 -101
  669. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_slice.rb +0 -80
  670. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/if_inside_else.rb +0 -148
  671. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -362
  672. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/magic_comment_format.rb +0 -307
  673. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/min_max_comparison.rb +0 -91
  674. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -107
  675. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/mutable_constant.rb +0 -246
  676. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/parallel_assignment.rb +0 -306
  677. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/reduce_to_hash.rb +0 -184
  678. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -77
  679. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_constant_base.rb +0 -85
  680. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_format.rb +0 -283
  681. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -46
  682. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_self.rb +0 -215
  683. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/regexp_literal.rb +0 -231
  684. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/rescue_modifier.rb +0 -112
  685. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/self_assignment.rb +0 -95
  686. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/semicolon.rb +0 -190
  687. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -244
  688. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/struct_inheritance.rb +0 -79
  689. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/symbol_proc.rb +0 -283
  690. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/top_level_method_definition.rb +0 -86
  691. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/unless_logical_operators.rb +0 -106
  692. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/while_until_do.rb +0 -47
  693. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/while_until_modifier.rb +0 -51
  694. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/word_array.rb +0 -155
  695. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/yoda_condition.rb +0 -185
  696. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/zero_length_predicate.rb +0 -154
  697. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/team.rb +0 -290
  698. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/file_patterns.rb +0 -43
  699. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/formatter/disabled_config_formatter.rb +0 -297
  700. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/lsp/runtime.rb +0 -79
  701. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/options.rb +0 -671
  702. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/rspec/shared_contexts.rb +0 -284
  703. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/runner.rb +0 -534
  704. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/server/core.rb +0 -118
  705. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/target_finder.rb +0 -221
  706. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/version.rb +0 -160
  707. data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop.rb +0 -844
  708. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/config/default.yml +0 -1349
  709. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/mixin/database_type_resolvable.rb +0 -66
  710. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/mixin/target_rails_version.rb +0 -41
  711. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/action_filter.rb +0 -110
  712. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/env.rb +0 -57
  713. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/i18n_locale_texts.rb +0 -114
  714. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/not_null_column.rb +0 -165
  715. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/presence.rb +0 -201
  716. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/rake_environment.rb +0 -128
  717. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/redundant_active_record_all_method.rb +0 -190
  718. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/response_parsed_body.rb +0 -99
  719. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/save_bang.rb +0 -350
  720. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/select_map.rb +0 -87
  721. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/strong_parameters_expect.rb +0 -104
  722. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/unknown_env.rb +0 -98
  723. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/rails/version.rb +0 -14
  724. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/CHANGELOG.md +0 -1110
  725. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/config/default.yml +0 -1050
  726. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/around_block.rb +0 -95
  727. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/contain_exactly.rb +0 -57
  728. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/context_method.rb +0 -57
  729. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/context_wording.rb +0 -128
  730. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/described_class.rb +0 -246
  731. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_example_group.rb +0 -189
  732. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_hook.rb +0 -49
  733. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_example.rb +0 -82
  734. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb +0 -42
  735. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_final_let.rb +0 -40
  736. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_hook.rb +0 -82
  737. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_subject.rb +0 -36
  738. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_length.rb +0 -76
  739. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_without_description.rb +0 -98
  740. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_wording.rb +0 -168
  741. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_actual.rb +0 -105
  742. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_change.rb +0 -105
  743. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_in_hook.rb +0 -50
  744. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_in_let.rb +0 -42
  745. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/hook_argument.rb +0 -134
  746. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/hooks_before_examples.rb +0 -81
  747. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/indexed_let.rb +0 -115
  748. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/instance_spy.rb +0 -74
  749. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/iterated_expectation.rb +0 -96
  750. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/leading_subject.rb +0 -86
  751. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/let_before_examples.rb +0 -101
  752. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/let_setup.rb +0 -104
  753. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/missing_example_group_argument.rb +0 -35
  754. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/mixin/metadata.rb +0 -60
  755. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_expectations.rb +0 -149
  756. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_memoized_helpers.rb +0 -147
  757. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_subjects.rb +0 -97
  758. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/named_subject.rb +0 -156
  759. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/no_expectation_example.rb +0 -102
  760. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/overwriting_setup.rb +0 -74
  761. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/predicate_matcher.rb +0 -349
  762. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/redundant_around.rb +0 -65
  763. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_description.rb +0 -98
  764. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example.rb +0 -72
  765. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example_group_body.rb +0 -100
  766. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example_group_description.rb +0 -96
  767. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_include_example.rb +0 -105
  768. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/return_from_stub.rb +0 -170
  769. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/scattered_let.rb +0 -59
  770. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/scattered_setup.rb +0 -110
  771. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/shared_context.rb +0 -107
  772. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/skip_block_inside_example.rb +0 -46
  773. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/spec_file_path_format.rb +0 -183
  774. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/subject_declaration.rb +0 -46
  775. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/undescriptive_literals_description.rb +0 -69
  776. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/void_expect.rb +0 -65
  777. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/yield.rb +0 -82
  778. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec_cops.rb +0 -115
  779. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/rspec/description_extractor.rb +0 -77
  780. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/rspec/version.rb +0 -10
  781. data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop-rspec.rb +0 -51
  782. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/README.md +0 -562
  783. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +0 -149
  784. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/allow_value_matcher.rb +0 -695
  785. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/helpers.rb +0 -35
  786. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +0 -157
  787. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +0 -105
  788. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb +0 -532
  789. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +0 -162
  790. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +0 -249
  791. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +0 -635
  792. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +0 -552
  793. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +0 -676
  794. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +0 -402
  795. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validation_matcher.rb +0 -199
  796. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validator.rb +0 -123
  797. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matcher.rb +0 -2017
  798. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +0 -73
  799. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +0 -78
  800. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +0 -778
  801. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/have_attached_matcher.rb +0 -318
  802. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +0 -71
  803. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/uniqueness/namespace.rb +0 -37
  804. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +0 -23
  805. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +0 -1207
  806. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/rails_shim.rb +0 -190
  807. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/version.rb +0 -6
  808. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers.rb +0 -24
  809. data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/shoulda-matchers.gemspec +0 -42
  810. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/CHANGELOG.md +0 -169
  811. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/LICENSE.md +0 -12
  812. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/driver/draft75.rb +0 -102
  813. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/driver/hybi.rb +0 -426
  814. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/http/headers.rb +0 -112
  815. data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
  816. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/README.md +0 -1477
  817. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/kernel.rb +0 -64
  818. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref/map.rb +0 -159
  819. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref.rb +0 -69
  820. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/error.rb +0 -23
  821. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_inflector.rb +0 -17
  822. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_loader.rb +0 -68
  823. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/inflector.rb +0 -46
  824. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/callbacks.rb +0 -96
  825. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/config.rb +0 -357
  826. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/eager_load.rb +0 -230
  827. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/file_system.rb +0 -165
  828. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/helpers.rb +0 -46
  829. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader.rb +0 -643
  830. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/loaders.rb +0 -33
  831. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry.rb +0 -89
  832. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/version.rb +0 -6
  833. data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk.rb +0 -29
  834. data/vendor/bundle/ruby/4.0.0/specifications/action_text-trix-2.1.18.gemspec +0 -23
  835. data/vendor/bundle/ruby/4.0.0/specifications/concurrent-ruby-1.3.6.gemspec +0 -24
  836. data/vendor/bundle/ruby/4.0.0/specifications/factory_bot-6.5.6.gemspec +0 -37
  837. data/vendor/bundle/ruby/4.0.0/specifications/i18n-1.14.8.gemspec +0 -26
  838. data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.4.gemspec +0 -0
  839. data/vendor/bundle/ruby/4.0.0/specifications/marcel-1.1.0.gemspec +0 -29
  840. data/vendor/bundle/ruby/4.0.0/specifications/minitest-6.0.5.gemspec +0 -35
  841. data/vendor/bundle/ruby/4.0.0/specifications/net-imap-0.6.4.gemspec +0 -28
  842. data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.2-x86_64-linux-gnu.gemspec +0 -31
  843. data/vendor/bundle/ruby/4.0.0/specifications/pp-0.6.3.gemspec +0 -27
  844. data/vendor/bundle/ruby/4.0.0/specifications/psych-5.3.1.gemspec +0 -32
  845. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.86.1.gemspec +0 -39
  846. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rails-2.34.3.gemspec +0 -32
  847. data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rspec-3.9.0.gemspec +0 -29
  848. data/vendor/bundle/ruby/4.0.0/specifications/shoulda-matchers-7.0.1.gemspec +0 -27
  849. data/vendor/bundle/ruby/4.0.0/specifications/websocket-driver-0.8.0.gemspec +0 -34
  850. data/vendor/bundle/ruby/4.0.0/specifications/zeitwerk-2.7.5.gemspec +0 -22
  851. /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.4 → json-2.19.9}/gem.build_complete +0 -0
  852. /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.4 → json-2.19.9}/mkmf.log +0 -0
  853. /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{psych-5.3.1 → psych-5.4.0}/gem.build_complete +0 -0
  854. /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{psych-5.3.1 → psych-5.4.0}/mkmf.log +0 -0
  855. /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/gem.build_complete +0 -0
  856. /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/LICENSE +0 -0
  857. /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/app/assets/stylesheets/trix.css +0 -0
  858. /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/lib/action_text/trix/engine.rb +0 -0
  859. /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/lib/action_text/trix.rb +0 -0
  860. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/Gemfile +0 -0
  861. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/LICENSE.txt +0 -0
  862. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/README.md +0 -0
  863. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/ConcurrentRubyService.java +0 -0
  864. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +0 -0
  865. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +0 -0
  866. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +0 -0
  867. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +0 -0
  868. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +0 -0
  869. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +0 -0
  870. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +0 -0
  871. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +0 -0
  872. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +0 -0
  873. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +0 -0
  874. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +0 -0
  875. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +0 -0
  876. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +0 -0
  877. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/agent.rb +0 -0
  878. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/array.rb +0 -0
  879. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/async.rb +0 -0
  880. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atom.rb +0 -0
  881. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +0 -0
  882. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +0 -0
  883. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +0 -0
  884. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +0 -0
  885. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +0 -0
  886. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/event.rb +0 -0
  887. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/fiber_local_var.rb +0 -0
  888. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +0 -0
  889. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/locals.rb +0 -0
  890. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +0 -0
  891. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +0 -0
  892. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +0 -0
  893. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +0 -0
  894. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +0 -0
  895. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +0 -0
  896. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +0 -0
  897. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic_reference/atomic_direct_update.rb +0 -0
  898. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomics.rb +0 -0
  899. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +0 -0
  900. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +0 -0
  901. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +0 -0
  902. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +0 -0
  903. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +0 -0
  904. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +0 -0
  905. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +0 -0
  906. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +0 -0
  907. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +0 -0
  908. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +0 -0
  909. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/ruby_timeout_queue.rb +0 -0
  910. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/timeout_queue.rb +0 -0
  911. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/deprecation.rb +0 -0
  912. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +0 -0
  913. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/logging.rb +0 -0
  914. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/obligation.rb +0 -0
  915. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/observable.rb +0 -0
  916. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/configuration.rb +0 -0
  917. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/constants.rb +0 -0
  918. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/dataflow.rb +0 -0
  919. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/delay.rb +0 -0
  920. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/errors.rb +0 -0
  921. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/exchanger.rb +0 -0
  922. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +0 -0
  923. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +0 -0
  924. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/executor_service.rb +0 -0
  925. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +0 -0
  926. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +0 -0
  927. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +0 -0
  928. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +0 -0
  929. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +0 -0
  930. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +0 -0
  931. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +0 -0
  932. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +0 -0
  933. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +0 -0
  934. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +0 -0
  935. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +0 -0
  936. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +0 -0
  937. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +0 -0
  938. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +0 -0
  939. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +0 -0
  940. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +0 -0
  941. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/timer_set.rb +0 -0
  942. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executors.rb +0 -0
  943. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/future.rb +0 -0
  944. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/hash.rb +0 -0
  945. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/immutable_struct.rb +0 -0
  946. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/ivar.rb +0 -0
  947. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/map.rb +0 -0
  948. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/maybe.rb +0 -0
  949. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/mutable_struct.rb +0 -0
  950. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/mvar.rb +0 -0
  951. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/options.rb +0 -0
  952. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/promise.rb +0 -0
  953. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/promises.rb +0 -0
  954. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/re_include.rb +0 -0
  955. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/scheduled_task.rb +0 -0
  956. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/set.rb +0 -0
  957. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/settable_struct.rb +0 -0
  958. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +0 -0
  959. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +0 -0
  960. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +0 -0
  961. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/condition.rb +0 -0
  962. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/full_memory_barrier.rb +0 -0
  963. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +0 -0
  964. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/lock.rb +0 -0
  965. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +0 -0
  966. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +0 -0
  967. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/object.rb +0 -0
  968. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/safe_initialization.rb +0 -0
  969. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +0 -0
  970. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization.rb +0 -0
  971. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +0 -0
  972. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +0 -0
  973. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +0 -0
  974. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +0 -0
  975. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +0 -0
  976. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +0 -0
  977. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +0 -0
  978. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util.rb +0 -0
  979. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/timer_task.rb +0 -0
  980. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/tuple.rb +0 -0
  981. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/tvar.rb +0 -0
  982. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/engine.rb +0 -0
  983. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +0 -0
  984. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +0 -0
  985. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/native_integer.rb +0 -0
  986. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +0 -0
  987. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent-ruby.rb +0 -0
  988. /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent.rb +0 -0
  989. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/CONTRIBUTING.md +0 -0
  990. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/LICENSE +0 -0
  991. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/NAME.md +0 -0
  992. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/aliases.rb +0 -0
  993. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/association.rb +0 -0
  994. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/dynamic.rb +0 -0
  995. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/sequence.rb +0 -0
  996. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute.rb +0 -0
  997. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute_assigner.rb +0 -0
  998. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute_list.rb +0 -0
  999. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/callback.rb +0 -0
  1000. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/callbacks_observer.rb +0 -0
  1001. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/configuration.rb +0 -0
  1002. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/association.rb +0 -0
  1003. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/dynamic.rb +0 -0
  1004. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/implicit.rb +0 -0
  1005. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration.rb +0 -0
  1006. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration_list.rb +0 -0
  1007. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/attribute_hash.rb +0 -0
  1008. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/disallows_duplicates_registry.rb +0 -0
  1009. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/invocation_tracker.rb +0 -0
  1010. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/new_constructor.rb +0 -0
  1011. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator.rb +0 -0
  1012. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/definition.rb +0 -0
  1013. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/definition_hierarchy.rb +0 -0
  1014. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/enum.rb +0 -0
  1015. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/errors.rb +0 -0
  1016. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluation.rb +0 -0
  1017. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluator.rb +0 -0
  1018. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluator_class_definer.rb +0 -0
  1019. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/factory.rb +0 -0
  1020. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/find_definitions.rb +0 -0
  1021. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/internal.rb +0 -0
  1022. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/null_factory.rb +0 -0
  1023. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/null_object.rb +0 -0
  1024. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/registry.rb +0 -0
  1025. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/reload.rb +0 -0
  1026. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/sequence.rb +0 -0
  1027. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/attributes_for.rb +0 -0
  1028. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/build.rb +0 -0
  1029. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/create.rb +0 -0
  1030. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/null.rb +0 -0
  1031. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/stub.rb +0 -0
  1032. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy.rb +0 -0
  1033. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy_syntax_method_registrar.rb +0 -0
  1034. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax/default.rb +0 -0
  1035. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax/methods.rb +0 -0
  1036. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax.rb +0 -0
  1037. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax_runner.rb +0 -0
  1038. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/trait.rb +0 -0
  1039. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/uri_manager.rb +0 -0
  1040. /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot.rb +0 -0
  1041. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/MIT-LICENSE +0 -0
  1042. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/base.rb +0 -0
  1043. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cache.rb +0 -0
  1044. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cache_file.rb +0 -0
  1045. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cascade.rb +0 -0
  1046. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/chain.rb +0 -0
  1047. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/flatten.rb +0 -0
  1048. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/gettext.rb +0 -0
  1049. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/interpolation_compiler.rb +0 -0
  1050. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/key_value.rb +0 -0
  1051. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/lazy_loadable.rb +0 -0
  1052. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/memoize.rb +0 -0
  1053. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/metadata.rb +0 -0
  1054. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/pluralization.rb +0 -0
  1055. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend.rb +0 -0
  1056. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/exceptions.rb +0 -0
  1057. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext/helpers.rb +0 -0
  1058. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext/po_parser.rb +0 -0
  1059. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext.rb +0 -0
  1060. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/interpolate/ruby.rb +0 -0
  1061. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/fallbacks.rb +0 -0
  1062. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/parents.rb +0 -0
  1063. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/rfc4646.rb +0 -0
  1064. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/simple.rb +0 -0
  1065. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag.rb +0 -0
  1066. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale.rb +0 -0
  1067. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/basics.rb +0 -0
  1068. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/defaults.rb +0 -0
  1069. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/interpolation.rb +0 -0
  1070. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/link.rb +0 -0
  1071. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/date.rb +0 -0
  1072. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/date_time.rb +0 -0
  1073. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/procs.rb +0 -0
  1074. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/time.rb +0 -0
  1075. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization.rb +0 -0
  1076. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/lookup.rb +0 -0
  1077. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/pluralization.rb +0 -0
  1078. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/procs.rb +0 -0
  1079. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests.rb +0 -0
  1080. /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/utils.rb +0 -0
  1081. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/BSDL +0 -0
  1082. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/COPYING +0 -0
  1083. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/LEGAL +0 -0
  1084. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/generator/Makefile +0 -0
  1085. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/generator/extconf.rb +0 -0
  1086. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/json.h +0 -0
  1087. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/parser/Makefile +0 -0
  1088. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/parser/extconf.rb +0 -0
  1089. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/simd/conf.rb +0 -0
  1090. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/simd/simd.h +0 -0
  1091. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/fpconv.c +0 -0
  1092. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
  1093. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/ryu.h +0 -0
  1094. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/json.gemspec +0 -0
  1095. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/bigdecimal.rb +0 -0
  1096. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/complex.rb +0 -0
  1097. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/core.rb +0 -0
  1098. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/date.rb +0 -0
  1099. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/date_time.rb +0 -0
  1100. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/exception.rb +0 -0
  1101. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/ostruct.rb +0 -0
  1102. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/range.rb +0 -0
  1103. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/rational.rb +0 -0
  1104. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/regexp.rb +0 -0
  1105. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/set.rb +0 -0
  1106. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/string.rb +0 -0
  1107. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/struct.rb +0 -0
  1108. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/symbol.rb +0 -0
  1109. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/time.rb +0 -0
  1110. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/common.rb +0 -0
  1111. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/ext/generator/state.rb +0 -0
  1112. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/ext.rb +0 -0
  1113. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/generic_object.rb +0 -0
  1114. /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json.rb +0 -0
  1115. /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/APACHE-LICENSE +0 -0
  1116. /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/MIT-LICENSE +0 -0
  1117. /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/README.md +0 -0
  1118. /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/lib/marcel/mime_type.rb +0 -0
  1119. /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/lib/marcel.rb +0 -0
  1120. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/Manifest.txt +0 -0
  1121. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/README.rdoc +0 -0
  1122. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/Rakefile +0 -0
  1123. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/bin/minitest +0 -0
  1124. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/design_rationale.rb +0 -0
  1125. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/hoe/minitest.rb +0 -0
  1126. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/autorun.rb +0 -0
  1127. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/benchmark.rb +0 -0
  1128. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/bisect.rb +0 -0
  1129. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/complete.rb +0 -0
  1130. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/compress.rb +0 -0
  1131. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/error_on_warning.rb +0 -0
  1132. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/expectations.rb +0 -0
  1133. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/find_minimal_combination.rb +0 -0
  1134. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/hell.rb +0 -0
  1135. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/manual_plugins.rb +0 -0
  1136. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/parallel.rb +0 -0
  1137. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/path_expander.rb +0 -0
  1138. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/pride.rb +0 -0
  1139. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/pride_plugin.rb +0 -0
  1140. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/server.rb +0 -0
  1141. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/server_plugin.rb +0 -0
  1142. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/spec.rb +0 -0
  1143. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/sprint.rb +0 -0
  1144. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/sprint_plugin.rb +0 -0
  1145. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/test.rb +0 -0
  1146. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/test_task.rb +0 -0
  1147. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/metametameta.rb +0 -0
  1148. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_bisect.rb +0 -0
  1149. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_find_minimal_combination.rb +0 -0
  1150. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_assertions.rb +0 -0
  1151. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_benchmark.rb +0 -0
  1152. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_reporter.rb +0 -0
  1153. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_spec.rb +0 -0
  1154. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_test.rb +0 -0
  1155. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_test_task.rb +0 -0
  1156. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_path_expander.rb +0 -0
  1157. /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_server.rb +0 -0
  1158. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/BSDL +0 -0
  1159. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/COPYING +0 -0
  1160. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/Gemfile +0 -0
  1161. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/LICENSE.txt +0 -0
  1162. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/README.md +0 -0
  1163. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/Rakefile +0 -0
  1164. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/docs/styles.css +0 -0
  1165. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/authenticators.rb +0 -0
  1166. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_accessors.rb +0 -0
  1167. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_inheritance.rb +0 -0
  1168. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_type_coercion.rb +0 -0
  1169. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_version_defaults.rb +0 -0
  1170. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/connection_state.rb +0 -0
  1171. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/deprecated_client_options.rb +0 -0
  1172. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/errors.rb +0 -0
  1173. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/esearch_result.rb +0 -0
  1174. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/fetch_data.rb +0 -0
  1175. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/flags.rb +0 -0
  1176. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/response_data.rb +0 -0
  1177. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/response_parser/parser_utils.rb +0 -0
  1178. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/anonymous_authenticator.rb +0 -0
  1179. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/authentication_exchange.rb +0 -0
  1180. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/authenticators.rb +0 -0
  1181. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/client_adapter.rb +0 -0
  1182. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/cram_md5_authenticator.rb +0 -0
  1183. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/digest_md5_authenticator.rb +0 -0
  1184. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/external_authenticator.rb +0 -0
  1185. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/gs2_header.rb +0 -0
  1186. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/login_authenticator.rb +0 -0
  1187. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/oauthbearer_authenticator.rb +0 -0
  1188. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/plain_authenticator.rb +0 -0
  1189. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/protocol_adapters.rb +0 -0
  1190. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/scram_algorithm.rb +0 -0
  1191. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/scram_authenticator.rb +0 -0
  1192. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/stringprep.rb +0 -0
  1193. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/xoauth2_authenticator.rb +0 -0
  1194. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl.rb +0 -0
  1195. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl_adapter.rb +0 -0
  1196. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/search_result.rb +0 -0
  1197. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sequence_set.rb +0 -0
  1198. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/nameprep.rb +0 -0
  1199. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/saslprep.rb +0 -0
  1200. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/saslprep_tables.rb +0 -0
  1201. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/tables.rb +0 -0
  1202. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/trace.rb +0 -0
  1203. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep.rb +0 -0
  1204. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/uidplus_data.rb +0 -0
  1205. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/vanished_data.rb +0 -0
  1206. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/net-imap.gemspec +0 -0
  1207. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/benchmarks.rake +0 -0
  1208. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/rdoc.rake +0 -0
  1209. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/rfcs.rake +0 -0
  1210. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/saslprep.rake +0 -0
  1211. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/string_prep_tables_generator.rb +0 -0
  1212. /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/sample/net-imap.rb +0 -0
  1213. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/Gemfile +0 -0
  1214. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/LICENSE-DEPENDENCIES.md +0 -0
  1215. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/LICENSE.md +0 -0
  1216. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/README.md +0 -0
  1217. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/bin/nokogiri +0 -0
  1218. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/dependencies.yml +0 -0
  1219. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/depend +0 -0
  1220. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/extconf.rb +0 -0
  1221. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/gumbo.c +0 -0
  1222. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_document.c +0 -0
  1223. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_element_description.c +0 -0
  1224. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_entity_lookup.c +0 -0
  1225. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser.c +0 -0
  1226. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser_context.c +0 -0
  1227. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_push_parser.c +0 -0
  1228. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exslt.h +0 -0
  1229. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltconfig.h +0 -0
  1230. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltexports.h +0 -0
  1231. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +0 -0
  1232. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +0 -0
  1233. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX.h +0 -0
  1234. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX2.h +0 -0
  1235. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/c14n.h +0 -0
  1236. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/catalog.h +0 -0
  1237. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/chvalid.h +0 -0
  1238. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/debugXML.h +0 -0
  1239. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/dict.h +0 -0
  1240. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/encoding.h +0 -0
  1241. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/entities.h +0 -0
  1242. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/globals.h +0 -0
  1243. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/hash.h +0 -0
  1244. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/list.h +0 -0
  1245. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanoftp.h +0 -0
  1246. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanohttp.h +0 -0
  1247. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parser.h +0 -0
  1248. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parserInternals.h +0 -0
  1249. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/pattern.h +0 -0
  1250. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/relaxng.h +0 -0
  1251. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +0 -0
  1252. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schematron.h +0 -0
  1253. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/threads.h +0 -0
  1254. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/tree.h +0 -0
  1255. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/uri.h +0 -0
  1256. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/valid.h +0 -0
  1257. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xinclude.h +0 -0
  1258. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xlink.h +0 -0
  1259. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlIO.h +0 -0
  1260. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +0 -0
  1261. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlerror.h +0 -0
  1262. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlexports.h +0 -0
  1263. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +0 -0
  1264. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +0 -0
  1265. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlreader.h +0 -0
  1266. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +0 -0
  1267. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlsave.h +0 -0
  1268. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +0 -0
  1269. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +0 -0
  1270. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlstring.h +0 -0
  1271. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +0 -0
  1272. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlversion.h +0 -0
  1273. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +0 -0
  1274. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpath.h +0 -0
  1275. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +0 -0
  1276. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpointer.h +0 -0
  1277. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/attributes.h +0 -0
  1278. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/documents.h +0 -0
  1279. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extensions.h +0 -0
  1280. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extra.h +0 -0
  1281. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/functions.h +0 -0
  1282. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/imports.h +0 -0
  1283. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/keys.h +0 -0
  1284. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/namespaces.h +0 -0
  1285. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/numbersInternals.h +0 -0
  1286. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/pattern.h +0 -0
  1287. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/preproc.h +0 -0
  1288. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/security.h +0 -0
  1289. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/templates.h +0 -0
  1290. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/transform.h +0 -0
  1291. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/variables.h +0 -0
  1292. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xslt.h +0 -0
  1293. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltInternals.h +0 -0
  1294. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltconfig.h +0 -0
  1295. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltexports.h +0 -0
  1296. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltlocale.h +0 -0
  1297. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltutils.h +0 -0
  1298. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/libxml2_polyfill.c +0 -0
  1299. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/test_global_handlers.c +0 -0
  1300. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_attribute_decl.c +0 -0
  1301. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_cdata.c +0 -0
  1302. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_comment.c +0 -0
  1303. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_document_fragment.c +0 -0
  1304. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_dtd.c +0 -0
  1305. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_element_content.c +0 -0
  1306. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_element_decl.c +0 -0
  1307. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_encoding_handler.c +0 -0
  1308. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_entity_decl.c +0 -0
  1309. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_entity_reference.c +0 -0
  1310. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_namespace.c +0 -0
  1311. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_processing_instruction.c +0 -0
  1312. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_reader.c +0 -0
  1313. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_relax_ng.c +0 -0
  1314. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser.c +0 -0
  1315. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser_context.c +0 -0
  1316. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_push_parser.c +0 -0
  1317. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_schema.c +0 -0
  1318. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_syntax_error.c +0 -0
  1319. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_text.c +0 -0
  1320. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/CHANGES.md +0 -0
  1321. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/Makefile +0 -0
  1322. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/THANKS +0 -0
  1323. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/class_resolver.rb +0 -0
  1324. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/node.rb +0 -0
  1325. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser.rb +0 -0
  1326. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser.y +0 -0
  1327. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser_extras.rb +0 -0
  1328. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/selector_cache.rb +0 -0
  1329. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/syntax_error.rb +0 -0
  1330. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/xpath_visitor.rb +0 -0
  1331. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css.rb +0 -0
  1332. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/decorators/slop.rb +0 -0
  1333. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/encoding_handler.rb +0 -0
  1334. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/extension.rb +0 -0
  1335. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/gumbo.rb +0 -0
  1336. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html.rb +0 -0
  1337. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/builder.rb +0 -0
  1338. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/document.rb +0 -0
  1339. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/document_fragment.rb +0 -0
  1340. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/element_description.rb +0 -0
  1341. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/element_description_defaults.rb +0 -0
  1342. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/encoding_reader.rb +0 -0
  1343. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/entity_lookup.rb +0 -0
  1344. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser.rb +0 -0
  1345. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser_context.rb +0 -0
  1346. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/push_parser.rb +0 -0
  1347. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4.rb +0 -0
  1348. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/builder.rb +0 -0
  1349. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/document.rb +0 -0
  1350. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/document_fragment.rb +0 -0
  1351. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/node.rb +0 -0
  1352. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5.rb +0 -0
  1353. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/jruby/dependencies.rb +0 -0
  1354. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/jruby/nokogiri_jars.rb +0 -0
  1355. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/syntax_error.rb +0 -0
  1356. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/version.rb +0 -0
  1357. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/attr.rb +0 -0
  1358. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/attribute_decl.rb +0 -0
  1359. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/builder.rb +0 -0
  1360. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/cdata.rb +0 -0
  1361. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/character_data.rb +0 -0
  1362. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/document_fragment.rb +0 -0
  1363. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/dtd.rb +0 -0
  1364. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/element_content.rb +0 -0
  1365. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/element_decl.rb +0 -0
  1366. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/entity_decl.rb +0 -0
  1367. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/entity_reference.rb +0 -0
  1368. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/namespace.rb +0 -0
  1369. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/node/save_options.rb +0 -0
  1370. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/node_set.rb +0 -0
  1371. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/notation.rb +0 -0
  1372. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp/character_data.rb +0 -0
  1373. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp/node.rb +0 -0
  1374. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp.rb +0 -0
  1375. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/processing_instruction.rb +0 -0
  1376. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/reader.rb +0 -0
  1377. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/relax_ng.rb +0 -0
  1378. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser.rb +0 -0
  1379. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser_context.rb +0 -0
  1380. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/push_parser.rb +0 -0
  1381. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax.rb +0 -0
  1382. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/schema.rb +0 -0
  1383. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/searchable.rb +0 -0
  1384. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/syntax_error.rb +0 -0
  1385. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/text.rb +0 -0
  1386. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath/syntax_error.rb +0 -0
  1387. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath.rb +0 -0
  1388. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath_context.rb +0 -0
  1389. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml.rb +0 -0
  1390. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri.rb +0 -0
  1391. /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/xsd/xmlparser/nokogiri.rb +0 -0
  1392. /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/BSDL +0 -0
  1393. /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/COPYING +0 -0
  1394. /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/pp.gemspec +0 -0
  1395. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/CONTRIBUTING.md +0 -0
  1396. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/LICENSE +0 -0
  1397. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/Makefile +0 -0
  1398. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/depend +0 -0
  1399. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/extconf.rb +0 -0
  1400. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych.c +0 -0
  1401. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych.h +0 -0
  1402. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_emitter.c +0 -0
  1403. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_emitter.h +0 -0
  1404. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_parser.h +0 -0
  1405. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_to_ruby.c +0 -0
  1406. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_to_ruby.h +0 -0
  1407. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_yaml_tree.c +0 -0
  1408. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_yaml_tree.h +0 -0
  1409. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/class_loader.rb +0 -0
  1410. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/coder.rb +0 -0
  1411. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/core_ext.rb +0 -0
  1412. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/exception.rb +0 -0
  1413. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handler.rb +0 -0
  1414. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handlers/document_stream.rb +0 -0
  1415. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handlers/recorder.rb +0 -0
  1416. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/ruby_events.rb +0 -0
  1417. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/stream.rb +0 -0
  1418. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/tree_builder.rb +0 -0
  1419. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/yaml_events.rb +0 -0
  1420. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/alias.rb +0 -0
  1421. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/document.rb +0 -0
  1422. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/mapping.rb +0 -0
  1423. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/node.rb +0 -0
  1424. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/scalar.rb +0 -0
  1425. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/sequence.rb +0 -0
  1426. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/stream.rb +0 -0
  1427. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes.rb +0 -0
  1428. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/omap.rb +0 -0
  1429. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/parser.rb +0 -0
  1430. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/scalar_scanner.rb +0 -0
  1431. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/set.rb +0 -0
  1432. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/stream.rb +0 -0
  1433. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/streaming.rb +0 -0
  1434. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/syntax_error.rb +0 -0
  1435. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/tree_builder.rb +0 -0
  1436. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/depth_first.rb +0 -0
  1437. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/emitter.rb +0 -0
  1438. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/json_tree.rb +0 -0
  1439. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/to_ruby.rb +0 -0
  1440. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/visitor.rb +0 -0
  1441. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/yaml_tree.rb +0 -0
  1442. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors.rb +0 -0
  1443. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/y.rb +0 -0
  1444. /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych.rb +0 -0
  1445. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/LICENSE.txt +0 -0
  1446. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/README.md +0 -0
  1447. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/logo.png +0 -0
  1448. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/output.css.erb +0 -0
  1449. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/output.html.erb +0 -0
  1450. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/config/internal_affairs.yml +0 -0
  1451. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/exe/rubocop +0 -0
  1452. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/arguments_env.rb +0 -0
  1453. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/arguments_file.rb +0 -0
  1454. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ast_aliases.rb +0 -0
  1455. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cache_config.rb +0 -0
  1456. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cached_data.rb +0 -0
  1457. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/base.rb +0 -0
  1458. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/execute_runner.rb +0 -0
  1459. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
  1460. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/lsp.rb +0 -0
  1461. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/mcp.rb +0 -0
  1462. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/show_cops.rb +0 -0
  1463. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/version.rb +0 -0
  1464. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command.rb +0 -0
  1465. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/environment.rb +0 -0
  1466. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config.rb +0 -0
  1467. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_finder.rb +0 -0
  1468. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
  1469. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
  1470. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
  1471. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
  1472. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
  1473. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
  1474. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
  1475. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  1476. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
  1477. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion.rb +0 -0
  1478. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_regeneration.rb +0 -0
  1479. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_validator.rb +0 -0
  1480. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/badge.rb +0 -0
  1481. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
  1482. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
  1483. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
  1484. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/gem_version.rb +0 -0
  1485. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
  1486. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
  1487. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/commissioner.rb +0 -0
  1488. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/cop.rb +0 -0
  1489. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/corrector.rb +0 -0
  1490. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -0
  1491. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
  1492. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
  1493. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
  1494. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
  1495. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
  1496. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
  1497. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
  1498. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
  1499. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
  1500. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
  1501. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
  1502. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
  1503. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
  1504. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
  1505. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/documentation.rb +0 -0
  1506. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/force.rb +0 -0
  1507. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
  1508. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
  1509. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
  1510. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
  1511. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
  1512. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
  1513. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
  1514. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
  1515. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
  1516. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator.rb +0 -0
  1517. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/ignored_node.rb +0 -0
  1518. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
  1519. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
  1520. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
  1521. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
  1522. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
  1523. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -0
  1524. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
  1525. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/itblock_handler.rb +0 -0
  1526. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
  1527. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
  1528. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
  1529. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
  1530. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
  1531. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
  1532. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
  1533. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -0
  1534. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
  1535. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
  1536. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
  1537. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
  1538. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
  1539. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
  1540. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
  1541. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
  1542. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
  1543. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
  1544. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
  1545. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
  1546. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
  1547. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
  1548. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
  1549. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
  1550. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
  1551. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
  1552. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
  1553. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
  1554. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
  1555. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
  1556. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -0
  1557. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
  1558. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs.rb +0 -0
  1559. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
  1560. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
  1561. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
  1562. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
  1563. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
  1564. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/case_indentation.rb +0 -0
  1565. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
  1566. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
  1567. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
  1568. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/condition_position.rb +0 -0
  1569. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
  1570. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/dot_position.rb +0 -0
  1571. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
  1572. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
  1573. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
  1574. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
  1575. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
  1576. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
  1577. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -0
  1578. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
  1579. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
  1580. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
  1581. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
  1582. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
  1583. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
  1584. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
  1585. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
  1586. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
  1587. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
  1588. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
  1589. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -0
  1590. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
  1591. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -0
  1592. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
  1593. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -0
  1594. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
  1595. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
  1596. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
  1597. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
  1598. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
  1599. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -0
  1600. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
  1601. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
  1602. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
  1603. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
  1604. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
  1605. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
  1606. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
  1607. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
  1608. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_length.rb +0 -0
  1609. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -0
  1610. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
  1611. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
  1612. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
  1613. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -0
  1614. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
  1615. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
  1616. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
  1617. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
  1618. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
  1619. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
  1620. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
  1621. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
  1622. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
  1623. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
  1624. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
  1625. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
  1626. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
  1627. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
  1628. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
  1629. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
  1630. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
  1631. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
  1632. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
  1633. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
  1634. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
  1635. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
  1636. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
  1637. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -0
  1638. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
  1639. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
  1640. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
  1641. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
  1642. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
  1643. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
  1644. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
  1645. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
  1646. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
  1647. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
  1648. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
  1649. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
  1650. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  1651. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
  1652. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
  1653. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
  1654. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
  1655. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
  1656. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
  1657. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
  1658. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
  1659. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
  1660. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
  1661. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/data_define_override.rb +0 -0
  1662. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
  1663. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
  1664. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
  1665. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
  1666. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
  1667. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
  1668. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
  1669. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
  1670. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
  1671. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_methods.rb +0 -0
  1672. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
  1673. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
  1674. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
  1675. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
  1676. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
  1677. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/else_layout.rb +0 -0
  1678. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_class.rb +0 -0
  1679. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
  1680. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
  1681. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
  1682. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_file.rb +0 -0
  1683. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
  1684. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
  1685. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_when.rb +0 -0
  1686. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
  1687. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
  1688. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
  1689. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
  1690. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
  1691. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
  1692. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
  1693. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
  1694. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
  1695. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
  1696. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
  1697. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/literal_as_condition.rb +0 -0
  1698. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/loop.rb +0 -0
  1699. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/missing_super.rb +0 -0
  1700. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
  1701. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
  1702. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
  1703. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
  1704. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
  1705. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
  1706. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
  1707. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
  1708. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
  1709. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
  1710. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
  1711. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
  1712. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
  1713. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
  1714. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
  1715. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
  1716. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
  1717. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/struct_new_override.rb +0 -0
  1718. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
  1719. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/syntax.rb +0 -0
  1720. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/to_json.rb +0 -0
  1721. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
  1722. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
  1723. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
  1724. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
  1725. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
  1726. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
  1727. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unreachable_pattern_branch.rb +0 -0
  1728. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
  1729. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
  1730. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
  1731. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
  1732. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
  1733. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
  1734. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -0
  1735. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
  1736. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
  1737. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
  1738. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
  1739. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_or.rb +0 -0
  1740. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
  1741. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/void.rb +0 -0
  1742. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/message_annotator.rb +0 -0
  1743. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
  1744. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
  1745. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/class_length.rb +0 -0
  1746. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
  1747. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/module_length.rb +0 -0
  1748. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
  1749. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
  1750. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
  1751. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
  1752. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
  1753. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
  1754. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/migration/department_name.rb +0 -0
  1755. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  1756. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
  1757. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
  1758. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
  1759. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
  1760. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
  1761. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
  1762. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
  1763. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
  1764. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
  1765. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
  1766. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
  1767. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/code_length.rb +0 -0
  1768. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
  1769. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
  1770. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
  1771. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
  1772. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
  1773. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/def_node.rb +0 -0
  1774. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
  1775. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
  1776. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  1777. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
  1778. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
  1779. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
  1780. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
  1781. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  1782. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
  1783. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
  1784. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
  1785. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
  1786. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
  1787. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
  1788. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
  1789. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -0
  1790. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
  1791. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_transform_method/autocorrection.rb +0 -0
  1792. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
  1793. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  1794. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
  1795. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  1796. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
  1797. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/match_range.rb +0 -0
  1798. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
  1799. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
  1800. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
  1801. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
  1802. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
  1803. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
  1804. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
  1805. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
  1806. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
  1807. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
  1808. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
  1809. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
  1810. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  1811. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
  1812. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
  1813. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
  1814. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
  1815. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/range_help.rb +0 -0
  1816. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
  1817. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/require_library.rb +0 -0
  1818. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
  1819. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
  1820. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
  1821. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
  1822. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
  1823. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/string_help.rb +0 -0
  1824. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
  1825. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
  1826. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
  1827. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
  1828. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
  1829. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
  1830. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
  1831. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
  1832. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
  1833. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
  1834. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
  1835. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
  1836. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
  1837. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
  1838. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/constant_name.rb +0 -0
  1839. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/file_name.rb +0 -0
  1840. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
  1841. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
  1842. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
  1843. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/method_name.rb +0 -0
  1844. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
  1845. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/variable_name.rb +0 -0
  1846. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/variable_number.rb +0 -0
  1847. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/compound_hash.rb +0 -0
  1848. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/eval.rb +0 -0
  1849. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/json_load.rb +0 -0
  1850. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/marshal_load.rb +0 -0
  1851. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/open.rb +0 -0
  1852. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/yaml_load.rb +0 -0
  1853. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/severity.rb +0 -0
  1854. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -0
  1855. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
  1856. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
  1857. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
  1858. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/array_coercion.rb +0 -0
  1859. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/array_join.rb +0 -0
  1860. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
  1861. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/attr.rb +0 -0
  1862. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
  1863. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
  1864. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/begin_block.rb +0 -0
  1865. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
  1866. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
  1867. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
  1868. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/block_comments.rb +0 -0
  1869. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/case_like_if.rb +0 -0
  1870. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_check.rb +0 -0
  1871. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_methods.rb +0 -0
  1872. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_vars.rb +0 -0
  1873. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_compact.rb +0 -0
  1874. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_methods.rb +0 -0
  1875. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_querying.rb +0 -0
  1876. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
  1877. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
  1878. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/command_literal.rb +0 -0
  1879. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
  1880. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
  1881. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/comparable_between.rb +0 -0
  1882. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
  1883. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
  1884. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/dir.rb +0 -0
  1885. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/dir_empty.rb +0 -0
  1886. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/documentation.rb +0 -0
  1887. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/documentation_method.rb +0 -0
  1888. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
  1889. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/double_negation.rb +0 -0
  1890. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
  1891. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/each_with_object.rb +0 -0
  1892. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
  1893. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
  1894. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_class_definition.rb +0 -0
  1895. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_else.rb +0 -0
  1896. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
  1897. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
  1898. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_literal.rb +0 -0
  1899. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_method.rb +0 -0
  1900. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
  1901. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/encoding.rb +0 -0
  1902. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/end_block.rb +0 -0
  1903. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/endless_method.rb +0 -0
  1904. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/env_home.rb +0 -0
  1905. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
  1906. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/even_odd.rb +0 -0
  1907. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
  1908. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
  1909. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
  1910. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
  1911. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_empty.rb +0 -0
  1912. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_null.rb +0 -0
  1913. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_open.rb +0 -0
  1914. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_read.rb +0 -0
  1915. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_touch.rb +0 -0
  1916. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/float_division.rb +0 -0
  1917. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/for.rb +0 -0
  1918. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/format_string_token.rb +0 -0
  1919. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
  1920. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
  1921. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/global_vars.rb +0 -0
  1922. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/guard_clause.rb +0 -0
  1923. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -0
  1924. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
  1925. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_except.rb +0 -0
  1926. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
  1927. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
  1928. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
  1929. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
  1930. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
  1931. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
  1932. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -0
  1933. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -0
  1934. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
  1935. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
  1936. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
  1937. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
  1938. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/inline_comment.rb +0 -0
  1939. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
  1940. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
  1941. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
  1942. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/it_assignment.rb +0 -0
  1943. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
  1944. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
  1945. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
  1946. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/lambda.rb +0 -0
  1947. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/lambda_call.rb +0 -0
  1948. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
  1949. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
  1950. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_into_array.rb +0 -0
  1951. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_join.rb +0 -0
  1952. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
  1953. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_to_set.rb +0 -0
  1954. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
  1955. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
  1956. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
  1957. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
  1958. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
  1959. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_def_parentheses.rb +0 -0
  1960. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/min_max.rb +0 -0
  1961. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/missing_else.rb +0 -0
  1962. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
  1963. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
  1964. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
  1965. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/module_function.rb +0 -0
  1966. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
  1967. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
  1968. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_if_then.rb +0 -0
  1969. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
  1970. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
  1971. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
  1972. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
  1973. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
  1974. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
  1975. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_if.rb +0 -0
  1976. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
  1977. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_unless.rb +0 -0
  1978. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_while.rb +0 -0
  1979. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negative_array_index.rb +0 -0
  1980. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
  1981. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
  1982. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
  1983. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
  1984. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/next.rb +0 -0
  1985. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
  1986. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
  1987. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
  1988. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/not.rb +0 -0
  1989. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
  1990. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
  1991. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
  1992. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
  1993. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
  1994. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/object_then.rb +0 -0
  1995. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/one_class_per_file.rb +0 -0
  1996. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
  1997. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
  1998. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
  1999. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/option_hash.rb +0 -0
  2000. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
  2001. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
  2002. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/or_assignment.rb +0 -0
  2003. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
  2004. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/partition_instead_of_double_select.rb +0 -0
  2005. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
  2006. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
  2007. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
  2008. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/predicate_with_kind.rb +0 -0
  2009. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -0
  2010. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/proc.rb +0 -0
  2011. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
  2012. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/raise_args.rb +0 -0
  2013. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
  2014. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
  2015. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
  2016. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
  2017. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
  2018. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
  2019. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_condition.rb +0 -0
  2020. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
  2021. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
  2022. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
  2023. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_each.rb +0 -0
  2024. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
  2025. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
  2026. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
  2027. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
  2028. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
  2029. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
  2030. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
  2031. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
  2032. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
  2033. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
  2034. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_min_max_by.rb +0 -0
  2035. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_parentheses.rb +0 -0
  2036. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
  2037. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
  2038. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
  2039. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
  2040. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_return.rb +0 -0
  2041. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
  2042. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
  2043. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
  2044. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
  2045. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
  2046. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_struct_keyword_init.rb +0 -0
  2047. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/require_order.rb +0 -0
  2048. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
  2049. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/return_nil.rb +0 -0
  2050. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
  2051. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/reverse_find.rb +0 -0
  2052. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
  2053. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
  2054. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/sample.rb +0 -0
  2055. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_kind.rb +0 -0
  2056. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_range.rb +0 -0
  2057. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
  2058. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/send.rb +0 -0
  2059. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
  2060. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/signal_exception.rb +0 -0
  2061. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
  2062. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
  2063. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
  2064. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
  2065. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
  2066. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
  2067. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
  2068. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/static_class.rb +0 -0
  2069. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
  2070. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_chars.rb +0 -0
  2071. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
  2072. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
  2073. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_literals.rb +0 -0
  2074. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
  2075. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_methods.rb +0 -0
  2076. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/strip.rb +0 -0
  2077. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/super_arguments.rb +0 -0
  2078. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
  2079. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/swap_values.rb +0 -0
  2080. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/symbol_array.rb +0 -0
  2081. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
  2082. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/tally_method.rb +0 -0
  2083. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
  2084. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
  2085. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
  2086. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
  2087. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
  2088. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
  2089. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
  2090. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
  2091. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
  2092. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
  2093. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
  2094. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/unless_else.rb +0 -0
  2095. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/unpack_first.rb +0 -0
  2096. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
  2097. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/when_then.rb +0 -0
  2098. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
  2099. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
  2100. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/util.rb +0 -0
  2101. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/utils/format_string.rb +0 -0
  2102. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
  2103. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/branch.rb +0 -0
  2104. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
  2105. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/reference.rb +0 -0
  2106. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/scope.rb +0 -0
  2107. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/variable.rb +0 -0
  2108. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
  2109. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force.rb +0 -0
  2110. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cops_documentation_generator.rb +0 -0
  2111. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/core_ext/string.rb +0 -0
  2112. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/directive_comment.rb +0 -0
  2113. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/error.rb +0 -0
  2114. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/comment.rb +0 -0
  2115. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/processed_source.rb +0 -0
  2116. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/range.rb +0 -0
  2117. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/regexp_node.rb +0 -0
  2118. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
  2119. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/feature_loader.rb +0 -0
  2120. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/file_finder.rb +0 -0
  2121. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
  2122. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
  2123. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/clang_style_formatter.rb +0 -0
  2124. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/colorizable.rb +0 -0
  2125. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
  2126. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
  2127. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
  2128. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
  2129. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
  2130. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/html_formatter.rb +0 -0
  2131. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/json_formatter.rb +0 -0
  2132. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  2133. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  2134. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
  2135. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  2136. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  2137. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  2138. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
  2139. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
  2140. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/text_util.rb +0 -0
  2141. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
  2142. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter.rb +0 -0
  2143. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lockfile.rb +0 -0
  2144. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/diagnostic.rb +0 -0
  2145. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/disable_comment_edits.rb +0 -0
  2146. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/logger.rb +0 -0
  2147. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/routes.rb +0 -0
  2148. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/server.rb +0 -0
  2149. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/severity.rb +0 -0
  2150. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/stdin_runner.rb +0 -0
  2151. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp.rb +0 -0
  2152. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/magic_comment.rb +0 -0
  2153. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/mcp/server.rb +0 -0
  2154. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/name_similarity.rb +0 -0
  2155. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/path_util.rb +0 -0
  2156. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/pending_cops_reporter.rb +0 -0
  2157. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/platform.rb +0 -0
  2158. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  2159. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/load_error.rb +0 -0
  2160. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/loader.rb +0 -0
  2161. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/not_supported_error.rb +0 -0
  2162. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin.rb +0 -0
  2163. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rake_task.rb +0 -0
  2164. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/remote_config.rb +0 -0
  2165. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/result_cache.rb +0 -0
  2166. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
  2167. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
  2168. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  2169. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/support.rb +0 -0
  2170. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/cache.rb +0 -0
  2171. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/cli.rb +0 -0
  2172. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/base.rb +0 -0
  2173. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/exec.rb +0 -0
  2174. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/restart.rb +0 -0
  2175. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/start.rb +0 -0
  2176. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/status.rb +0 -0
  2177. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/stop.rb +0 -0
  2178. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command.rb +0 -0
  2179. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/errors.rb +0 -0
  2180. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/helper.rb +0 -0
  2181. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/base.rb +0 -0
  2182. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/exec.rb +0 -0
  2183. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/stop.rb +0 -0
  2184. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command.rb +0 -0
  2185. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/socket_reader.rb +0 -0
  2186. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server.rb +0 -0
  2187. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/string_interpreter.rb +0 -0
  2188. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/target_ruby.rb +0 -0
  2189. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/util.rb +0 -0
  2190. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/warning.rb +0 -0
  2191. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  2192. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  2193. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
  2194. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/LICENSE.txt +0 -0
  2195. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/README.md +0 -0
  2196. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/config/obsoletion.yml +0 -0
  2197. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/active_record_helper.rb +0 -0
  2198. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/active_record_migrations_helper.rb +0 -0
  2199. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/class_send_node_helper.rb +0 -0
  2200. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  2201. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/index_method.rb +0 -0
  2202. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/migrations_helper.rb +0 -0
  2203. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/routes_helper.rb +0 -0
  2204. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_controller_flash_before_render.rb +0 -0
  2205. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_controller_test_case.rb +0 -0
  2206. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_order.rb +0 -0
  2207. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_aliases.rb +0 -0
  2208. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_callbacks_order.rb +0 -0
  2209. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_override.rb +0 -0
  2210. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_support_aliases.rb +0 -0
  2211. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_support_on_load.rb +0 -0
  2212. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/add_column_index.rb +0 -0
  2213. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/after_commit_override.rb +0 -0
  2214. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_controller.rb +0 -0
  2215. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_job.rb +0 -0
  2216. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_mailer.rb +0 -0
  2217. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_record.rb +0 -0
  2218. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/arel_star.rb +0 -0
  2219. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/assert_not.rb +0 -0
  2220. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/attribute_default_block_value.rb +0 -0
  2221. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/belongs_to.rb +0 -0
  2222. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/blank.rb +0 -0
  2223. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/bulk_change_table.rb +0 -0
  2224. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/compact_blank.rb +0 -0
  2225. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/content_tag.rb +0 -0
  2226. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -0
  2227. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dangerous_column_names.rb +0 -0
  2228. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/date.rb +0 -0
  2229. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/default_scope.rb +0 -0
  2230. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/delegate.rb +0 -0
  2231. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -0
  2232. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/deprecated_active_model_errors_methods.rb +0 -0
  2233. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dot_separated_keys.rb +0 -0
  2234. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duplicate_association.rb +0 -0
  2235. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duplicate_scope.rb +0 -0
  2236. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duration_arithmetic.rb +0 -0
  2237. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -0
  2238. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/eager_evaluation_log_message.rb +0 -0
  2239. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_hash.rb +0 -0
  2240. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_syntax.rb +0 -0
  2241. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -0
  2242. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/env_local.rb +0 -0
  2243. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/environment_comparison.rb +0 -0
  2244. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/environment_variable_access.rb +0 -0
  2245. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/exit.rb +0 -0
  2246. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/expanded_date_range.rb +0 -0
  2247. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/file_path.rb +0 -0
  2248. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by.rb +0 -0
  2249. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by_id.rb +0 -0
  2250. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by_or_assignment_memoization.rb +0 -0
  2251. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_each.rb +0 -0
  2252. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/freeze_time.rb +0 -0
  2253. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -0
  2254. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -0
  2255. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/helper_instance_variable.rb +0 -0
  2256. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -0
  2257. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_status.rb +0 -0
  2258. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_status_name_consistency.rb +0 -0
  2259. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/i18n_lazy_lookup.rb +0 -0
  2260. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/i18n_locale_assignment.rb +0 -0
  2261. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/ignored_columns_assignment.rb +0 -0
  2262. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +0 -0
  2263. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/index_by.rb +0 -0
  2264. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/index_with.rb +0 -0
  2265. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/inquiry.rb +0 -0
  2266. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/inverse_of.rb +0 -0
  2267. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -0
  2268. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/link_to_blank.rb +0 -0
  2269. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/mailer_name.rb +0 -0
  2270. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/match_route.rb +0 -0
  2271. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/migration_class_name.rb +0 -0
  2272. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/multiple_route_paths.rb +0 -0
  2273. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/negate_include.rb +0 -0
  2274. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/order_arguments.rb +0 -0
  2275. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/order_by_id.rb +0 -0
  2276. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/output.rb +0 -0
  2277. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/output_safety.rb +0 -0
  2278. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pick.rb +0 -0
  2279. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck.rb +0 -0
  2280. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck_id.rb +0 -0
  2281. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck_in_where.rb +0 -0
  2282. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -0
  2283. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/present.rb +0 -0
  2284. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/read_write_attribute.rb +0 -0
  2285. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redirect_back_or_to.rb +0 -0
  2286. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_allow_nil.rb +0 -0
  2287. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_foreign_key.rb +0 -0
  2288. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_presence_validation_on_belongs_to.rb +0 -0
  2289. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -0
  2290. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_travel_back.rb +0 -0
  2291. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reflection_class_name.rb +0 -0
  2292. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/refute_methods.rb +0 -0
  2293. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/relative_date_constant.rb +0 -0
  2294. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/render_inline.rb +0 -0
  2295. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/render_plain_text.rb +0 -0
  2296. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/request_referer.rb +0 -0
  2297. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/require_dependency.rb +0 -0
  2298. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reversible_migration.rb +0 -0
  2299. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reversible_migration_method_definition.rb +0 -0
  2300. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_join_chain.rb +0 -0
  2301. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_pathname_methods.rb +0 -0
  2302. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_public_path.rb +0 -0
  2303. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/safe_navigation.rb +0 -0
  2304. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/safe_navigation_with_blank.rb +0 -0
  2305. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/schema_comment.rb +0 -0
  2306. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/scope_args.rb +0 -0
  2307. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/short_i18n.rb +0 -0
  2308. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/skips_model_validations.rb +0 -0
  2309. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/squished_sql_heredocs.rb +0 -0
  2310. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/strip_heredoc.rb +0 -0
  2311. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/table_name_assignment.rb +0 -0
  2312. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/three_state_boolean_column.rb +0 -0
  2313. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/time_zone.rb +0 -0
  2314. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/time_zone_assignment.rb +0 -0
  2315. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/to_formatted_s.rb +0 -0
  2316. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/to_s_with_argument.rb +0 -0
  2317. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/top_level_hash_with_indifferent_access.rb +0 -0
  2318. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/transaction_exit_statement.rb +0 -0
  2319. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -0
  2320. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unique_validation_without_index.rb +0 -0
  2321. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unused_ignored_columns.rb +0 -0
  2322. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unused_render_content.rb +0 -0
  2323. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/validation.rb +0 -0
  2324. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_equals.rb +0 -0
  2325. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_exists.rb +0 -0
  2326. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_missing.rb +0 -0
  2327. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_not.rb +0 -0
  2328. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_not_with_multiple_conditions.rb +0 -0
  2329. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_range.rb +0 -0
  2330. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails_cops.rb +0 -0
  2331. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/migration_file_skippable.rb +0 -0
  2332. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/plugin.rb +0 -0
  2333. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/schema_loader/schema.rb +0 -0
  2334. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/schema_loader.rb +0 -0
  2335. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails.rb +0 -0
  2336. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop-rails.rb +0 -0
  2337. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/CODE_OF_CONDUCT.md +0 -0
  2338. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/MIT-LICENSE.md +0 -0
  2339. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/README.md +0 -0
  2340. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/config/obsoletion.yml +0 -0
  2341. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/align_left_let_brace.rb +0 -0
  2342. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/align_right_let_brace.rb +0 -0
  2343. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/any_instance.rb +0 -0
  2344. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/base.rb +0 -0
  2345. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be.rb +0 -0
  2346. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_empty.rb +0 -0
  2347. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_eq.rb +0 -0
  2348. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_eql.rb +0 -0
  2349. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_nil.rb +0 -0
  2350. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/before_after_all.rb +0 -0
  2351. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/change_by_zero.rb +0 -0
  2352. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/class_check.rb +0 -0
  2353. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_class.rb +0 -0
  2354. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_method.rb +0 -0
  2355. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_symbol.rb +0 -0
  2356. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/described_class_module_wrapping.rb +0 -0
  2357. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/dialect.rb +0 -0
  2358. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/duplicated_metadata.rb +0 -0
  2359. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/empty_metadata.rb +0 -0
  2360. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/empty_output.rb +0 -0
  2361. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/eq.rb +0 -0
  2362. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/excessive_docstring_spacing.rb +0 -0
  2363. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/expect_output.rb +0 -0
  2364. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/focus.rb +0 -0
  2365. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/identical_equality_assertion.rb +0 -0
  2366. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_block_expectation.rb +0 -0
  2367. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_expect.rb +0 -0
  2368. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_subject.rb +0 -0
  2369. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/include_examples.rb +0 -0
  2370. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/instance_variable.rb +0 -0
  2371. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/is_expected_specify.rb +0 -0
  2372. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/it_behaves_like.rb +0 -0
  2373. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/leaky_constant_declaration.rb +0 -0
  2374. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/leaky_local_variable.rb +0 -0
  2375. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/match_array.rb +0 -0
  2376. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_chain.rb +0 -0
  2377. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_expectation.rb +0 -0
  2378. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_spies.rb +0 -0
  2379. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/metadata_style.rb +0 -0
  2380. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/missing_expectation_target_method.rb +0 -0
  2381. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/comments_help.rb +0 -0
  2382. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/empty_line_separation.rb +0 -0
  2383. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/file_help.rb +0 -0
  2384. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/final_end_location.rb +0 -0
  2385. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/inside_example_group.rb +0 -0
  2386. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/location_help.rb +0 -0
  2387. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/namespace.rb +0 -0
  2388. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/skip_or_pending.rb +0 -0
  2389. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/top_level_group.rb +0 -0
  2390. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/variable.rb +0 -0
  2391. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/multiple_describes.rb +0 -0
  2392. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/nested_groups.rb +0 -0
  2393. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/not_to_not.rb +0 -0
  2394. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/output.rb +0 -0
  2395. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/pending.rb +0 -0
  2396. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/pending_without_reason.rb +0 -0
  2397. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_counts.rb +0 -0
  2398. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_messages.rb +0 -0
  2399. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_never.rb +0 -0
  2400. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/redundant_predicate_matcher.rb +0 -0
  2401. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/remove_const.rb +0 -0
  2402. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/repeated_subject_call.rb +0 -0
  2403. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/shared_examples.rb +0 -0
  2404. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/single_argument_message_chain.rb +0 -0
  2405. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/sort_metadata.rb +0 -0
  2406. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/spec_file_path_suffix.rb +0 -0
  2407. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/stubbed_mock.rb +0 -0
  2408. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/subject_stub.rb +0 -0
  2409. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/unspecified_exception.rb +0 -0
  2410. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/variable_definition.rb +0 -0
  2411. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/variable_name.rb +0 -0
  2412. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/verified_double_reference.rb +0 -0
  2413. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/verified_doubles.rb +0 -0
  2414. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/align_let_brace.rb +0 -0
  2415. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/concept.rb +0 -0
  2416. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/config_formatter.rb +0 -0
  2417. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/cop/generator.rb +0 -0
  2418. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/corrector/move_node.rb +0 -0
  2419. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/example.rb +0 -0
  2420. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/example_group.rb +0 -0
  2421. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/hook.rb +0 -0
  2422. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/language.rb +0 -0
  2423. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/node.rb +0 -0
  2424. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/plugin.rb +0 -0
  2425. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/shared_contexts/default_rspec_language_config_context.rb +0 -0
  2426. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/wording.rb +0 -0
  2427. /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec.rb +0 -0
  2428. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/LICENSE +0 -0
  2429. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/docs/errors/NonCaseSwappableValueError.md +0 -0
  2430. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/callback_matcher.rb +0 -0
  2431. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +0 -0
  2432. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/flash_store.rb +0 -0
  2433. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/permit_matcher.rb +0 -0
  2434. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +0 -0
  2435. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/render_template_matcher.rb +0 -0
  2436. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +0 -0
  2437. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +0 -0
  2438. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/route_matcher.rb +0 -0
  2439. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/route_params.rb +0 -0
  2440. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/session_store.rb +0 -0
  2441. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +0 -0
  2442. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_session_matcher.rb +0 -0
  2443. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_session_or_flash_matcher.rb +0 -0
  2444. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller.rb +0 -0
  2445. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_changed_value_error.rb +0 -0
  2446. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_does_not_exist_error.rb +0 -0
  2447. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +0 -0
  2448. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter_and_validator.rb +0 -0
  2449. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters.rb +0 -0
  2450. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters_and_validators.rb +0 -0
  2451. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/successful_check.rb +0 -0
  2452. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/successful_setting.rb +0 -0
  2453. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/comparison_matcher.rb +0 -0
  2454. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +0 -0
  2455. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/errors.rb +0 -0
  2456. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +0 -0
  2457. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +0 -0
  2458. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +0 -0
  2459. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +0 -0
  2460. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +0 -0
  2461. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/range_matcher.rb +0 -0
  2462. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/submatchers.rb +0 -0
  2463. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers.rb +0 -0
  2464. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/allow_blank.rb +0 -0
  2465. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/allow_nil.rb +0 -0
  2466. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/ignore_interference_by_writer.rb +0 -0
  2467. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/ignoring_interference_by_writer.rb +0 -0
  2468. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers.rb +0 -0
  2469. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +0 -0
  2470. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/validation_message_finder.rb +0 -0
  2471. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model.rb +0 -0
  2472. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +0 -0
  2473. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +0 -0
  2474. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +0 -0
  2475. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +0 -0
  2476. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +0 -0
  2477. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +0 -0
  2478. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +0 -0
  2479. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +0 -0
  2480. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +0 -0
  2481. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +0 -0
  2482. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +0 -0
  2483. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers.rb +0 -0
  2484. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/encrypt_matcher.rb +0 -0
  2485. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +0 -0
  2486. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +0 -0
  2487. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_implicit_order_column.rb +0 -0
  2488. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_rich_text_matcher.rb +0 -0
  2489. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +0 -0
  2490. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/normalize_matcher.rb +0 -0
  2491. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/serialize_matcher.rb +0 -0
  2492. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness/model.rb +0 -0
  2493. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness/test_model_creator.rb +0 -0
  2494. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness.rb +0 -0
  2495. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record.rb +0 -0
  2496. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/configuration.rb +0 -0
  2497. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double.rb +0 -0
  2498. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double_collection.rb +0 -0
  2499. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +0 -0
  2500. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/method_call.rb +0 -0
  2501. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/object_double.rb +0 -0
  2502. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +0 -0
  2503. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/stub_implementation.rb +0 -0
  2504. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/world.rb +0 -0
  2505. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak.rb +0 -0
  2506. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/error.rb +0 -0
  2507. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent/delegate_method_matcher/target_not_defined_error.rb +0 -0
  2508. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent/delegate_method_matcher.rb +0 -0
  2509. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent.rb +0 -0
  2510. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/configuration.rb +0 -0
  2511. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/configuration_error.rb +0 -0
  2512. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/inclusion.rb +0 -0
  2513. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/action_controller.rb +0 -0
  2514. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/active_model.rb +0 -0
  2515. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/active_record.rb +0 -0
  2516. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/missing_library.rb +0 -0
  2517. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/rails.rb +0 -0
  2518. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/routing.rb +0 -0
  2519. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries.rb +0 -0
  2520. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/rails.rb +0 -0
  2521. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/registry.rb +0 -0
  2522. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +0 -0
  2523. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +0 -0
  2524. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +0 -0
  2525. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +0 -0
  2526. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/rspec.rb +0 -0
  2527. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +0 -0
  2528. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks.rb +0 -0
  2529. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations.rb +0 -0
  2530. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/matcher_context.rb +0 -0
  2531. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/routing.rb +0 -0
  2532. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/util/word_wrap.rb +0 -0
  2533. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/util.rb +0 -0
  2534. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/warn.rb +0 -0
  2535. /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda-matchers.rb +0 -0
  2536. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/README.md +0 -0
  2537. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/Makefile +0 -0
  2538. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/WebsocketMaskService.java +0 -0
  2539. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/extconf.rb +0 -0
  2540. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/websocket_mask.c +0 -0
  2541. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/client.rb +0 -0
  2542. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/draft76.rb +0 -0
  2543. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/event_emitter.rb +0 -0
  2544. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/headers.rb +0 -0
  2545. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/hybi/frame.rb +0 -0
  2546. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/hybi/message.rb +0 -0
  2547. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/proxy.rb +0 -0
  2548. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/server.rb +0 -0
  2549. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/stream_reader.rb +0 -0
  2550. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver.rb +0 -0
  2551. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http/request.rb +0 -0
  2552. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http/response.rb +0 -0
  2553. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http.rb +0 -0
  2554. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/mask.rb +0 -0
  2555. /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/websocket_mask.rb +0 -0
  2556. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/MIT-LICENSE +0 -0
  2557. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/core_ext/module.rb +0 -0
  2558. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/internal.rb +0 -0
  2559. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/null_inflector.rb +0 -0
  2560. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/real_mod_name.rb +0 -0
  2561. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/autoloads.rb +0 -0
  2562. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/explicit_namespaces.rb +0 -0
  2563. /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/inceptions.rb +0 -0
@@ -1,1978 +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 SIMD_Implementation simd_impl;
67
-
68
- static VALUE cState_from_state_s(VALUE self, VALUE opts);
69
- static VALUE cState_partial_generate(VALUE self, VALUE obj, generator_func, VALUE io);
70
- static void generate_json(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
71
- static void generate_json_object(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
72
- static void generate_json_array(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
73
- static void generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
74
- static void generate_json_null(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
75
- static void generate_json_false(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
76
- static void generate_json_true(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
77
- static void generate_json_fixnum(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
78
- static void generate_json_bignum(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
79
- static void generate_json_float(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
80
- static void generate_json_fragment(FBuffer *buffer, struct generate_json_data *data, VALUE obj);
81
-
82
- static int usascii_encindex, utf8_encindex, binary_encindex;
83
-
84
- NORETURN(static void) raise_generator_error_str(VALUE invalid_object, VALUE str)
85
- {
86
- rb_enc_associate_index(str, utf8_encindex);
87
- VALUE exc = rb_exc_new_str(eGeneratorError, str);
88
- rb_ivar_set(exc, rb_intern("@invalid_object"), invalid_object);
89
- rb_exc_raise(exc);
90
- }
91
-
92
- #ifdef RBIMPL_ATTR_FORMAT
93
- RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 2, 3)
94
- #endif
95
- NORETURN(static void) raise_generator_error(VALUE invalid_object, const char *fmt, ...)
96
- {
97
- va_list args;
98
- va_start(args, fmt);
99
- VALUE str = rb_vsprintf(fmt, args);
100
- va_end(args);
101
- raise_generator_error_str(invalid_object, str);
102
- }
103
-
104
- // 0 - single byte char that don't need to be escaped.
105
- // (x | 8) - char that needs to be escaped.
106
- static const unsigned char CHAR_LENGTH_MASK = 7;
107
- static const unsigned char ESCAPE_MASK = 8;
108
-
109
- typedef struct _search_state {
110
- const char *ptr;
111
- const char *end;
112
- const char *cursor;
113
- FBuffer *buffer;
114
-
115
- #ifdef HAVE_SIMD
116
- const char *chunk_base;
117
- const char *chunk_end;
118
- bool has_matches;
119
-
120
- #if defined(HAVE_SIMD_NEON)
121
- uint64_t matches_mask;
122
- #elif defined(HAVE_SIMD_SSE2)
123
- int matches_mask;
124
- #else
125
- #error "Unknown SIMD Implementation."
126
- #endif /* HAVE_SIMD_NEON */
127
- #endif /* HAVE_SIMD */
128
- } search_state;
129
-
130
- ALWAYS_INLINE(static) void search_flush(search_state *search)
131
- {
132
- // Do not remove this conditional without profiling, specifically escape-heavy text.
133
- // escape_UTF8_char_basic will advance search->ptr and search->cursor (effectively a search_flush).
134
- // For back-to-back characters that need to be escaped, specifically for the SIMD code paths, this method
135
- // will be called just before calling escape_UTF8_char_basic. There will be no characters to append for the
136
- // consecutive characters that need to be escaped. While the fbuffer_append is a no-op if
137
- // nothing needs to be flushed, we can save a few memory references with this conditional.
138
- if (search->ptr > search->cursor) {
139
- fbuffer_append(search->buffer, search->cursor, search->ptr - search->cursor);
140
- search->cursor = search->ptr;
141
- }
142
- }
143
-
144
- static const unsigned char escape_table_basic[256] = {
145
- // ASCII Control Characters
146
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
147
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
148
- // ASCII Characters
149
- 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // '"'
150
- 0, 0, 0, 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, 9, 0, 0, 0, // '\\'
153
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
154
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
155
- };
156
-
157
- static inline unsigned char search_escape_basic(search_state *search)
158
- {
159
- while (search->ptr < search->end) {
160
- if (RB_UNLIKELY(escape_table_basic[(const unsigned char)*search->ptr])) {
161
- search_flush(search);
162
- return 1;
163
- } else {
164
- search->ptr++;
165
- }
166
- }
167
- search_flush(search);
168
- return 0;
169
- }
170
-
171
- ALWAYS_INLINE(static) void escape_UTF8_char_basic(search_state *search)
172
- {
173
- const unsigned char ch = (unsigned char)*search->ptr;
174
- switch (ch) {
175
- case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
176
- case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
177
- case '/': fbuffer_append(search->buffer, "\\/", 2); break;
178
- case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
179
- case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
180
- case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
181
- case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
182
- case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
183
- default: {
184
- const char *hexdig = "0123456789abcdef";
185
- char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
186
- scratch[4] = hexdig[(ch >> 4) & 0xf];
187
- scratch[5] = hexdig[ch & 0xf];
188
- fbuffer_append(search->buffer, scratch, 6);
189
- break;
190
- }
191
- }
192
- search->ptr++;
193
- search->cursor = search->ptr;
194
- }
195
-
196
- /* Converts in_string to a JSON string (without the wrapping '"'
197
- * characters) in FBuffer out_buffer.
198
- *
199
- * Character are JSON-escaped according to:
200
- *
201
- * - Always: ASCII control characters (0x00-0x1F), dquote, and
202
- * backslash.
203
- *
204
- * - If out_ascii_only: non-ASCII characters (>0x7F)
205
- *
206
- * - If script_safe: forwardslash (/), line separator (U+2028), and
207
- * paragraph separator (U+2029)
208
- *
209
- * Everything else (should be UTF-8) is just passed through and
210
- * appended to the result.
211
- */
212
-
213
-
214
- #if defined(HAVE_SIMD_NEON)
215
- static inline unsigned char search_escape_basic_neon(search_state *search);
216
- #elif defined(HAVE_SIMD_SSE2)
217
- static inline unsigned char search_escape_basic_sse2(search_state *search);
218
- #endif
219
-
220
- static inline unsigned char search_escape_basic(search_state *search);
221
-
222
- static inline void convert_UTF8_to_JSON(search_state *search)
223
- {
224
- #ifdef HAVE_SIMD
225
- #if defined(HAVE_SIMD_NEON)
226
- while (search_escape_basic_neon(search)) {
227
- escape_UTF8_char_basic(search);
228
- }
229
- #elif defined(HAVE_SIMD_SSE2)
230
- if (simd_impl == SIMD_SSE2) {
231
- while (search_escape_basic_sse2(search)) {
232
- escape_UTF8_char_basic(search);
233
- }
234
- return;
235
- }
236
- while (search_escape_basic(search)) {
237
- escape_UTF8_char_basic(search);
238
- }
239
- #endif
240
- #else
241
- while (search_escape_basic(search)) {
242
- escape_UTF8_char_basic(search);
243
- }
244
- #endif /* HAVE_SIMD */
245
- }
246
-
247
- static inline void escape_UTF8_char(search_state *search, unsigned char ch_len)
248
- {
249
- const unsigned char ch = (unsigned char)*search->ptr;
250
- switch (ch_len) {
251
- case 1: {
252
- switch (ch) {
253
- case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
254
- case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
255
- case '/': fbuffer_append(search->buffer, "\\/", 2); break;
256
- case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
257
- case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
258
- case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
259
- case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
260
- case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
261
- default: {
262
- const char *hexdig = "0123456789abcdef";
263
- char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
264
- scratch[4] = hexdig[(ch >> 4) & 0xf];
265
- scratch[5] = hexdig[ch & 0xf];
266
- fbuffer_append(search->buffer, scratch, 6);
267
- break;
268
- }
269
- }
270
- break;
271
- }
272
- case 3: {
273
- if (search->ptr[2] & 1) {
274
- fbuffer_append(search->buffer, "\\u2029", 6);
275
- } else {
276
- fbuffer_append(search->buffer, "\\u2028", 6);
277
- }
278
- break;
279
- }
280
- }
281
- search->cursor = (search->ptr += ch_len);
282
- }
283
-
284
- #ifdef HAVE_SIMD
285
-
286
- ALWAYS_INLINE(static) char *copy_remaining_bytes(search_state *search, unsigned long vec_len, unsigned long len)
287
- {
288
- RBIMPL_ASSERT_OR_ASSUME(len < vec_len);
289
-
290
- // Flush the buffer so everything up until the last 'len' characters are unflushed.
291
- search_flush(search);
292
-
293
- FBuffer *buf = search->buffer;
294
- fbuffer_inc_capa(buf, vec_len);
295
-
296
- char *s = (buf->ptr + buf->len);
297
-
298
- // Pad the buffer with dummy characters that won't need escaping.
299
- // This seem wasteful at first sight, but memset of vector length is very fast.
300
- // This is a space as it can be directly represented as an immediate on AArch64.
301
- memset(s, ' ', vec_len);
302
-
303
- // Optimistically copy the remaining 'len' characters to the output FBuffer. If there are no characters
304
- // to escape, then everything ends up in the correct spot. Otherwise it was convenient temporary storage.
305
- if (vec_len == 16) {
306
- RBIMPL_ASSERT_OR_ASSUME(len >= SIMD_MINIMUM_THRESHOLD);
307
- json_fast_memcpy16(s, search->ptr, len);
308
- } else {
309
- MEMCPY(s, search->ptr, char, len);
310
- }
311
-
312
- return s;
313
- }
314
-
315
- #ifdef HAVE_SIMD_NEON
316
-
317
- ALWAYS_INLINE(static) unsigned char neon_next_match(search_state *search)
318
- {
319
- uint64_t mask = search->matches_mask;
320
- uint32_t index = trailing_zeros64(mask) >> 2;
321
-
322
- // It is assumed escape_UTF8_char_basic will only ever increase search->ptr by at most one character.
323
- // If we want to use a similar approach for full escaping we'll need to ensure:
324
- // search->chunk_base + index >= search->ptr
325
- // However, since we know escape_UTF8_char_basic only increases search->ptr by one, if the next match
326
- // is one byte after the previous match then:
327
- // search->chunk_base + index == search->ptr
328
- search->ptr = search->chunk_base + index;
329
- mask &= mask - 1;
330
- search->matches_mask = mask;
331
- search_flush(search);
332
- return 1;
333
- }
334
-
335
- static inline unsigned char search_escape_basic_neon(search_state *search)
336
- {
337
- if (RB_UNLIKELY(search->has_matches)) {
338
- // There are more matches if search->matches_mask > 0.
339
- if (search->matches_mask > 0) {
340
- return neon_next_match(search);
341
- } else {
342
- // neon_next_match will only advance search->ptr up to the last matching character.
343
- // Skip over any characters in the last chunk that occur after the last match.
344
- search->has_matches = false;
345
- search->ptr = search->chunk_end;
346
- }
347
- }
348
-
349
- /*
350
- * The code below implements an SIMD-based algorithm to determine if N bytes at a time
351
- * need to be escaped.
352
- *
353
- * Assume the ptr = "Te\sting!" (the double quotes are included in the string)
354
- *
355
- * The explanation will be limited to the first 8 bytes of the string for simplicity. However
356
- * the vector insructions may work on larger vectors.
357
- *
358
- * First, we load three constants 'lower_bound', 'backslash' and 'dblquote" in vector registers.
359
- *
360
- * lower_bound: [20 20 20 20 20 20 20 20]
361
- * backslash: [5C 5C 5C 5C 5C 5C 5C 5C]
362
- * dblquote: [22 22 22 22 22 22 22 22]
363
- *
364
- * Next we load the first chunk of the ptr:
365
- * [22 54 65 5C 73 74 69 6E] (" T e \ s t i n)
366
- *
367
- * First we check if any byte in chunk is less than 32 (0x20). This returns the following vector
368
- * as no bytes are less than 32 (0x20):
369
- * [0 0 0 0 0 0 0 0]
370
- *
371
- * Next, we check if any byte in chunk is equal to a backslash:
372
- * [0 0 0 FF 0 0 0 0]
373
- *
374
- * Finally we check if any byte in chunk is equal to a double quote:
375
- * [FF 0 0 0 0 0 0 0]
376
- *
377
- * Now we have three vectors where each byte indicates if the corresponding byte in chunk
378
- * needs to be escaped. We combine these vectors with a series of logical OR instructions.
379
- * This is the needs_escape vector and it is equal to:
380
- * [FF 0 0 FF 0 0 0 0]
381
- *
382
- * Next we compute the bitwise AND between each byte and 0x1 and compute the horizontal sum of
383
- * the values in the vector. This computes how many bytes need to be escaped within this chunk.
384
- *
385
- * Finally we compute a mask that indicates which bytes need to be escaped. If the mask is 0 then,
386
- * no bytes need to be escaped and we can continue to the next chunk. If the mask is not 0 then we
387
- * have at least one byte that needs to be escaped.
388
- */
389
-
390
- if (string_scan_simd_neon(&search->ptr, search->end, &search->matches_mask)) {
391
- search->has_matches = true;
392
- search->chunk_base = search->ptr;
393
- search->chunk_end = search->ptr + sizeof(uint8x16_t);
394
- return neon_next_match(search);
395
- }
396
-
397
- // There are fewer than 16 bytes left.
398
- unsigned long remaining = (search->end - search->ptr);
399
- if (remaining >= SIMD_MINIMUM_THRESHOLD) {
400
- char *s = copy_remaining_bytes(search, sizeof(uint8x16_t), remaining);
401
-
402
- uint64_t mask = compute_chunk_mask_neon(s);
403
-
404
- if (!mask) {
405
- // Nothing to escape, ensure search_flush doesn't do anything by setting
406
- // search->cursor to search->ptr.
407
- fbuffer_consumed(search->buffer, remaining);
408
- search->ptr = search->end;
409
- search->cursor = search->end;
410
- return 0;
411
- }
412
-
413
- search->matches_mask = mask;
414
- search->has_matches = true;
415
- search->chunk_end = search->end;
416
- search->chunk_base = search->ptr;
417
- return neon_next_match(search);
418
- }
419
-
420
- if (search->ptr < search->end) {
421
- return search_escape_basic(search);
422
- }
423
-
424
- search_flush(search);
425
- return 0;
426
- }
427
- #endif /* HAVE_SIMD_NEON */
428
-
429
- #ifdef HAVE_SIMD_SSE2
430
-
431
- ALWAYS_INLINE(static) unsigned char sse2_next_match(search_state *search)
432
- {
433
- int mask = search->matches_mask;
434
- int index = trailing_zeros(mask);
435
-
436
- // It is assumed escape_UTF8_char_basic will only ever increase search->ptr by at most one character.
437
- // If we want to use a similar approach for full escaping we'll need to ensure:
438
- // search->chunk_base + index >= search->ptr
439
- // However, since we know escape_UTF8_char_basic only increases search->ptr by one, if the next match
440
- // is one byte after the previous match then:
441
- // search->chunk_base + index == search->ptr
442
- search->ptr = search->chunk_base + index;
443
- mask &= mask - 1;
444
- search->matches_mask = mask;
445
- search_flush(search);
446
- return 1;
447
- }
448
-
449
- #if defined(__clang__) || defined(__GNUC__)
450
- #define TARGET_SSE2 __attribute__((target("sse2")))
451
- #else
452
- #define TARGET_SSE2
453
- #endif
454
-
455
- ALWAYS_INLINE(static) TARGET_SSE2 unsigned char search_escape_basic_sse2(search_state *search)
456
- {
457
- if (RB_UNLIKELY(search->has_matches)) {
458
- // There are more matches if search->matches_mask > 0.
459
- if (search->matches_mask > 0) {
460
- return sse2_next_match(search);
461
- } else {
462
- // sse2_next_match will only advance search->ptr up to the last matching character.
463
- // Skip over any characters in the last chunk that occur after the last match.
464
- search->has_matches = false;
465
- if (RB_UNLIKELY(search->chunk_base + sizeof(__m128i) >= search->end)) {
466
- search->ptr = search->end;
467
- } else {
468
- search->ptr = search->chunk_base + sizeof(__m128i);
469
- }
470
- }
471
- }
472
-
473
- if (string_scan_simd_sse2(&search->ptr, search->end, &search->matches_mask)) {
474
- search->has_matches = true;
475
- search->chunk_base = search->ptr;
476
- search->chunk_end = search->ptr + sizeof(__m128i);
477
- return sse2_next_match(search);
478
- }
479
-
480
- // There are fewer than 16 bytes left.
481
- unsigned long remaining = (search->end - search->ptr);
482
- if (remaining >= SIMD_MINIMUM_THRESHOLD) {
483
- char *s = copy_remaining_bytes(search, sizeof(__m128i), remaining);
484
-
485
- int needs_escape_mask = compute_chunk_mask_sse2(s);
486
-
487
- if (needs_escape_mask == 0) {
488
- // Nothing to escape, ensure search_flush doesn't do anything by setting
489
- // search->cursor to search->ptr.
490
- fbuffer_consumed(search->buffer, remaining);
491
- search->ptr = search->end;
492
- search->cursor = search->end;
493
- return 0;
494
- }
495
-
496
- search->has_matches = true;
497
- search->matches_mask = needs_escape_mask;
498
- search->chunk_base = search->ptr;
499
- return sse2_next_match(search);
500
- }
501
-
502
- if (search->ptr < search->end) {
503
- return search_escape_basic(search);
504
- }
505
-
506
- search_flush(search);
507
- return 0;
508
- }
509
-
510
- #endif /* HAVE_SIMD_SSE2 */
511
-
512
- #endif /* HAVE_SIMD */
513
-
514
- static const unsigned char script_safe_escape_table[256] = {
515
- // ASCII Control Characters
516
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
517
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
518
- // ASCII Characters
519
- 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, // '"' and '/'
520
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
521
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
522
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, // '\\'
523
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
524
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
525
- // Continuation byte
526
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
527
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
528
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
529
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
530
- // First byte of a 2-byte code point
531
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
532
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
533
- // First byte of a 3-byte code point
534
- 3, 3,11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, // 0xE2 is the start of \u2028 and \u2029
535
- //First byte of a 4+ byte code point
536
- 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 9, 9,
537
- };
538
-
539
- static inline unsigned char search_script_safe_escape(search_state *search)
540
- {
541
- while (search->ptr < search->end) {
542
- unsigned char ch = (unsigned char)*search->ptr;
543
- unsigned char ch_len = script_safe_escape_table[ch];
544
-
545
- if (RB_UNLIKELY(ch_len)) {
546
- if (ch_len & ESCAPE_MASK) {
547
- if (RB_UNLIKELY(ch_len == 11)) {
548
- const unsigned char *uptr = (const unsigned char *)search->ptr;
549
- if (!(uptr[1] == 0x80 && (uptr[2] >> 1) == 0x54)) {
550
- search->ptr += 3;
551
- continue;
552
- }
553
- }
554
- search_flush(search);
555
- return ch_len & CHAR_LENGTH_MASK;
556
- } else {
557
- search->ptr += ch_len;
558
- }
559
- } else {
560
- search->ptr++;
561
- }
562
- }
563
- search_flush(search);
564
- return 0;
565
- }
566
-
567
- static void convert_UTF8_to_script_safe_JSON(search_state *search)
568
- {
569
- unsigned char ch_len;
570
- while ((ch_len = search_script_safe_escape(search))) {
571
- escape_UTF8_char(search, ch_len);
572
- }
573
- }
574
-
575
- static const unsigned char ascii_only_escape_table[256] = {
576
- // ASCII Control Characters
577
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
578
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
579
- // ASCII Characters
580
- 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // '"'
581
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
582
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
583
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, // '\\'
584
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
585
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
586
- // Continuation byte
587
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
588
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
589
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
590
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
591
- // First byte of a 2-byte code point
592
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
593
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
594
- // First byte of a 3-byte code point
595
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
596
- //First byte of a 4+ byte code point
597
- 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 9, 9,
598
- };
599
-
600
- static inline unsigned char search_ascii_only_escape(search_state *search, const unsigned char escape_table[256])
601
- {
602
- while (search->ptr < search->end) {
603
- unsigned char ch = (unsigned char)*search->ptr;
604
- unsigned char ch_len = escape_table[ch];
605
-
606
- if (RB_UNLIKELY(ch_len)) {
607
- search_flush(search);
608
- return ch_len & CHAR_LENGTH_MASK;
609
- } else {
610
- search->ptr++;
611
- }
612
- }
613
- search_flush(search);
614
- return 0;
615
- }
616
-
617
- static inline void full_escape_UTF8_char(search_state *search, unsigned char ch_len)
618
- {
619
- const unsigned char ch = (unsigned char)*search->ptr;
620
- switch (ch_len) {
621
- case 1: {
622
- switch (ch) {
623
- case '"': fbuffer_append(search->buffer, "\\\"", 2); break;
624
- case '\\': fbuffer_append(search->buffer, "\\\\", 2); break;
625
- case '/': fbuffer_append(search->buffer, "\\/", 2); break;
626
- case '\b': fbuffer_append(search->buffer, "\\b", 2); break;
627
- case '\f': fbuffer_append(search->buffer, "\\f", 2); break;
628
- case '\n': fbuffer_append(search->buffer, "\\n", 2); break;
629
- case '\r': fbuffer_append(search->buffer, "\\r", 2); break;
630
- case '\t': fbuffer_append(search->buffer, "\\t", 2); break;
631
- default: {
632
- const char *hexdig = "0123456789abcdef";
633
- char scratch[6] = { '\\', 'u', '0', '0', 0, 0 };
634
- scratch[4] = hexdig[(ch >> 4) & 0xf];
635
- scratch[5] = hexdig[ch & 0xf];
636
- fbuffer_append(search->buffer, scratch, 6);
637
- break;
638
- }
639
- }
640
- break;
641
- }
642
- default: {
643
- const char *hexdig = "0123456789abcdef";
644
- char scratch[12] = { '\\', 'u', 0, 0, 0, 0, '\\', 'u' };
645
-
646
- uint32_t wchar = 0;
647
-
648
- switch (ch_len) {
649
- case 2:
650
- wchar = ch & 0x1F;
651
- break;
652
- case 3:
653
- wchar = ch & 0x0F;
654
- break;
655
- case 4:
656
- wchar = ch & 0x07;
657
- break;
658
- }
659
-
660
- for (short i = 1; i < ch_len; i++) {
661
- wchar = (wchar << 6) | (search->ptr[i] & 0x3F);
662
- }
663
-
664
- if (wchar <= 0xFFFF) {
665
- scratch[2] = hexdig[wchar >> 12];
666
- scratch[3] = hexdig[(wchar >> 8) & 0xf];
667
- scratch[4] = hexdig[(wchar >> 4) & 0xf];
668
- scratch[5] = hexdig[wchar & 0xf];
669
- fbuffer_append(search->buffer, scratch, 6);
670
- } else {
671
- uint16_t hi, lo;
672
- wchar -= 0x10000;
673
- hi = 0xD800 + (uint16_t)(wchar >> 10);
674
- lo = 0xDC00 + (uint16_t)(wchar & 0x3FF);
675
-
676
- scratch[2] = hexdig[hi >> 12];
677
- scratch[3] = hexdig[(hi >> 8) & 0xf];
678
- scratch[4] = hexdig[(hi >> 4) & 0xf];
679
- scratch[5] = hexdig[hi & 0xf];
680
-
681
- scratch[8] = hexdig[lo >> 12];
682
- scratch[9] = hexdig[(lo >> 8) & 0xf];
683
- scratch[10] = hexdig[(lo >> 4) & 0xf];
684
- scratch[11] = hexdig[lo & 0xf];
685
-
686
- fbuffer_append(search->buffer, scratch, 12);
687
- }
688
-
689
- break;
690
- }
691
- }
692
- search->cursor = (search->ptr += ch_len);
693
- }
694
-
695
- static void convert_UTF8_to_ASCII_only_JSON(search_state *search, const unsigned char escape_table[256])
696
- {
697
- unsigned char ch_len;
698
- while ((ch_len = search_ascii_only_escape(search, escape_table))) {
699
- full_escape_UTF8_char(search, ch_len);
700
- }
701
- }
702
-
703
- static void State_mark(void *ptr)
704
- {
705
- JSON_Generator_State *state = ptr;
706
- rb_gc_mark_movable(state->indent);
707
- rb_gc_mark_movable(state->space);
708
- rb_gc_mark_movable(state->space_before);
709
- rb_gc_mark_movable(state->object_nl);
710
- rb_gc_mark_movable(state->array_nl);
711
- rb_gc_mark_movable(state->as_json);
712
- }
713
-
714
- static void State_compact(void *ptr)
715
- {
716
- JSON_Generator_State *state = ptr;
717
- state->indent = rb_gc_location(state->indent);
718
- state->space = rb_gc_location(state->space);
719
- state->space_before = rb_gc_location(state->space_before);
720
- state->object_nl = rb_gc_location(state->object_nl);
721
- state->array_nl = rb_gc_location(state->array_nl);
722
- state->as_json = rb_gc_location(state->as_json);
723
- }
724
-
725
- static size_t State_memsize(const void *ptr)
726
- {
727
- return sizeof(JSON_Generator_State);
728
- }
729
-
730
- static const rb_data_type_t JSON_Generator_State_type = {
731
- .wrap_struct_name = "JSON/Generator/State",
732
- .function = {
733
- .dmark = State_mark,
734
- .dfree = RUBY_DEFAULT_FREE,
735
- .dsize = State_memsize,
736
- .dcompact = State_compact,
737
- },
738
- .flags = RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_FROZEN_SHAREABLE | RUBY_TYPED_EMBEDDABLE,
739
- };
740
-
741
- static void state_init(JSON_Generator_State *state)
742
- {
743
- state->max_nesting = 100;
744
- state->buffer_initial_length = FBUFFER_INITIAL_LENGTH_DEFAULT;
745
- }
746
-
747
- static VALUE cState_s_allocate(VALUE klass)
748
- {
749
- JSON_Generator_State *state;
750
- VALUE obj = TypedData_Make_Struct(klass, JSON_Generator_State, &JSON_Generator_State_type, state);
751
- state_init(state);
752
- return obj;
753
- }
754
-
755
- static void vstate_spill(struct generate_json_data *data)
756
- {
757
- VALUE vstate = cState_s_allocate(cState);
758
- GET_STATE(vstate);
759
- MEMCPY(state, data->state, JSON_Generator_State, 1);
760
- data->state = state;
761
- data->vstate = vstate;
762
- RB_OBJ_WRITTEN(vstate, Qundef, state->indent);
763
- RB_OBJ_WRITTEN(vstate, Qundef, state->space);
764
- RB_OBJ_WRITTEN(vstate, Qundef, state->space_before);
765
- RB_OBJ_WRITTEN(vstate, Qundef, state->object_nl);
766
- RB_OBJ_WRITTEN(vstate, Qundef, state->array_nl);
767
- RB_OBJ_WRITTEN(vstate, Qundef, state->as_json);
768
- }
769
-
770
- static inline VALUE json_call_to_json(struct generate_json_data *data, VALUE obj)
771
- {
772
- if (RB_UNLIKELY(!data->vstate)) {
773
- vstate_spill(data);
774
- }
775
- GET_STATE(data->vstate);
776
- state->depth = data->depth;
777
- VALUE tmp = rb_funcall(obj, i_to_json, 1, data->vstate);
778
- // no need to restore state->depth, vstate is just a temporary State
779
- return tmp;
780
- }
781
-
782
- static VALUE
783
- json_call_as_json(JSON_Generator_State *state, VALUE object, VALUE is_key)
784
- {
785
- VALUE proc_args[2] = {object, is_key};
786
- return rb_proc_call_with_block(state->as_json, 2, proc_args, Qnil);
787
- }
788
-
789
- static VALUE
790
- convert_string_subclass(VALUE key)
791
- {
792
- VALUE key_to_s = rb_funcall(key, i_to_s, 0);
793
-
794
- if (RB_UNLIKELY(!RB_TYPE_P(key_to_s, T_STRING))) {
795
- VALUE cname = rb_obj_class(key);
796
- rb_raise(rb_eTypeError,
797
- "can't convert %"PRIsVALUE" to %s (%"PRIsVALUE"#%s gives %"PRIsVALUE")",
798
- cname, "String", cname, "to_s", rb_obj_class(key_to_s));
799
- }
800
-
801
- return key_to_s;
802
- }
803
-
804
- static bool enc_utf8_compatible_p(int enc_idx)
805
- {
806
- if (enc_idx == usascii_encindex) return true;
807
- if (enc_idx == utf8_encindex) return true;
808
- return false;
809
- }
810
-
811
- static VALUE encode_json_string_try(VALUE str)
812
- {
813
- return rb_funcall(str, i_encode, 1, Encoding_UTF_8);
814
- }
815
-
816
- static VALUE encode_json_string_rescue(VALUE str, VALUE exception)
817
- {
818
- raise_generator_error_str(str, rb_funcall(exception, rb_intern("message"), 0));
819
- return Qundef;
820
- }
821
-
822
- static inline bool valid_json_string_p(VALUE str)
823
- {
824
- int coderange = rb_enc_str_coderange(str);
825
-
826
- if (RB_LIKELY(coderange == ENC_CODERANGE_7BIT)) {
827
- return true;
828
- }
829
-
830
- if (RB_LIKELY(coderange == ENC_CODERANGE_VALID)) {
831
- return enc_utf8_compatible_p(RB_ENCODING_GET_INLINED(str));
832
- }
833
-
834
- return false;
835
- }
836
-
837
- static inline VALUE ensure_valid_encoding(struct generate_json_data *data, VALUE str, bool as_json_called, bool is_key)
838
- {
839
- if (RB_LIKELY(valid_json_string_p(str))) {
840
- return str;
841
- }
842
-
843
- if (!as_json_called && data->state->strict && RTEST(data->state->as_json)) {
844
- VALUE coerced_str = json_call_as_json(data->state, str, Qfalse);
845
- if (coerced_str != str) {
846
- if (RB_TYPE_P(coerced_str, T_STRING)) {
847
- if (!valid_json_string_p(coerced_str)) {
848
- raise_generator_error(str, "source sequence is illegal/malformed utf-8");
849
- }
850
- } else {
851
- // as_json could return another type than T_STRING
852
- if (is_key) {
853
- raise_generator_error(coerced_str, "%"PRIsVALUE" not allowed as object key in JSON", CLASS_OF(coerced_str));
854
- }
855
- }
856
-
857
- return coerced_str;
858
- }
859
- }
860
-
861
- if (RB_ENCODING_GET_INLINED(str) == binary_encindex) {
862
- VALUE utf8_string = rb_enc_associate_index(rb_str_dup(str), utf8_encindex);
863
- switch (rb_enc_str_coderange(utf8_string)) {
864
- case ENC_CODERANGE_7BIT:
865
- return utf8_string;
866
- case ENC_CODERANGE_VALID:
867
- // For historical reason, we silently reinterpret binary strings as UTF-8 if it would work.
868
- // TODO: Raise in 3.0.0
869
- rb_warn("JSON.generate: UTF-8 string passed as BINARY, this will raise an encoding error in json 3.0");
870
- return utf8_string;
871
- break;
872
- }
873
- }
874
-
875
- return rb_rescue(encode_json_string_try, str, encode_json_string_rescue, str);
876
- }
877
-
878
- static void raw_generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
879
- {
880
- fbuffer_append_char(buffer, '"');
881
-
882
- long len;
883
- search_state search;
884
- search.buffer = buffer;
885
- RSTRING_GETMEM(obj, search.ptr, len);
886
- search.cursor = search.ptr;
887
- search.end = search.ptr + len;
888
-
889
- #ifdef HAVE_SIMD
890
- search.matches_mask = 0;
891
- search.has_matches = false;
892
- search.chunk_base = NULL;
893
- search.chunk_end = NULL;
894
- #endif /* HAVE_SIMD */
895
-
896
- switch (rb_enc_str_coderange(obj)) {
897
- case ENC_CODERANGE_7BIT:
898
- case ENC_CODERANGE_VALID:
899
- if (RB_UNLIKELY(data->state->ascii_only)) {
900
- convert_UTF8_to_ASCII_only_JSON(&search, data->state->script_safe ? script_safe_escape_table : ascii_only_escape_table);
901
- } else if (RB_UNLIKELY(data->state->script_safe)) {
902
- convert_UTF8_to_script_safe_JSON(&search);
903
- } else {
904
- convert_UTF8_to_JSON(&search);
905
- }
906
- break;
907
- default:
908
- raise_generator_error(obj, "source sequence is illegal/malformed utf-8");
909
- break;
910
- }
911
- fbuffer_append_char(buffer, '"');
912
- }
913
-
914
- static void generate_json_string(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
915
- {
916
- obj = ensure_valid_encoding(data, obj, false, false);
917
- raw_generate_json_string(buffer, data, obj);
918
- }
919
-
920
- struct hash_foreach_arg {
921
- VALUE hash;
922
- struct generate_json_data *data;
923
- int first_key_type;
924
- bool first;
925
- bool mixed_keys_encountered;
926
- };
927
-
928
- NOINLINE(static) void
929
- json_inspect_hash_with_mixed_keys(struct hash_foreach_arg *arg)
930
- {
931
- if (arg->mixed_keys_encountered) {
932
- return;
933
- }
934
- arg->mixed_keys_encountered = true;
935
-
936
- JSON_Generator_State *state = arg->data->state;
937
- if (state->on_duplicate_key != JSON_IGNORE) {
938
- VALUE do_raise = state->on_duplicate_key == JSON_RAISE ? Qtrue : Qfalse;
939
- rb_funcall(mJSON, rb_intern("on_mixed_keys_hash"), 2, arg->hash, do_raise);
940
- }
941
- }
942
-
943
- static int
944
- json_object_i(VALUE key, VALUE val, VALUE _arg)
945
- {
946
- struct hash_foreach_arg *arg = (struct hash_foreach_arg *)_arg;
947
- struct generate_json_data *data = arg->data;
948
-
949
- FBuffer *buffer = data->buffer;
950
- JSON_Generator_State *state = data->state;
951
-
952
- long depth = data->depth;
953
- int key_type = rb_type(key);
954
-
955
- if (arg->first) {
956
- arg->first = false;
957
- arg->first_key_type = key_type;
958
- }
959
- else {
960
- fbuffer_append_char(buffer, ',');
961
- }
962
-
963
- if (RB_UNLIKELY(data->state->object_nl)) {
964
- fbuffer_append_str(buffer, data->state->object_nl);
965
- }
966
- if (RB_UNLIKELY(data->state->indent)) {
967
- fbuffer_append_str_repeat(buffer, data->state->indent, depth);
968
- }
969
-
970
- VALUE key_to_s;
971
- bool as_json_called = false;
972
-
973
- start:
974
- switch (key_type) {
975
- case T_STRING:
976
- if (RB_UNLIKELY(arg->first_key_type != T_STRING)) {
977
- json_inspect_hash_with_mixed_keys(arg);
978
- }
979
-
980
- if (RB_LIKELY(RBASIC_CLASS(key) == rb_cString)) {
981
- key_to_s = key;
982
- } else {
983
- key_to_s = convert_string_subclass(key);
984
- }
985
- break;
986
- case T_SYMBOL:
987
- if (RB_UNLIKELY(arg->first_key_type != T_SYMBOL)) {
988
- json_inspect_hash_with_mixed_keys(arg);
989
- }
990
-
991
- key_to_s = rb_sym2str(key);
992
- break;
993
- default:
994
- if (data->state->strict) {
995
- if (RTEST(data->state->as_json) && !as_json_called) {
996
- key = json_call_as_json(data->state, key, Qtrue);
997
- key_type = rb_type(key);
998
- as_json_called = true;
999
- goto start;
1000
- } else {
1001
- raise_generator_error(key, "%"PRIsVALUE" not allowed as object key in JSON", CLASS_OF(key));
1002
- }
1003
- }
1004
- key_to_s = rb_convert_type(key, T_STRING, "String", "to_s");
1005
- break;
1006
- }
1007
-
1008
- key_to_s = ensure_valid_encoding(data, key_to_s, as_json_called, true);
1009
-
1010
- if (RB_LIKELY(RBASIC_CLASS(key_to_s) == rb_cString)) {
1011
- raw_generate_json_string(buffer, data, key_to_s);
1012
- } else {
1013
- generate_json(buffer, data, key_to_s);
1014
- }
1015
- if (RB_UNLIKELY(state->space_before)) fbuffer_append_str(buffer, data->state->space_before);
1016
- fbuffer_append_char(buffer, ':');
1017
- if (RB_UNLIKELY(state->space)) fbuffer_append_str(buffer, data->state->space);
1018
- generate_json(buffer, data, val);
1019
-
1020
- return ST_CONTINUE;
1021
- }
1022
-
1023
- static inline long increase_depth(struct generate_json_data *data)
1024
- {
1025
- JSON_Generator_State *state = data->state;
1026
- long depth = ++data->depth;
1027
- if (RB_UNLIKELY(depth > state->max_nesting && state->max_nesting)) {
1028
- rb_raise(eNestingError, "nesting of %ld is too deep. Did you try to serialize objects with circular references?", --data->depth);
1029
- }
1030
- return depth;
1031
- }
1032
-
1033
- static void generate_json_object(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1034
- {
1035
- long depth = increase_depth(data);
1036
-
1037
- if (RHASH_SIZE(obj) == 0) {
1038
- fbuffer_append(buffer, "{}", 2);
1039
- --data->depth;
1040
- return;
1041
- }
1042
-
1043
- fbuffer_append_char(buffer, '{');
1044
-
1045
- struct hash_foreach_arg arg = {
1046
- .hash = obj,
1047
- .data = data,
1048
- .first = true,
1049
- };
1050
- rb_hash_foreach(obj, json_object_i, (VALUE)&arg);
1051
-
1052
- depth = --data->depth;
1053
- if (RB_UNLIKELY(data->state->object_nl)) {
1054
- fbuffer_append_str(buffer, data->state->object_nl);
1055
- if (RB_UNLIKELY(data->state->indent)) {
1056
- fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1057
- }
1058
- }
1059
- fbuffer_append_char(buffer, '}');
1060
- }
1061
-
1062
- static void generate_json_array(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1063
- {
1064
- long depth = increase_depth(data);
1065
-
1066
- if (RARRAY_LEN(obj) == 0) {
1067
- fbuffer_append(buffer, "[]", 2);
1068
- --data->depth;
1069
- return;
1070
- }
1071
-
1072
- fbuffer_append_char(buffer, '[');
1073
- if (RB_UNLIKELY(data->state->array_nl)) fbuffer_append_str(buffer, data->state->array_nl);
1074
- for (int i = 0; i < RARRAY_LEN(obj); i++) {
1075
- if (i > 0) {
1076
- fbuffer_append_char(buffer, ',');
1077
- if (RB_UNLIKELY(data->state->array_nl)) fbuffer_append_str(buffer, data->state->array_nl);
1078
- }
1079
- if (RB_UNLIKELY(data->state->indent)) {
1080
- fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1081
- }
1082
- generate_json(buffer, data, RARRAY_AREF(obj, i));
1083
- }
1084
- data->depth = --depth;
1085
- if (RB_UNLIKELY(data->state->array_nl)) {
1086
- fbuffer_append_str(buffer, data->state->array_nl);
1087
- if (RB_UNLIKELY(data->state->indent)) {
1088
- fbuffer_append_str_repeat(buffer, data->state->indent, depth);
1089
- }
1090
- }
1091
- fbuffer_append_char(buffer, ']');
1092
- }
1093
-
1094
- static void generate_json_fallback(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1095
- {
1096
- VALUE tmp;
1097
- if (rb_respond_to(obj, i_to_json)) {
1098
- tmp = json_call_to_json(data, obj);
1099
- Check_Type(tmp, T_STRING);
1100
- fbuffer_append_str(buffer, tmp);
1101
- } else {
1102
- tmp = rb_funcall(obj, i_to_s, 0);
1103
- Check_Type(tmp, T_STRING);
1104
- generate_json_string(buffer, data, tmp);
1105
- }
1106
- }
1107
-
1108
- static inline void generate_json_symbol(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1109
- {
1110
- if (data->state->strict) {
1111
- generate_json_string(buffer, data, rb_sym2str(obj));
1112
- } else {
1113
- generate_json_fallback(buffer, data, obj);
1114
- }
1115
- }
1116
-
1117
- static void generate_json_null(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1118
- {
1119
- fbuffer_append(buffer, "null", 4);
1120
- }
1121
-
1122
- static void generate_json_false(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1123
- {
1124
- fbuffer_append(buffer, "false", 5);
1125
- }
1126
-
1127
- static void generate_json_true(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1128
- {
1129
- fbuffer_append(buffer, "true", 4);
1130
- }
1131
-
1132
- static void generate_json_fixnum(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1133
- {
1134
- fbuffer_append_long(buffer, FIX2LONG(obj));
1135
- }
1136
-
1137
- static void generate_json_bignum(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1138
- {
1139
- VALUE tmp = rb_funcall(obj, i_to_s, 0);
1140
- fbuffer_append_str(buffer, StringValue(tmp));
1141
- }
1142
-
1143
- static void generate_json_float(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1144
- {
1145
- double value = RFLOAT_VALUE(obj);
1146
- char allow_nan = data->state->allow_nan;
1147
- if (isinf(value) || isnan(value)) {
1148
- /* for NaN and Infinity values we either raise an error or rely on Float#to_s. */
1149
- if (!allow_nan) {
1150
- if (data->state->strict && data->state->as_json) {
1151
- VALUE casted_obj = json_call_as_json(data->state, obj, Qfalse);
1152
- if (casted_obj != obj) {
1153
- increase_depth(data);
1154
- generate_json(buffer, data, casted_obj);
1155
- data->depth--;
1156
- return;
1157
- }
1158
- }
1159
- raise_generator_error(obj, "%"PRIsVALUE" not allowed in JSON", rb_funcall(obj, i_to_s, 0));
1160
- }
1161
-
1162
- VALUE tmp = rb_funcall(obj, i_to_s, 0);
1163
- fbuffer_append_str(buffer, tmp);
1164
- return;
1165
- }
1166
-
1167
- /* This implementation writes directly into the buffer. We reserve
1168
- * the 32 characters that fpconv_dtoa states as its maximum.
1169
- */
1170
- fbuffer_inc_capa(buffer, 32);
1171
- char* d = buffer->ptr + buffer->len;
1172
- int len = fpconv_dtoa(value, d);
1173
- /* fpconv_dtoa converts a float to its shortest string representation,
1174
- * but it adds a ".0" if this is a plain integer.
1175
- */
1176
- fbuffer_consumed(buffer, len);
1177
- }
1178
-
1179
- static void generate_json_fragment(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1180
- {
1181
- VALUE fragment = RSTRUCT_GET(obj, 0);
1182
- Check_Type(fragment, T_STRING);
1183
- fbuffer_append_str(buffer, fragment);
1184
- }
1185
-
1186
- static inline void generate_json_general(FBuffer *buffer, struct generate_json_data *data, VALUE obj, bool fallback)
1187
- {
1188
- bool as_json_called = false;
1189
- start:
1190
- if (obj == Qnil) {
1191
- generate_json_null(buffer, data, obj);
1192
- } else if (obj == Qfalse) {
1193
- generate_json_false(buffer, data, obj);
1194
- } else if (obj == Qtrue) {
1195
- generate_json_true(buffer, data, obj);
1196
- } else if (RB_SPECIAL_CONST_P(obj)) {
1197
- if (RB_FIXNUM_P(obj)) {
1198
- generate_json_fixnum(buffer, data, obj);
1199
- } else if (RB_FLONUM_P(obj)) {
1200
- generate_json_float(buffer, data, obj);
1201
- } else if (RB_STATIC_SYM_P(obj)) {
1202
- generate_json_symbol(buffer, data, obj);
1203
- } else {
1204
- goto general;
1205
- }
1206
- } else {
1207
- VALUE klass = RBASIC_CLASS(obj);
1208
- switch (RB_BUILTIN_TYPE(obj)) {
1209
- case T_BIGNUM:
1210
- generate_json_bignum(buffer, data, obj);
1211
- break;
1212
- case T_HASH:
1213
- if (fallback && klass != rb_cHash) goto general;
1214
- generate_json_object(buffer, data, obj);
1215
- break;
1216
- case T_ARRAY:
1217
- if (fallback && klass != rb_cArray) goto general;
1218
- generate_json_array(buffer, data, obj);
1219
- break;
1220
- case T_STRING:
1221
- if (fallback && klass != rb_cString) goto general;
1222
-
1223
- if (RB_LIKELY(valid_json_string_p(obj))) {
1224
- raw_generate_json_string(buffer, data, obj);
1225
- } else if (as_json_called) {
1226
- raise_generator_error(obj, "source sequence is illegal/malformed utf-8");
1227
- } else {
1228
- obj = ensure_valid_encoding(data, obj, false, false);
1229
- as_json_called = true;
1230
- goto start;
1231
- }
1232
- break;
1233
- case T_SYMBOL:
1234
- generate_json_symbol(buffer, data, obj);
1235
- break;
1236
- case T_FLOAT:
1237
- if (fallback && klass != rb_cFloat) goto general;
1238
- generate_json_float(buffer, data, obj);
1239
- break;
1240
- case T_STRUCT:
1241
- if (klass != cFragment) goto general;
1242
- generate_json_fragment(buffer, data, obj);
1243
- break;
1244
- default:
1245
- general:
1246
- if (data->state->strict) {
1247
- if (RTEST(data->state->as_json) && !as_json_called) {
1248
- obj = json_call_as_json(data->state, obj, Qfalse);
1249
- as_json_called = true;
1250
- goto start;
1251
- } else {
1252
- raise_generator_error(obj, "%"PRIsVALUE" not allowed in JSON", CLASS_OF(obj));
1253
- }
1254
- } else {
1255
- generate_json_fallback(buffer, data, obj);
1256
- }
1257
- }
1258
- }
1259
- }
1260
-
1261
- static void generate_json(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1262
- {
1263
- generate_json_general(buffer, data, obj, true);
1264
- }
1265
-
1266
- static void generate_json_no_fallback(FBuffer *buffer, struct generate_json_data *data, VALUE obj)
1267
- {
1268
- generate_json_general(buffer, data, obj, false);
1269
- }
1270
-
1271
- static VALUE generate_json_try(VALUE d)
1272
- {
1273
- struct generate_json_data *data = (struct generate_json_data *)d;
1274
-
1275
- data->func(data->buffer, data, data->obj);
1276
-
1277
- return fbuffer_finalize(data->buffer);
1278
- }
1279
-
1280
- static VALUE generate_json_ensure(VALUE d)
1281
- {
1282
- struct generate_json_data *data = (struct generate_json_data *)d;
1283
- fbuffer_free(data->buffer);
1284
-
1285
- return Qundef;
1286
- }
1287
-
1288
- static inline VALUE cState_partial_generate(VALUE self, VALUE obj, generator_func func, VALUE io)
1289
- {
1290
- GET_STATE(self);
1291
-
1292
- char stack_buffer[FBUFFER_STACK_SIZE];
1293
- FBuffer buffer = {
1294
- .io = RTEST(io) ? io : Qfalse,
1295
- };
1296
- fbuffer_stack_init(&buffer, state->buffer_initial_length, stack_buffer, FBUFFER_STACK_SIZE);
1297
-
1298
- struct generate_json_data data = {
1299
- .buffer = &buffer,
1300
- .vstate = Qfalse, // don't use self as it may be frozen and its depth is mutated when calling to_json
1301
- .state = state,
1302
- .depth = state->depth,
1303
- .obj = obj,
1304
- .func = func
1305
- };
1306
- return rb_ensure(generate_json_try, (VALUE)&data, generate_json_ensure, (VALUE)&data);
1307
- }
1308
-
1309
- /* call-seq:
1310
- * generate(obj) -> String
1311
- * generate(obj, anIO) -> anIO
1312
- *
1313
- * Generates a valid JSON document from object +obj+ and returns the
1314
- * result. If no valid JSON document can be created this method raises a
1315
- * GeneratorError exception.
1316
- */
1317
- static VALUE cState_generate(int argc, VALUE *argv, VALUE self)
1318
- {
1319
- rb_check_arity(argc, 1, 2);
1320
- VALUE obj = argv[0];
1321
- VALUE io = argc > 1 ? argv[1] : Qnil;
1322
- return cState_partial_generate(self, obj, generate_json, io);
1323
- }
1324
-
1325
- /* :nodoc: */
1326
- static VALUE cState_generate_no_fallback(int argc, VALUE *argv, VALUE self)
1327
- {
1328
- rb_check_arity(argc, 1, 2);
1329
- VALUE obj = argv[0];
1330
- VALUE io = argc > 1 ? argv[1] : Qnil;
1331
- return cState_partial_generate(self, obj, generate_json_no_fallback, io);
1332
- }
1333
-
1334
- static VALUE cState_initialize(int argc, VALUE *argv, VALUE self)
1335
- {
1336
- rb_warn("The json gem extension was loaded with the stdlib ruby code. You should upgrade rubygems with `gem update --system`");
1337
- return self;
1338
- }
1339
-
1340
- /*
1341
- * call-seq: initialize_copy(orig)
1342
- *
1343
- * Initializes this object from orig if it can be duplicated/cloned and returns
1344
- * it.
1345
- */
1346
- static VALUE cState_init_copy(VALUE obj, VALUE orig)
1347
- {
1348
- JSON_Generator_State *objState, *origState;
1349
-
1350
- if (obj == orig) return obj;
1351
- GET_STATE_TO(obj, objState);
1352
- GET_STATE_TO(orig, origState);
1353
- if (!objState) rb_raise(rb_eArgError, "unallocated JSON::State");
1354
-
1355
- MEMCPY(objState, origState, JSON_Generator_State, 1);
1356
- objState->indent = origState->indent;
1357
- objState->space = origState->space;
1358
- objState->space_before = origState->space_before;
1359
- objState->object_nl = origState->object_nl;
1360
- objState->array_nl = origState->array_nl;
1361
- objState->as_json = origState->as_json;
1362
- return obj;
1363
- }
1364
-
1365
- /*
1366
- * call-seq: from_state(opts)
1367
- *
1368
- * Creates a State object from _opts_, which ought to be Hash to create a
1369
- * new State instance configured by _opts_, something else to create an
1370
- * unconfigured instance. If _opts_ is a State object, it is just returned.
1371
- */
1372
- static VALUE cState_from_state_s(VALUE self, VALUE opts)
1373
- {
1374
- if (rb_obj_is_kind_of(opts, self)) {
1375
- return opts;
1376
- } else if (rb_obj_is_kind_of(opts, rb_cHash)) {
1377
- return rb_funcall(self, i_new, 1, opts);
1378
- } else {
1379
- return rb_class_new_instance(0, NULL, cState);
1380
- }
1381
- }
1382
-
1383
- /*
1384
- * call-seq: indent()
1385
- *
1386
- * Returns the string that is used to indent levels in the JSON text.
1387
- */
1388
- static VALUE cState_indent(VALUE self)
1389
- {
1390
- GET_STATE(self);
1391
- return state->indent ? state->indent : rb_str_freeze(rb_utf8_str_new("", 0));
1392
- }
1393
-
1394
- static VALUE string_config(VALUE config)
1395
- {
1396
- if (RTEST(config)) {
1397
- Check_Type(config, T_STRING);
1398
- if (RSTRING_LEN(config)) {
1399
- return rb_str_new_frozen(config);
1400
- }
1401
- }
1402
- return Qfalse;
1403
- }
1404
-
1405
- /*
1406
- * call-seq: indent=(indent)
1407
- *
1408
- * Sets the string that is used to indent levels in the JSON text.
1409
- */
1410
- static VALUE cState_indent_set(VALUE self, VALUE indent)
1411
- {
1412
- rb_check_frozen(self);
1413
- GET_STATE(self);
1414
- RB_OBJ_WRITE(self, &state->indent, string_config(indent));
1415
- return Qnil;
1416
- }
1417
-
1418
- /*
1419
- * call-seq: space()
1420
- *
1421
- * Returns the string that is used to insert a space between the tokens in a JSON
1422
- * string.
1423
- */
1424
- static VALUE cState_space(VALUE self)
1425
- {
1426
- GET_STATE(self);
1427
- return state->space ? state->space : rb_str_freeze(rb_utf8_str_new("", 0));
1428
- }
1429
-
1430
- /*
1431
- * call-seq: space=(space)
1432
- *
1433
- * Sets _space_ to the string that is used to insert a space between the tokens in a JSON
1434
- * string.
1435
- */
1436
- static VALUE cState_space_set(VALUE self, VALUE space)
1437
- {
1438
- rb_check_frozen(self);
1439
- GET_STATE(self);
1440
- RB_OBJ_WRITE(self, &state->space, string_config(space));
1441
- return Qnil;
1442
- }
1443
-
1444
- /*
1445
- * call-seq: space_before()
1446
- *
1447
- * Returns the string that is used to insert a space before the ':' in JSON objects.
1448
- */
1449
- static VALUE cState_space_before(VALUE self)
1450
- {
1451
- GET_STATE(self);
1452
- return state->space_before ? state->space_before : rb_str_freeze(rb_utf8_str_new("", 0));
1453
- }
1454
-
1455
- /*
1456
- * call-seq: space_before=(space_before)
1457
- *
1458
- * Sets the string that is used to insert a space before the ':' in JSON objects.
1459
- */
1460
- static VALUE cState_space_before_set(VALUE self, VALUE space_before)
1461
- {
1462
- rb_check_frozen(self);
1463
- GET_STATE(self);
1464
- RB_OBJ_WRITE(self, &state->space_before, string_config(space_before));
1465
- return Qnil;
1466
- }
1467
-
1468
- /*
1469
- * call-seq: object_nl()
1470
- *
1471
- * This string is put at the end of a line that holds a JSON object (or
1472
- * Hash).
1473
- */
1474
- static VALUE cState_object_nl(VALUE self)
1475
- {
1476
- GET_STATE(self);
1477
- return state->object_nl ? state->object_nl : rb_str_freeze(rb_utf8_str_new("", 0));
1478
- }
1479
-
1480
- /*
1481
- * call-seq: object_nl=(object_nl)
1482
- *
1483
- * This string is put at the end of a line that holds a JSON object (or
1484
- * Hash).
1485
- */
1486
- static VALUE cState_object_nl_set(VALUE self, VALUE object_nl)
1487
- {
1488
- rb_check_frozen(self);
1489
- GET_STATE(self);
1490
- RB_OBJ_WRITE(self, &state->object_nl, string_config(object_nl));
1491
- return Qnil;
1492
- }
1493
-
1494
- /*
1495
- * call-seq: array_nl()
1496
- *
1497
- * This string is put at the end of a line that holds a JSON array.
1498
- */
1499
- static VALUE cState_array_nl(VALUE self)
1500
- {
1501
- GET_STATE(self);
1502
- return state->array_nl ? state->array_nl : rb_str_freeze(rb_utf8_str_new("", 0));
1503
- }
1504
-
1505
- /*
1506
- * call-seq: array_nl=(array_nl)
1507
- *
1508
- * This string is put at the end of a line that holds a JSON array.
1509
- */
1510
- static VALUE cState_array_nl_set(VALUE self, VALUE array_nl)
1511
- {
1512
- rb_check_frozen(self);
1513
- GET_STATE(self);
1514
- RB_OBJ_WRITE(self, &state->array_nl, string_config(array_nl));
1515
- return Qnil;
1516
- }
1517
-
1518
- /*
1519
- * call-seq: as_json()
1520
- *
1521
- * This string is put at the end of a line that holds a JSON array.
1522
- */
1523
- static VALUE cState_as_json(VALUE self)
1524
- {
1525
- GET_STATE(self);
1526
- return state->as_json;
1527
- }
1528
-
1529
- /*
1530
- * call-seq: as_json=(as_json)
1531
- *
1532
- * This string is put at the end of a line that holds a JSON array.
1533
- */
1534
- static VALUE cState_as_json_set(VALUE self, VALUE as_json)
1535
- {
1536
- rb_check_frozen(self);
1537
- GET_STATE(self);
1538
- RB_OBJ_WRITE(self, &state->as_json, rb_convert_type(as_json, T_DATA, "Proc", "to_proc"));
1539
- return Qnil;
1540
- }
1541
-
1542
- /*
1543
- * call-seq: check_circular?
1544
- *
1545
- * Returns true, if circular data structures should be checked,
1546
- * otherwise returns false.
1547
- */
1548
- static VALUE cState_check_circular_p(VALUE self)
1549
- {
1550
- GET_STATE(self);
1551
- return state->max_nesting ? Qtrue : Qfalse;
1552
- }
1553
-
1554
- /*
1555
- * call-seq: max_nesting
1556
- *
1557
- * This integer returns the maximum level of data structure nesting in
1558
- * the generated JSON, max_nesting = 0 if no maximum is checked.
1559
- */
1560
- static VALUE cState_max_nesting(VALUE self)
1561
- {
1562
- GET_STATE(self);
1563
- return LONG2FIX(state->max_nesting);
1564
- }
1565
-
1566
- static long long_config(VALUE num)
1567
- {
1568
- return RTEST(num) ? FIX2LONG(num) : 0;
1569
- }
1570
-
1571
- // depth must never be negative; reject early with a clear error.
1572
- static long depth_config(VALUE num)
1573
- {
1574
- if (!RTEST(num)) return 0;
1575
- long d = NUM2LONG(num);
1576
- if (RB_UNLIKELY(d < 0)) {
1577
- rb_raise(rb_eArgError, "depth must be >= 0 (got %ld)", d);
1578
- }
1579
- return d;
1580
- }
1581
-
1582
- /*
1583
- * call-seq: max_nesting=(depth)
1584
- *
1585
- * This sets the maximum level of data structure nesting in the generated JSON
1586
- * to the integer depth, max_nesting = 0 if no maximum should be checked.
1587
- */
1588
- static VALUE cState_max_nesting_set(VALUE self, VALUE depth)
1589
- {
1590
- rb_check_frozen(self);
1591
- GET_STATE(self);
1592
- state->max_nesting = long_config(depth);
1593
- return Qnil;
1594
- }
1595
-
1596
- /*
1597
- * call-seq: script_safe
1598
- *
1599
- * If this boolean is true, the forward slashes will be escaped in
1600
- * the json output.
1601
- */
1602
- static VALUE cState_script_safe(VALUE self)
1603
- {
1604
- GET_STATE(self);
1605
- return state->script_safe ? Qtrue : Qfalse;
1606
- }
1607
-
1608
- /*
1609
- * call-seq: script_safe=(enable)
1610
- *
1611
- * This sets whether or not the forward slashes will be escaped in
1612
- * the json output.
1613
- */
1614
- static VALUE cState_script_safe_set(VALUE self, VALUE enable)
1615
- {
1616
- rb_check_frozen(self);
1617
- GET_STATE(self);
1618
- state->script_safe = RTEST(enable);
1619
- return Qnil;
1620
- }
1621
-
1622
- /*
1623
- * call-seq: strict
1624
- *
1625
- * If this boolean is false, types unsupported by the JSON format will
1626
- * be serialized as strings.
1627
- * If this boolean is true, types unsupported by the JSON format will
1628
- * raise a JSON::GeneratorError.
1629
- */
1630
- static VALUE cState_strict(VALUE self)
1631
- {
1632
- GET_STATE(self);
1633
- return state->strict ? Qtrue : Qfalse;
1634
- }
1635
-
1636
- /*
1637
- * call-seq: strict=(enable)
1638
- *
1639
- * This sets whether or not to serialize types unsupported by the
1640
- * JSON format as strings.
1641
- * If this boolean is false, types unsupported by the JSON format will
1642
- * be serialized as strings.
1643
- * If this boolean is true, types unsupported by the JSON format will
1644
- * raise a JSON::GeneratorError.
1645
- */
1646
- static VALUE cState_strict_set(VALUE self, VALUE enable)
1647
- {
1648
- rb_check_frozen(self);
1649
- GET_STATE(self);
1650
- state->strict = RTEST(enable);
1651
- return Qnil;
1652
- }
1653
-
1654
- /*
1655
- * call-seq: allow_nan?
1656
- *
1657
- * Returns true, if NaN, Infinity, and -Infinity should be generated, otherwise
1658
- * returns false.
1659
- */
1660
- static VALUE cState_allow_nan_p(VALUE self)
1661
- {
1662
- GET_STATE(self);
1663
- return state->allow_nan ? Qtrue : Qfalse;
1664
- }
1665
-
1666
- /*
1667
- * call-seq: allow_nan=(enable)
1668
- *
1669
- * This sets whether or not to serialize NaN, Infinity, and -Infinity
1670
- */
1671
- static VALUE cState_allow_nan_set(VALUE self, VALUE enable)
1672
- {
1673
- rb_check_frozen(self);
1674
- GET_STATE(self);
1675
- state->allow_nan = RTEST(enable);
1676
- return Qnil;
1677
- }
1678
-
1679
- /*
1680
- * call-seq: ascii_only?
1681
- *
1682
- * Returns true, if only ASCII characters should be generated. Otherwise
1683
- * returns false.
1684
- */
1685
- static VALUE cState_ascii_only_p(VALUE self)
1686
- {
1687
- GET_STATE(self);
1688
- return state->ascii_only ? Qtrue : Qfalse;
1689
- }
1690
-
1691
- /*
1692
- * call-seq: ascii_only=(enable)
1693
- *
1694
- * This sets whether only ASCII characters should be generated.
1695
- */
1696
- static VALUE cState_ascii_only_set(VALUE self, VALUE enable)
1697
- {
1698
- rb_check_frozen(self);
1699
- GET_STATE(self);
1700
- state->ascii_only = RTEST(enable);
1701
- return Qnil;
1702
- }
1703
-
1704
- static VALUE cState_allow_duplicate_key_p(VALUE self)
1705
- {
1706
- GET_STATE(self);
1707
- switch (state->on_duplicate_key) {
1708
- case JSON_IGNORE:
1709
- return Qtrue;
1710
- case JSON_DEPRECATED:
1711
- return Qnil;
1712
- default:
1713
- return Qfalse;
1714
- }
1715
- }
1716
-
1717
- /*
1718
- * call-seq: depth
1719
- *
1720
- * This integer returns the current depth of data structure nesting.
1721
- */
1722
- static VALUE cState_depth(VALUE self)
1723
- {
1724
- GET_STATE(self);
1725
- return LONG2FIX(state->depth);
1726
- }
1727
-
1728
- /*
1729
- * call-seq: depth=(depth)
1730
- *
1731
- * This sets the maximum level of data structure nesting in the generated JSON
1732
- * to the integer depth, max_nesting = 0 if no maximum should be checked.
1733
- */
1734
- static VALUE cState_depth_set(VALUE self, VALUE depth)
1735
- {
1736
- rb_check_frozen(self);
1737
- GET_STATE(self);
1738
- state->depth = depth_config(depth);
1739
- return Qnil;
1740
- }
1741
-
1742
- /*
1743
- * call-seq: buffer_initial_length
1744
- *
1745
- * This integer returns the current initial length of the buffer.
1746
- */
1747
- static VALUE cState_buffer_initial_length(VALUE self)
1748
- {
1749
- GET_STATE(self);
1750
- return LONG2FIX(state->buffer_initial_length);
1751
- }
1752
-
1753
- static void buffer_initial_length_set(JSON_Generator_State *state, VALUE buffer_initial_length)
1754
- {
1755
- Check_Type(buffer_initial_length, T_FIXNUM);
1756
- long initial_length = FIX2LONG(buffer_initial_length);
1757
- if (initial_length > 0) {
1758
- state->buffer_initial_length = initial_length;
1759
- }
1760
- }
1761
-
1762
- /*
1763
- * call-seq: buffer_initial_length=(length)
1764
- *
1765
- * This sets the initial length of the buffer to +length+, if +length+ > 0,
1766
- * otherwise its value isn't changed.
1767
- */
1768
- static VALUE cState_buffer_initial_length_set(VALUE self, VALUE buffer_initial_length)
1769
- {
1770
- rb_check_frozen(self);
1771
- GET_STATE(self);
1772
- buffer_initial_length_set(state, buffer_initial_length);
1773
- return Qnil;
1774
- }
1775
-
1776
- struct configure_state_data {
1777
- JSON_Generator_State *state;
1778
- VALUE vstate; // Ruby object that owns the state, or Qfalse if stack-allocated
1779
- };
1780
-
1781
- static inline void state_write_value(struct configure_state_data *data, VALUE *field, VALUE value)
1782
- {
1783
- if (RTEST(data->vstate)) {
1784
- RB_OBJ_WRITE(data->vstate, field, value);
1785
- } else {
1786
- *field = value;
1787
- }
1788
- }
1789
-
1790
- static int configure_state_i(VALUE key, VALUE val, VALUE _arg)
1791
- {
1792
- struct configure_state_data *data = (struct configure_state_data *)_arg;
1793
- JSON_Generator_State *state = data->state;
1794
-
1795
- if (key == sym_indent) { state_write_value(data, &state->indent, string_config(val)); }
1796
- else if (key == sym_space) { state_write_value(data, &state->space, string_config(val)); }
1797
- else if (key == sym_space_before) { state_write_value(data, &state->space_before, string_config(val)); }
1798
- else if (key == sym_object_nl) { state_write_value(data, &state->object_nl, string_config(val)); }
1799
- else if (key == sym_array_nl) { state_write_value(data, &state->array_nl, string_config(val)); }
1800
- else if (key == sym_max_nesting) { state->max_nesting = long_config(val); }
1801
- else if (key == sym_allow_nan) { state->allow_nan = RTEST(val); }
1802
- else if (key == sym_ascii_only) { state->ascii_only = RTEST(val); }
1803
- else if (key == sym_depth) { state->depth = depth_config(val); }
1804
- else if (key == sym_buffer_initial_length) { buffer_initial_length_set(state, val); }
1805
- else if (key == sym_script_safe) { state->script_safe = RTEST(val); }
1806
- else if (key == sym_escape_slash) { state->script_safe = RTEST(val); }
1807
- else if (key == sym_strict) { state->strict = RTEST(val); }
1808
- else if (key == sym_allow_duplicate_key) { state->on_duplicate_key = RTEST(val) ? JSON_IGNORE : JSON_RAISE; }
1809
- else if (key == sym_as_json) {
1810
- VALUE proc = RTEST(val) ? rb_convert_type(val, T_DATA, "Proc", "to_proc") : Qfalse;
1811
- state->as_json_single_arg = proc && rb_proc_arity(proc) == 1;
1812
- state_write_value(data, &state->as_json, proc);
1813
- }
1814
- return ST_CONTINUE;
1815
- }
1816
-
1817
- static void configure_state(JSON_Generator_State *state, VALUE vstate, VALUE config)
1818
- {
1819
- if (!RTEST(config)) return;
1820
-
1821
- Check_Type(config, T_HASH);
1822
-
1823
- if (!RHASH_SIZE(config)) return;
1824
-
1825
- struct configure_state_data data = {
1826
- .state = state,
1827
- .vstate = vstate
1828
- };
1829
-
1830
- // We assume in most cases few keys are set so it's faster to go over
1831
- // the provided keys than to check all possible keys.
1832
- rb_hash_foreach(config, configure_state_i, (VALUE)&data);
1833
- }
1834
-
1835
- static VALUE cState_configure(VALUE self, VALUE opts)
1836
- {
1837
- rb_check_frozen(self);
1838
- GET_STATE(self);
1839
- configure_state(state, self, opts);
1840
- return self;
1841
- }
1842
-
1843
- static VALUE cState_m_do_generate(VALUE klass, VALUE obj, VALUE opts, VALUE io, generator_func func)
1844
- {
1845
- JSON_Generator_State state = {0};
1846
- state_init(&state);
1847
- configure_state(&state, Qfalse, opts);
1848
-
1849
- char stack_buffer[FBUFFER_STACK_SIZE];
1850
- FBuffer buffer = {
1851
- .io = RTEST(io) ? io : Qfalse,
1852
- };
1853
- fbuffer_stack_init(&buffer, state.buffer_initial_length, stack_buffer, FBUFFER_STACK_SIZE);
1854
-
1855
- struct generate_json_data data = {
1856
- .buffer = &buffer,
1857
- .vstate = Qfalse,
1858
- .state = &state,
1859
- .depth = state.depth,
1860
- .obj = obj,
1861
- .func = func,
1862
- };
1863
- return rb_ensure(generate_json_try, (VALUE)&data, generate_json_ensure, (VALUE)&data);
1864
- }
1865
-
1866
- static VALUE cState_m_generate(VALUE klass, VALUE obj, VALUE opts, VALUE io)
1867
- {
1868
- return cState_m_do_generate(klass, obj, opts, io, generate_json);
1869
- }
1870
-
1871
- static VALUE cState_m_generate_no_fallback(VALUE klass, VALUE obj, VALUE opts, VALUE io)
1872
- {
1873
- return cState_m_do_generate(klass, obj, opts, io, generate_json_no_fallback);
1874
- }
1875
-
1876
- void Init_generator(void)
1877
- {
1878
- #ifdef HAVE_RB_EXT_RACTOR_SAFE
1879
- rb_ext_ractor_safe(true);
1880
- #endif
1881
-
1882
- #undef rb_intern
1883
- rb_require("json/common");
1884
-
1885
- mJSON = rb_define_module("JSON");
1886
-
1887
- rb_global_variable(&cFragment);
1888
- cFragment = rb_const_get(mJSON, rb_intern("Fragment"));
1889
-
1890
- VALUE mExt = rb_define_module_under(mJSON, "Ext");
1891
- VALUE mGenerator = rb_define_module_under(mExt, "Generator");
1892
-
1893
- rb_global_variable(&eGeneratorError);
1894
- eGeneratorError = rb_path2class("JSON::GeneratorError");
1895
-
1896
- rb_global_variable(&eNestingError);
1897
- eNestingError = rb_path2class("JSON::NestingError");
1898
-
1899
- cState = rb_define_class_under(mGenerator, "State", rb_cObject);
1900
- rb_define_alloc_func(cState, cState_s_allocate);
1901
- rb_define_singleton_method(cState, "from_state", cState_from_state_s, 1);
1902
- rb_define_method(cState, "initialize", cState_initialize, -1);
1903
- rb_define_alias(cState, "initialize", "initialize"); // avoid method redefinition warnings
1904
- rb_define_private_method(cState, "_configure", cState_configure, 1);
1905
-
1906
- rb_define_method(cState, "initialize_copy", cState_init_copy, 1);
1907
- rb_define_method(cState, "indent", cState_indent, 0);
1908
- rb_define_method(cState, "indent=", cState_indent_set, 1);
1909
- rb_define_method(cState, "space", cState_space, 0);
1910
- rb_define_method(cState, "space=", cState_space_set, 1);
1911
- rb_define_method(cState, "space_before", cState_space_before, 0);
1912
- rb_define_method(cState, "space_before=", cState_space_before_set, 1);
1913
- rb_define_method(cState, "object_nl", cState_object_nl, 0);
1914
- rb_define_method(cState, "object_nl=", cState_object_nl_set, 1);
1915
- rb_define_method(cState, "array_nl", cState_array_nl, 0);
1916
- rb_define_method(cState, "array_nl=", cState_array_nl_set, 1);
1917
- rb_define_method(cState, "as_json", cState_as_json, 0);
1918
- rb_define_method(cState, "as_json=", cState_as_json_set, 1);
1919
- rb_define_method(cState, "max_nesting", cState_max_nesting, 0);
1920
- rb_define_method(cState, "max_nesting=", cState_max_nesting_set, 1);
1921
- rb_define_method(cState, "script_safe", cState_script_safe, 0);
1922
- rb_define_method(cState, "script_safe?", cState_script_safe, 0);
1923
- rb_define_method(cState, "script_safe=", cState_script_safe_set, 1);
1924
- rb_define_alias(cState, "escape_slash", "script_safe");
1925
- rb_define_alias(cState, "escape_slash?", "script_safe?");
1926
- rb_define_alias(cState, "escape_slash=", "script_safe=");
1927
- rb_define_method(cState, "strict", cState_strict, 0);
1928
- rb_define_method(cState, "strict?", cState_strict, 0);
1929
- rb_define_method(cState, "strict=", cState_strict_set, 1);
1930
- rb_define_method(cState, "check_circular?", cState_check_circular_p, 0);
1931
- rb_define_method(cState, "allow_nan?", cState_allow_nan_p, 0);
1932
- rb_define_method(cState, "allow_nan=", cState_allow_nan_set, 1);
1933
- rb_define_method(cState, "ascii_only?", cState_ascii_only_p, 0);
1934
- rb_define_method(cState, "ascii_only=", cState_ascii_only_set, 1);
1935
- rb_define_method(cState, "depth", cState_depth, 0);
1936
- rb_define_method(cState, "depth=", cState_depth_set, 1);
1937
- rb_define_method(cState, "buffer_initial_length", cState_buffer_initial_length, 0);
1938
- rb_define_method(cState, "buffer_initial_length=", cState_buffer_initial_length_set, 1);
1939
- rb_define_method(cState, "generate", cState_generate, -1);
1940
- rb_define_method(cState, "_generate_no_fallback", cState_generate_no_fallback, -1);
1941
-
1942
- rb_define_private_method(cState, "allow_duplicate_key?", cState_allow_duplicate_key_p, 0);
1943
-
1944
- rb_define_singleton_method(cState, "generate", cState_m_generate, 3);
1945
- rb_define_singleton_method(cState, "_generate_no_fallback", cState_m_generate_no_fallback, 3);
1946
-
1947
- rb_global_variable(&Encoding_UTF_8);
1948
- Encoding_UTF_8 = rb_const_get(rb_path2class("Encoding"), rb_intern("UTF_8"));
1949
-
1950
- i_to_s = rb_intern("to_s");
1951
- i_to_json = rb_intern("to_json");
1952
- i_new = rb_intern("new");
1953
- i_encode = rb_intern("encode");
1954
-
1955
- sym_indent = ID2SYM(rb_intern("indent"));
1956
- sym_space = ID2SYM(rb_intern("space"));
1957
- sym_space_before = ID2SYM(rb_intern("space_before"));
1958
- sym_object_nl = ID2SYM(rb_intern("object_nl"));
1959
- sym_array_nl = ID2SYM(rb_intern("array_nl"));
1960
- sym_max_nesting = ID2SYM(rb_intern("max_nesting"));
1961
- sym_allow_nan = ID2SYM(rb_intern("allow_nan"));
1962
- sym_ascii_only = ID2SYM(rb_intern("ascii_only"));
1963
- sym_depth = ID2SYM(rb_intern("depth"));
1964
- sym_buffer_initial_length = ID2SYM(rb_intern("buffer_initial_length"));
1965
- sym_script_safe = ID2SYM(rb_intern("script_safe"));
1966
- sym_escape_slash = ID2SYM(rb_intern("escape_slash"));
1967
- sym_strict = ID2SYM(rb_intern("strict"));
1968
- sym_as_json = ID2SYM(rb_intern("as_json"));
1969
- sym_allow_duplicate_key = ID2SYM(rb_intern("allow_duplicate_key"));
1970
-
1971
- usascii_encindex = rb_usascii_encindex();
1972
- utf8_encindex = rb_utf8_encindex();
1973
- binary_encindex = rb_ascii8bit_encindex();
1974
-
1975
- rb_require("json/ext/generator/state");
1976
-
1977
- simd_impl = find_simd_implementation();
1978
- }