siteimprove_api_client 1.0.2 → 1.0.3

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 (1465) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +13 -13
  5. data/lib/siteimprove_api_client/version.rb +1 -1
  6. data/vendor/bundle/ruby/3.2.0/cache/json-2.12.2.gem +0 -0
  7. data/vendor/bundle/ruby/3.2.0/cache/rake-13.3.0.gem +0 -0
  8. data/vendor/bundle/ruby/3.2.0/cache/rspec-3.13.1.gem +0 -0
  9. data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.13.4.gem +0 -0
  10. data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.13.5.gem +0 -0
  11. data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.13.5.gem +0 -0
  12. data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.13.4.gem +0 -0
  13. data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.76.2.gem +0 -0
  14. data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.45.1.gem +0 -0
  15. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/gem_make.out +23 -0
  16. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/json/ext/generator.so +0 -0
  17. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/json/ext/parser.so +0 -0
  18. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/CHANGES.md +646 -0
  19. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/README.md +281 -0
  20. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/fbuffer/fbuffer.h +270 -0
  21. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/generator/extconf.rb +40 -0
  22. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/generator/generator.c +2188 -0
  23. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/parser/parser.c +1416 -0
  24. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/vendor/fpconv.c +479 -0
  25. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/common.rb +1104 -0
  26. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext/generator.so +0 -0
  27. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext/parser.so +0 -0
  28. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext.rb +45 -0
  29. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/version.rb +5 -0
  30. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/History.rdoc +2454 -0
  31. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/README.rdoc +155 -0
  32. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/application.rb +854 -0
  33. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/clean.rb +78 -0
  34. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/cpu_counter.rb +122 -0
  35. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/dsl_definition.rb +196 -0
  36. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/ext/string.rb +176 -0
  37. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_creation_task.rb +25 -0
  38. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_list.rb +435 -0
  39. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_task.rb +58 -0
  40. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_utils_ext.rb +134 -0
  41. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/packagetask.rb +222 -0
  42. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/phony.rb +16 -0
  43. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/rake_test_loader.rb +27 -0
  44. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task.rb +434 -0
  45. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task_arguments.rb +113 -0
  46. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task_manager.rb +331 -0
  47. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/tasklib.rb +12 -0
  48. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/testtask.rb +189 -0
  49. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/thread_history_display.rb +49 -0
  50. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/thread_pool.rb +163 -0
  51. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/version.rb +10 -0
  52. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake.rb +68 -0
  53. data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/rake.gemspec +101 -0
  54. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.1/lib/rspec/version.rb +5 -0
  55. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/Changelog.md +2432 -0
  56. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/example_group.rb +912 -0
  57. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/version.rb +9 -0
  58. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/Changelog.md +1366 -0
  59. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/version.rb +8 -0
  60. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/Changelog.md +1329 -0
  61. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/lib/rspec/mocks/message_expectation.rb +856 -0
  62. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/lib/rspec/mocks/version.rb +9 -0
  63. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.4/Changelog.md +420 -0
  64. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.4/lib/rspec/support/version.rb +9 -0
  65. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/README.md +257 -0
  66. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/config/default.yml +6036 -0
  67. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/config/obsoletion.yml +243 -0
  68. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/autocorrect_logic.rb +159 -0
  69. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/bundler/ordered_gems.rb +70 -0
  70. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/gemspec/duplicated_assignment.rb +133 -0
  71. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/gemspec/ordered_dependencies.rb +101 -0
  72. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +231 -0
  73. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/class_structure.rb +381 -0
  74. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +241 -0
  75. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/first_argument_indentation.rb +282 -0
  76. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/space_before_brackets.rb +47 -0
  77. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/ambiguous_range.rb +113 -0
  78. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/duplicate_methods.rb +325 -0
  79. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/empty_interpolation.rb +31 -0
  80. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
  81. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/identity_comparison.rb +54 -0
  82. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/literal_as_condition.rb +265 -0
  83. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/safe_navigation_chain.rb +116 -0
  84. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +116 -0
  85. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_access_modifier.rb +313 -0
  86. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_default_value_argument.rb +90 -0
  87. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_or.rb +98 -0
  88. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/metrics/abc_size.rb +56 -0
  89. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/mixin/frozen_string_literal.rb +99 -0
  90. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/mixin/ordered_gem_node.rb +66 -0
  91. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/naming/predicate_method.rb +245 -0
  92. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  93. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/access_modifier_declarations.rb +365 -0
  94. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/command_literal.rb +181 -0
  95. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/conditional_assignment.rb +676 -0
  96. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/def_with_parentheses.rb +70 -0
  97. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +100 -0
  98. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/if_unless_modifier.rb +313 -0
  99. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +44 -0
  100. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/it_block_parameter.rb +119 -0
  101. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/map_to_hash.rb +92 -0
  102. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +261 -0
  103. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/min_max_comparison.rb +91 -0
  104. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_array_flatten.rb +50 -0
  105. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_format.rb +262 -0
  106. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_parentheses.rb +339 -0
  107. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_self.rb +212 -0
  108. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/regexp_literal.rb +231 -0
  109. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/safe_navigation.rb +408 -0
  110. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
  111. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/team.rb +290 -0
  112. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/variable_force/assignment.rb +156 -0
  113. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/rspec/expect_offense.rb +354 -0
  114. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/version.rb +160 -0
  115. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop.rb +819 -0
  116. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/node.rb +755 -0
  117. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/node_pattern/compiler/debug.rb +163 -0
  118. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/processed_source.rb +412 -0
  119. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/version.rb +9 -0
  120. data/vendor/bundle/ruby/3.2.0/specifications/json-2.12.2.gemspec +0 -0
  121. data/vendor/bundle/ruby/3.2.0/specifications/rake-13.3.0.gemspec +26 -0
  122. data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.13.1.gemspec +31 -0
  123. data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.13.4.gemspec +31 -0
  124. data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.13.5.gemspec +29 -0
  125. data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.13.5.gemspec +29 -0
  126. data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.13.4.gemspec +29 -0
  127. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.76.2.gemspec +39 -0
  128. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.45.1.gemspec +29 -0
  129. metadata +1342 -1337
  130. data/vendor/bundle/ruby/3.2.0/cache/json-2.12.0.gem +0 -0
  131. data/vendor/bundle/ruby/3.2.0/cache/rake-13.2.1.gem +0 -0
  132. data/vendor/bundle/ruby/3.2.0/cache/rspec-3.13.0.gem +0 -0
  133. data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.13.3.gem +0 -0
  134. data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.13.4.gem +0 -0
  135. data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.13.4.gem +0 -0
  136. data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.13.3.gem +0 -0
  137. data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.75.6.gem +0 -0
  138. data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.44.1.gem +0 -0
  139. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/gem_make.out +0 -23
  140. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/json/ext/generator.so +0 -0
  141. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/json/ext/parser.so +0 -0
  142. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/CHANGES.md +0 -637
  143. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/README.md +0 -268
  144. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/fbuffer/fbuffer.h +0 -236
  145. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/generator/extconf.rb +0 -39
  146. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/generator/generator.c +0 -2189
  147. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/parser/parser.c +0 -1404
  148. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/vendor/fpconv.c +0 -479
  149. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/common.rb +0 -1104
  150. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext/generator.so +0 -0
  151. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext/parser.so +0 -0
  152. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext.rb +0 -45
  153. data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/version.rb +0 -5
  154. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/History.rdoc +0 -2403
  155. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/README.rdoc +0 -155
  156. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/application.rb +0 -861
  157. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/clean.rb +0 -78
  158. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/cpu_counter.rb +0 -107
  159. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/dsl_definition.rb +0 -196
  160. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/ext/string.rb +0 -176
  161. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_creation_task.rb +0 -25
  162. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_list.rb +0 -435
  163. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_task.rb +0 -58
  164. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_utils_ext.rb +0 -134
  165. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/packagetask.rb +0 -222
  166. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/phony.rb +0 -16
  167. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/rake_test_loader.rb +0 -27
  168. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task.rb +0 -434
  169. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task_arguments.rb +0 -109
  170. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task_manager.rb +0 -331
  171. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/tasklib.rb +0 -12
  172. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/testtask.rb +0 -189
  173. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/thread_history_display.rb +0 -49
  174. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/thread_pool.rb +0 -163
  175. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/version.rb +0 -10
  176. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake.rb +0 -70
  177. data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/rake.gemspec +0 -101
  178. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.0/lib/rspec/version.rb +0 -5
  179. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/Changelog.md +0 -2425
  180. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/lib/rspec/core/example_group.rb +0 -905
  181. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/lib/rspec/core/version.rb +0 -9
  182. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.4/Changelog.md +0 -1358
  183. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.4/lib/rspec/expectations/version.rb +0 -8
  184. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/Changelog.md +0 -1320
  185. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/lib/rspec/mocks/message_expectation.rb +0 -849
  186. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/lib/rspec/mocks/version.rb +0 -9
  187. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.3/Changelog.md +0 -413
  188. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.3/lib/rspec/support/version.rb +0 -9
  189. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/README.md +0 -251
  190. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/config/default.yml +0 -5990
  191. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/config/obsoletion.yml +0 -240
  192. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/autocorrect_logic.rb +0 -151
  193. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/bundler/ordered_gems.rb +0 -70
  194. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -89
  195. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -101
  196. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -230
  197. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/class_structure.rb +0 -346
  198. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -237
  199. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
  200. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/space_before_brackets.rb +0 -73
  201. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/ambiguous_range.rb +0 -108
  202. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/duplicate_methods.rb +0 -285
  203. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/empty_interpolation.rb +0 -29
  204. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/float_comparison.rb +0 -109
  205. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/identity_comparison.rb +0 -50
  206. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/literal_as_condition.rb +0 -273
  207. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -116
  208. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -111
  209. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -296
  210. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/metrics/abc_size.rb +0 -56
  211. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -99
  212. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -66
  213. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/naming/predicate_name.rb +0 -204
  214. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -343
  215. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/command_literal.rb +0 -181
  216. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/conditional_assignment.rb +0 -674
  217. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/def_with_parentheses.rb +0 -57
  218. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/if_unless_modifier.rb +0 -315
  219. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -47
  220. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/it_block_parameter.rb +0 -100
  221. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/map_to_hash.rb +0 -81
  222. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -261
  223. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/min_max_comparison.rb +0 -83
  224. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_format.rb +0 -257
  225. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_parentheses.rb +0 -321
  226. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_self.rb +0 -212
  227. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/regexp_literal.rb +0 -231
  228. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/safe_navigation.rb +0 -395
  229. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -105
  230. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/team.rb +0 -290
  231. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/variable_force/assignment.rb +0 -152
  232. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/rspec/expect_offense.rb +0 -348
  233. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/version.rb +0 -160
  234. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop.rb +0 -814
  235. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/node.rb +0 -748
  236. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/node_pattern/compiler/debug.rb +0 -161
  237. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/processed_source.rb +0 -410
  238. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/version.rb +0 -9
  239. data/vendor/bundle/ruby/3.2.0/specifications/json-2.12.0.gemspec +0 -0
  240. data/vendor/bundle/ruby/3.2.0/specifications/rake-13.2.1.gemspec +0 -26
  241. data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.13.0.gemspec +0 -31
  242. data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.13.3.gemspec +0 -31
  243. data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.13.4.gemspec +0 -29
  244. data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.13.4.gemspec +0 -29
  245. data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.13.3.gemspec +0 -29
  246. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.75.6.gemspec +0 -39
  247. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.44.1.gemspec +0 -29
  248. /data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/{json-2.12.0 → json-2.12.2}/gem.build_complete +0 -0
  249. /data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/{json-2.12.0 → json-2.12.2}/mkmf.log +0 -0
  250. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/BSDL +0 -0
  251. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/COPYING +0 -0
  252. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/LEGAL +0 -0
  253. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/generator/Makefile +0 -0
  254. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/generator/simd.h +0 -0
  255. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/parser/Makefile +0 -0
  256. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/parser/extconf.rb +0 -0
  257. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
  258. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/json.gemspec +0 -0
  259. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/bigdecimal.rb +0 -0
  260. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/complex.rb +0 -0
  261. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/core.rb +0 -0
  262. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/date.rb +0 -0
  263. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/date_time.rb +0 -0
  264. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/exception.rb +0 -0
  265. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/ostruct.rb +0 -0
  266. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/range.rb +0 -0
  267. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/rational.rb +0 -0
  268. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/regexp.rb +0 -0
  269. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/set.rb +0 -0
  270. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/struct.rb +0 -0
  271. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/symbol.rb +0 -0
  272. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/time.rb +0 -0
  273. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/ext/generator/state.rb +0 -0
  274. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/generic_object.rb +0 -0
  275. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/truffle_ruby/generator.rb +0 -0
  276. /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json.rb +0 -0
  277. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/MIT-LICENSE +0 -0
  278. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/command_line_usage.rdoc +0 -0
  279. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/Rakefile1 +0 -0
  280. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/Rakefile2 +0 -0
  281. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/a.c +0 -0
  282. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/b.c +0 -0
  283. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/main.c +0 -0
  284. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/glossary.rdoc +0 -0
  285. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/jamis.rb +0 -0
  286. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/proto_rake.rdoc +0 -0
  287. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rake.1 +0 -0
  288. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rakefile.rdoc +0 -0
  289. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rational.rdoc +0 -0
  290. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/exe/rake +0 -0
  291. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/backtrace.rb +0 -0
  292. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/cloneable.rb +0 -0
  293. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/default_loader.rb +0 -0
  294. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/early_time.rb +0 -0
  295. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/ext/core.rb +0 -0
  296. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/file_utils.rb +0 -0
  297. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/invocation_chain.rb +0 -0
  298. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/invocation_exception_mixin.rb +0 -0
  299. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/late_time.rb +0 -0
  300. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/linked_list.rb +0 -0
  301. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/loaders/makefile.rb +0 -0
  302. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/multi_task.rb +0 -0
  303. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/name_space.rb +0 -0
  304. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/private_reader.rb +0 -0
  305. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/promise.rb +0 -0
  306. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/pseudo_status.rb +0 -0
  307. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/rake_module.rb +0 -0
  308. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/rule_recursion_overflow_error.rb +0 -0
  309. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/scope.rb +0 -0
  310. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/task_argument_error.rb +0 -0
  311. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/trace_output.rb +0 -0
  312. /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/win32.rb +0 -0
  313. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/LICENSE.md +0 -0
  314. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/README.md +0 -0
  315. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/lib/rspec.rb +0 -0
  316. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/.document +0 -0
  317. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/.yardopts +0 -0
  318. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/LICENSE.md +0 -0
  319. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/README.md +0 -0
  320. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/exe/rspec +0 -0
  321. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/autorun.rb +0 -0
  322. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/backtrace_formatter.rb +0 -0
  323. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/coordinator.rb +0 -0
  324. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
  325. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/fork_runner.rb +0 -0
  326. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/server.rb +0 -0
  327. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/shell_command.rb +0 -0
  328. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/shell_runner.rb +0 -0
  329. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/bisect/utilities.rb +0 -0
  330. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/configuration.rb +0 -0
  331. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/configuration_options.rb +0 -0
  332. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/did_you_mean.rb +0 -0
  333. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/drb.rb +0 -0
  334. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/dsl.rb +0 -0
  335. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/example.rb +0 -0
  336. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/example_status_persister.rb +0 -0
  337. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/filter_manager.rb +0 -0
  338. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/flat_map.rb +0 -0
  339. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
  340. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/base_formatter.rb +0 -0
  341. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
  342. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
  343. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
  344. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/console_codes.rb +0 -0
  345. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
  346. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
  347. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/exception_presenter.rb +0 -0
  348. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
  349. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
  350. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/helpers.rb +0 -0
  351. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/html_formatter.rb +0 -0
  352. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/html_printer.rb +0 -0
  353. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
  354. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/json_formatter.rb +0 -0
  355. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
  356. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
  357. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/protocol.rb +0 -0
  358. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
  359. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
  360. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/formatters.rb +0 -0
  361. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/hooks.rb +0 -0
  362. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/invocations.rb +0 -0
  363. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/memoized_helpers.rb +0 -0
  364. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/metadata.rb +0 -0
  365. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/metadata_filter.rb +0 -0
  366. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
  367. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
  368. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
  369. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/mocking_adapters/null.rb +0 -0
  370. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
  371. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
  372. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/notifications.rb +0 -0
  373. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/option_parser.rb +0 -0
  374. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/ordering.rb +0 -0
  375. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/output_wrapper.rb +0 -0
  376. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/pending.rb +0 -0
  377. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/profiler.rb +0 -0
  378. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/project_initializer/.rspec +0 -0
  379. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -0
  380. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/project_initializer.rb +0 -0
  381. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/rake_task.rb +0 -0
  382. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/reporter.rb +0 -0
  383. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/ruby_project.rb +0 -0
  384. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/runner.rb +0 -0
  385. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/sandbox.rb +0 -0
  386. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/set.rb +0 -0
  387. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/shared_context.rb +0 -0
  388. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/shared_example_group.rb +0 -0
  389. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/shell_escape.rb +0 -0
  390. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
  391. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/warnings.rb +0 -0
  392. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core/world.rb +0 -0
  393. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core.rb +0 -0
  394. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/.document +0 -0
  395. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/.yardopts +0 -0
  396. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/LICENSE.md +0 -0
  397. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/README.md +0 -0
  398. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/block_snippet_extractor.rb +0 -0
  399. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/configuration.rb +0 -0
  400. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/expectation_target.rb +0 -0
  401. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/fail_with.rb +0 -0
  402. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/failure_aggregator.rb +0 -0
  403. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/handler.rb +0 -0
  404. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/minitest_integration.rb +0 -0
  405. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations/syntax.rb +0 -0
  406. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations.rb +0 -0
  407. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/aliased_matcher.rb +0 -0
  408. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/all.rb +0 -0
  409. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/base_matcher.rb +0 -0
  410. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/be.rb +0 -0
  411. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/be_between.rb +0 -0
  412. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/be_instance_of.rb +0 -0
  413. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/be_kind_of.rb +0 -0
  414. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/be_within.rb +0 -0
  415. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/change.rb +0 -0
  416. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/compound.rb +0 -0
  417. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/contain_exactly.rb +0 -0
  418. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/count_expectation.rb +0 -0
  419. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/cover.rb +0 -0
  420. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/eq.rb +0 -0
  421. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/eql.rb +0 -0
  422. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/equal.rb +0 -0
  423. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/exist.rb +0 -0
  424. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/has.rb +0 -0
  425. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
  426. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/include.rb +0 -0
  427. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/match.rb +0 -0
  428. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/operators.rb +0 -0
  429. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/output.rb +0 -0
  430. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/raise_error.rb +0 -0
  431. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/respond_to.rb +0 -0
  432. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/satisfy.rb +0 -0
  433. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
  434. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/throw_symbol.rb +0 -0
  435. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in/yield.rb +0 -0
  436. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/built_in.rb +0 -0
  437. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/composable.rb +0 -0
  438. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/dsl.rb +0 -0
  439. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/english_phrasing.rb +0 -0
  440. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/fail_matchers.rb +0 -0
  441. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/generated_descriptions.rb +0 -0
  442. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/matcher_delegator.rb +0 -0
  443. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/matcher_protocol.rb +0 -0
  444. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers/multi_matcher_diff.rb +0 -0
  445. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers.rb +0 -0
  446. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/.document +0 -0
  447. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/.yardopts +0 -0
  448. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/LICENSE.md +0 -0
  449. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/README.md +0 -0
  450. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/chain.rb +0 -0
  451. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
  452. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
  453. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
  454. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
  455. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
  456. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/recorder.rb +0 -0
  457. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/stub_chain.rb +0 -0
  458. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
  459. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/any_instance.rb +0 -0
  460. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/argument_list_matcher.rb +0 -0
  461. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/argument_matchers.rb +0 -0
  462. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/configuration.rb +0 -0
  463. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/error_generator.rb +0 -0
  464. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/example_methods.rb +0 -0
  465. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
  466. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/marshal_extension.rb +0 -0
  467. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
  468. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/matchers/have_received.rb +0 -0
  469. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/matchers/receive.rb +0 -0
  470. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -0
  471. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
  472. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/message_chain.rb +0 -0
  473. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/method_double.rb +0 -0
  474. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/method_reference.rb +0 -0
  475. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/minitest_integration.rb +0 -0
  476. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/mutate_const.rb +0 -0
  477. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/object_reference.rb +0 -0
  478. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/order_group.rb +0 -0
  479. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/proxy.rb +0 -0
  480. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/space.rb +0 -0
  481. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/standalone.rb +0 -0
  482. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/syntax.rb +0 -0
  483. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/targets.rb +0 -0
  484. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/test_double.rb +0 -0
  485. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/verifying_double.rb +0 -0
  486. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
  487. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks/verifying_proxy.rb +0 -0
  488. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks.rb +0 -0
  489. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/LICENSE.md +0 -0
  490. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/README.md +0 -0
  491. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/caller_filter.rb +0 -0
  492. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/comparable_version.rb +0 -0
  493. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/differ.rb +0 -0
  494. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/directory_maker.rb +0 -0
  495. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/encoded_string.rb +0 -0
  496. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/fuzzy_matcher.rb +0 -0
  497. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/hunk_generator.rb +0 -0
  498. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/matcher_definition.rb +0 -0
  499. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/method_signature_verifier.rb +0 -0
  500. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/mutex.rb +0 -0
  501. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/object_formatter.rb +0 -0
  502. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/recursive_const_methods.rb +0 -0
  503. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/reentrant_mutex.rb +0 -0
  504. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/ruby_features.rb +0 -0
  505. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/source/location.rb +0 -0
  506. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/source/node.rb +0 -0
  507. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/source/token.rb +0 -0
  508. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/source.rb +0 -0
  509. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
  510. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/diff_helpers.rb +0 -0
  511. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/formatting_support.rb +0 -0
  512. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/in_sub_process.rb +0 -0
  513. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
  514. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/shell_out.rb +0 -0
  515. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
  516. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/string_matcher.rb +0 -0
  517. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
  518. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
  519. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/spec.rb +0 -0
  520. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/warnings.rb +0 -0
  521. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
  522. /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support.rb +0 -0
  523. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/LICENSE.txt +0 -0
  524. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/logo.png +0 -0
  525. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/output.css.erb +0 -0
  526. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/output.html.erb +0 -0
  527. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/config/internal_affairs.yml +0 -0
  528. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/exe/rubocop +0 -0
  529. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/arguments_env.rb +0 -0
  530. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/arguments_file.rb +0 -0
  531. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ast_aliases.rb +0 -0
  532. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cache_config.rb +0 -0
  533. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cached_data.rb +0 -0
  534. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/auto_generate_config.rb +0 -0
  535. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/base.rb +0 -0
  536. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/execute_runner.rb +0 -0
  537. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
  538. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/lsp.rb +0 -0
  539. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/show_cops.rb +0 -0
  540. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/show_docs_url.rb +0 -0
  541. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
  542. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/version.rb +0 -0
  543. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command.rb +0 -0
  544. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/environment.rb +0 -0
  545. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli.rb +0 -0
  546. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/comment_config.rb +0 -0
  547. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config.rb +0 -0
  548. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_finder.rb +0 -0
  549. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_loader.rb +0 -0
  550. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_loader_resolver.rb +0 -0
  551. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
  552. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
  553. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
  554. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
  555. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
  556. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
  557. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
  558. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  559. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
  560. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion.rb +0 -0
  561. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_regeneration.rb +0 -0
  562. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_store.rb +0 -0
  563. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_validator.rb +0 -0
  564. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/badge.rb +0 -0
  565. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/base.rb +0 -0
  566. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
  567. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
  568. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/gem_comment.rb +0 -0
  569. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
  570. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/gem_version.rb +0 -0
  571. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
  572. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/commissioner.rb +0 -0
  573. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/cop.rb +0 -0
  574. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/corrector.rb +0 -0
  575. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -0
  576. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
  577. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
  578. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
  579. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
  580. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
  581. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
  582. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
  583. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
  584. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
  585. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
  586. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
  587. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
  588. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
  589. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
  590. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
  591. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
  592. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/documentation.rb +0 -0
  593. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
  594. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/force.rb +0 -0
  595. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
  596. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
  597. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
  598. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
  599. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
  600. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
  601. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
  602. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
  603. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
  604. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/generator.rb +0 -0
  605. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/ignored_node.rb +0 -0
  606. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
  607. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
  608. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
  609. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
  610. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
  611. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -0
  612. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
  613. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
  614. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
  615. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
  616. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
  617. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
  618. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
  619. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
  620. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
  621. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -0
  622. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
  623. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
  624. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
  625. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
  626. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
  627. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
  628. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
  629. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
  630. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
  631. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
  632. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
  633. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
  634. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
  635. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
  636. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
  637. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
  638. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
  639. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
  640. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
  641. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
  642. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
  643. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
  644. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -0
  645. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
  646. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
  647. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
  648. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
  649. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
  650. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
  651. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
  652. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
  653. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
  654. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/case_indentation.rb +0 -0
  655. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
  656. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
  657. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
  658. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/condition_position.rb +0 -0
  659. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
  660. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/dot_position.rb +0 -0
  661. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
  662. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
  663. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -0
  664. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
  665. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
  666. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
  667. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
  668. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
  669. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
  670. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
  671. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
  672. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
  673. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
  674. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
  675. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
  676. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/end_alignment.rb +0 -0
  677. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
  678. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
  679. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
  680. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -0
  681. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
  682. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -0
  683. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
  684. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
  685. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
  686. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
  687. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
  688. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -0
  689. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
  690. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
  691. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/indentation_width.rb +0 -0
  692. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
  693. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
  694. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
  695. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
  696. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
  697. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
  698. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/line_length.rb +0 -0
  699. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -0
  700. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
  701. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
  702. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
  703. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -0
  704. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
  705. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
  706. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
  707. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -0
  708. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
  709. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
  710. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
  711. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
  712. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/redundant_line_break.rb +0 -0
  713. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
  714. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
  715. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
  716. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
  717. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
  718. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
  719. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
  720. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
  721. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
  722. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
  723. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
  724. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
  725. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
  726. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
  727. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
  728. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
  729. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
  730. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -0
  731. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
  732. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
  733. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
  734. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
  735. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
  736. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
  737. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
  738. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
  739. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
  740. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
  741. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
  742. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
  743. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  744. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
  745. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
  746. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
  747. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
  748. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
  749. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
  750. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
  751. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
  752. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
  753. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
  754. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
  755. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
  756. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -0
  757. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/constant_reassignment.rb +0 -0
  758. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
  759. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
  760. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
  761. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
  762. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
  763. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
  764. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
  765. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
  766. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
  767. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
  768. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
  769. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
  770. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
  771. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
  772. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
  773. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
  774. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
  775. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
  776. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/else_layout.rb +0 -0
  777. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_block.rb +0 -0
  778. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_class.rb +0 -0
  779. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
  780. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
  781. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
  782. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_file.rb +0 -0
  783. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
  784. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/empty_when.rb +0 -0
  785. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
  786. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -0
  787. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
  788. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
  789. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
  790. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
  791. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
  792. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
  793. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
  794. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
  795. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
  796. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
  797. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
  798. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
  799. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
  800. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -0
  801. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
  802. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/loop.rb +0 -0
  803. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
  804. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/missing_super.rb +0 -0
  805. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
  806. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
  807. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
  808. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
  809. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
  810. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
  811. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
  812. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
  813. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -0
  814. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
  815. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/number_conversion.rb +0 -0
  816. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
  817. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -0
  818. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
  819. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
  820. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
  821. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
  822. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
  823. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
  824. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
  825. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/rand_one.rb +0 -0
  826. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
  827. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
  828. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
  829. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
  830. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
  831. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -0
  832. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -0
  833. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
  834. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -0
  835. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_with_index.rb +0 -0
  836. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/redundant_with_object.rb +0 -0
  837. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
  838. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
  839. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
  840. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
  841. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
  842. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
  843. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
  844. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
  845. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
  846. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
  847. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/script_permission.rb +0 -0
  848. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/self_assignment.rb +0 -0
  849. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
  850. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
  851. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
  852. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -0
  853. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/struct_new_override.rb +0 -0
  854. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
  855. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -0
  856. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/symbol_conversion.rb +0 -0
  857. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
  858. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
  859. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/to_json.rb +0 -0
  860. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
  861. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -0
  862. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
  863. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
  864. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -0
  865. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
  866. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
  867. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
  868. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
  869. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
  870. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
  871. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
  872. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
  873. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
  874. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
  875. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
  876. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
  877. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
  878. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
  879. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
  880. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
  881. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
  882. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
  883. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/useless_times.rb +0 -0
  884. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/void.rb +0 -0
  885. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/message_annotator.rb +0 -0
  886. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/block_length.rb +0 -0
  887. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
  888. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/class_length.rb +0 -0
  889. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
  890. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
  891. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/method_length.rb +0 -0
  892. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/module_length.rb +0 -0
  893. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
  894. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
  895. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
  896. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
  897. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
  898. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
  899. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
  900. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/migration/department_name.rb +0 -0
  901. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  902. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
  903. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
  904. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
  905. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
  906. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
  907. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
  908. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
  909. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
  910. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
  911. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
  912. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
  913. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/code_length.rb +0 -0
  914. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
  915. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
  916. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
  917. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
  918. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
  919. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
  920. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/def_node.rb +0 -0
  921. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
  922. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
  923. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  924. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
  925. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
  926. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
  927. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
  928. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  929. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
  930. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
  931. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
  932. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
  933. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
  934. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
  935. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -0
  936. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
  937. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
  938. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  939. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
  940. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  941. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
  942. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/match_range.rb +0 -0
  943. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
  944. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
  945. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
  946. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
  947. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
  948. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
  949. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
  950. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
  951. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
  952. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
  953. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
  954. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  955. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
  956. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
  957. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
  958. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
  959. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/range_help.rb +0 -0
  960. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
  961. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/require_library.rb +0 -0
  962. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
  963. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
  964. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
  965. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
  966. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
  967. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/string_help.rb +0 -0
  968. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
  969. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
  970. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
  971. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
  972. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
  973. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
  974. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
  975. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
  976. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
  977. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
  978. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
  979. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
  980. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
  981. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
  982. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
  983. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/constant_name.rb +0 -0
  984. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/file_name.rb +0 -0
  985. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
  986. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
  987. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
  988. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -0
  989. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/method_name.rb +0 -0
  990. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
  991. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
  992. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/variable_name.rb +0 -0
  993. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/naming/variable_number.rb +0 -0
  994. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/offense.rb +0 -0
  995. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/registry.rb +0 -0
  996. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/compound_hash.rb +0 -0
  997. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/eval.rb +0 -0
  998. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/io_methods.rb +0 -0
  999. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/json_load.rb +0 -0
  1000. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/marshal_load.rb +0 -0
  1001. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/open.rb +0 -0
  1002. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/yaml_load.rb +0 -0
  1003. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/severity.rb +0 -0
  1004. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
  1005. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/alias.rb +0 -0
  1006. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
  1007. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/and_or.rb +0 -0
  1008. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
  1009. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/array_coercion.rb +0 -0
  1010. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/array_first_last.rb +0 -0
  1011. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/array_intersect.rb +0 -0
  1012. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/array_join.rb +0 -0
  1013. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
  1014. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/attr.rb +0 -0
  1015. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
  1016. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
  1017. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/begin_block.rb +0 -0
  1018. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
  1019. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
  1020. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
  1021. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/block_comments.rb +0 -0
  1022. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/block_delimiters.rb +0 -0
  1023. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/case_equality.rb +0 -0
  1024. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/case_like_if.rb +0 -0
  1025. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/character_literal.rb +0 -0
  1026. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
  1027. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_check.rb +0 -0
  1028. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
  1029. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_methods.rb +0 -0
  1030. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
  1031. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/class_vars.rb +0 -0
  1032. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/collection_compact.rb +0 -0
  1033. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/collection_methods.rb +0 -0
  1034. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
  1035. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
  1036. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
  1037. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/combinable_loops.rb +0 -0
  1038. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
  1039. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
  1040. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/comparable_between.rb +0 -0
  1041. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
  1042. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/concat_array_literals.rb +0 -0
  1043. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
  1044. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/copyright.rb +0 -0
  1045. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
  1046. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/date_time.rb +0 -0
  1047. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/dig_chain.rb +0 -0
  1048. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/dir.rb +0 -0
  1049. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/dir_empty.rb +0 -0
  1050. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
  1051. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
  1052. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/documentation.rb +0 -0
  1053. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/documentation_method.rb +0 -0
  1054. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
  1055. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/double_negation.rb +0 -0
  1056. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
  1057. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/each_with_object.rb +0 -0
  1058. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
  1059. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
  1060. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_else.rb +0 -0
  1061. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
  1062. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
  1063. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_literal.rb +0 -0
  1064. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/empty_method.rb +0 -0
  1065. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/encoding.rb +0 -0
  1066. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/end_block.rb +0 -0
  1067. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/endless_method.rb +0 -0
  1068. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/env_home.rb +0 -0
  1069. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
  1070. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/even_odd.rb +0 -0
  1071. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
  1072. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
  1073. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
  1074. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
  1075. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
  1076. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/file_empty.rb +0 -0
  1077. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/file_null.rb +0 -0
  1078. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/file_read.rb +0 -0
  1079. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/file_touch.rb +0 -0
  1080. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/file_write.rb +0 -0
  1081. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/float_division.rb +0 -0
  1082. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/for.rb +0 -0
  1083. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/format_string.rb +0 -0
  1084. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/format_string_token.rb +0 -0
  1085. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
  1086. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
  1087. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/global_vars.rb +0 -0
  1088. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/guard_clause.rb +0 -0
  1089. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -0
  1090. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
  1091. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
  1092. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_except.rb +0 -0
  1093. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
  1094. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
  1095. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_slice.rb +0 -0
  1096. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
  1097. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
  1098. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
  1099. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
  1100. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
  1101. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -0
  1102. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
  1103. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
  1104. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
  1105. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
  1106. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/inline_comment.rb +0 -0
  1107. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
  1108. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
  1109. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
  1110. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/it_assignment.rb +0 -0
  1111. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
  1112. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
  1113. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/lambda.rb +0 -0
  1114. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/lambda_call.rb +0 -0
  1115. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
  1116. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/magic_comment_format.rb +0 -0
  1117. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
  1118. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/map_into_array.rb +0 -0
  1119. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/map_to_set.rb +0 -0
  1120. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
  1121. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
  1122. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
  1123. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
  1124. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/method_def_parentheses.rb +0 -0
  1125. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/min_max.rb +0 -0
  1126. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/missing_else.rb +0 -0
  1127. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
  1128. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
  1129. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
  1130. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/module_function.rb +0 -0
  1131. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
  1132. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
  1133. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_if_then.rb +0 -0
  1134. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
  1135. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
  1136. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
  1137. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
  1138. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
  1139. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
  1140. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/mutable_constant.rb +0 -0
  1141. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/negated_if.rb +0 -0
  1142. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
  1143. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/negated_unless.rb +0 -0
  1144. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/negated_while.rb +0 -0
  1145. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
  1146. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
  1147. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
  1148. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
  1149. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/next.rb +0 -0
  1150. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
  1151. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
  1152. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
  1153. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/not.rb +0 -0
  1154. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
  1155. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
  1156. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
  1157. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
  1158. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
  1159. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/object_then.rb +0 -0
  1160. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
  1161. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
  1162. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
  1163. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/option_hash.rb +0 -0
  1164. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
  1165. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
  1166. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/or_assignment.rb +0 -0
  1167. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/parallel_assignment.rb +0 -0
  1168. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
  1169. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
  1170. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
  1171. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
  1172. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -0
  1173. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/proc.rb +0 -0
  1174. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
  1175. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/raise_args.rb +0 -0
  1176. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
  1177. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
  1178. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
  1179. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
  1180. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
  1181. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
  1182. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_condition.rb +0 -0
  1183. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
  1184. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
  1185. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
  1186. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
  1187. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_each.rb +0 -0
  1188. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
  1189. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
  1190. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
  1191. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
  1192. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
  1193. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
  1194. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
  1195. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
  1196. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
  1197. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
  1198. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
  1199. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
  1200. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
  1201. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
  1202. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
  1203. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_return.rb +0 -0
  1204. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
  1205. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
  1206. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
  1207. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
  1208. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
  1209. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/require_order.rb +0 -0
  1210. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
  1211. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
  1212. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/return_nil.rb +0 -0
  1213. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
  1214. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
  1215. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/sample.rb +0 -0
  1216. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
  1217. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/self_assignment.rb +0 -0
  1218. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
  1219. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/send.rb +0 -0
  1220. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
  1221. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/signal_exception.rb +0 -0
  1222. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
  1223. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
  1224. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
  1225. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
  1226. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
  1227. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
  1228. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
  1229. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
  1230. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/static_class.rb +0 -0
  1231. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
  1232. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_chars.rb +0 -0
  1233. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
  1234. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
  1235. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_literals.rb +0 -0
  1236. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
  1237. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/string_methods.rb +0 -0
  1238. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/strip.rb +0 -0
  1239. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
  1240. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/super_arguments.rb +0 -0
  1241. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
  1242. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/swap_values.rb +0 -0
  1243. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/symbol_array.rb +0 -0
  1244. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
  1245. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/symbol_proc.rb +0 -0
  1246. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
  1247. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
  1248. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
  1249. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
  1250. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
  1251. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
  1252. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
  1253. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
  1254. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
  1255. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
  1256. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
  1257. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/unless_else.rb +0 -0
  1258. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
  1259. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/unpack_first.rb +0 -0
  1260. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
  1261. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/when_then.rb +0 -0
  1262. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/while_until_do.rb +0 -0
  1263. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
  1264. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/word_array.rb +0 -0
  1265. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
  1266. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
  1267. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
  1268. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
  1269. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/util.rb +0 -0
  1270. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/utils/format_string.rb +0 -0
  1271. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/branch.rb +0 -0
  1272. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
  1273. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/reference.rb +0 -0
  1274. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/scope.rb +0 -0
  1275. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/variable.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/core_ext/string.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/directive_comment.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/error.rb +0 -0
  1282. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/comment.rb +0 -0
  1283. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/processed_source.rb +0 -0
  1284. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/range.rb +0 -0
  1285. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/regexp_node.rb +0 -0
  1286. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
  1287. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/feature_loader.rb +0 -0
  1288. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/file_finder.rb +0 -0
  1289. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/file_patterns.rb +0 -0
  1290. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
  1291. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
  1292. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/clang_style_formatter.rb +0 -0
  1293. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/colorizable.rb +0 -0
  1294. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/disabled_config_formatter.rb +0 -0
  1295. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
  1296. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
  1297. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/formatter_set.rb +0 -0
  1298. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
  1299. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
  1300. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
  1301. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
  1302. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  1303. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  1304. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
  1305. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  1306. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  1307. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  1308. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
  1309. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/tap_formatter.rb +0 -0
  1310. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/text_util.rb +0 -0
  1311. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
  1312. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter.rb +0 -0
  1313. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lockfile.rb +0 -0
  1314. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/diagnostic.rb +0 -0
  1315. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/logger.rb +0 -0
  1316. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/routes.rb +0 -0
  1317. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/runtime.rb +0 -0
  1318. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/server.rb +0 -0
  1319. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/severity.rb +0 -0
  1320. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/stdin_runner.rb +0 -0
  1321. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp.rb +0 -0
  1322. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/magic_comment.rb +0 -0
  1323. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/name_similarity.rb +0 -0
  1324. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/options.rb +0 -0
  1325. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/path_util.rb +0 -0
  1326. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/platform.rb +0 -0
  1327. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  1328. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/load_error.rb +0 -0
  1329. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/loader.rb +0 -0
  1330. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/not_supported_error.rb +0 -0
  1331. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin.rb +0 -0
  1332. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rake_task.rb +0 -0
  1333. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/remote_config.rb +0 -0
  1334. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/result_cache.rb +0 -0
  1335. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
  1336. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  1337. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/shared_contexts.rb +0 -0
  1338. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/support.rb +0 -0
  1339. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/runner.rb +0 -0
  1340. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/cache.rb +0 -0
  1341. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/cli.rb +0 -0
  1342. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/base.rb +0 -0
  1343. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/exec.rb +0 -0
  1344. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/restart.rb +0 -0
  1345. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/start.rb +0 -0
  1346. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/status.rb +0 -0
  1347. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command/stop.rb +0 -0
  1348. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command.rb +0 -0
  1349. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/core.rb +0 -0
  1350. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/errors.rb +0 -0
  1351. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/helper.rb +0 -0
  1352. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/server_command/base.rb +0 -0
  1353. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/server_command/exec.rb +0 -0
  1354. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/server_command/stop.rb +0 -0
  1355. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/server_command.rb +0 -0
  1356. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/socket_reader.rb +0 -0
  1357. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server.rb +0 -0
  1358. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/string_interpreter.rb +0 -0
  1359. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/target_finder.rb +0 -0
  1360. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/target_ruby.rb +0 -0
  1361. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/util.rb +0 -0
  1362. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/warning.rb +0 -0
  1363. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  1364. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  1365. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
  1366. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/LICENSE.txt +0 -0
  1367. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/README.md +0 -0
  1368. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/builder.rb +0 -0
  1369. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/builder_prism.rb +0 -0
  1370. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/ext/range.rb +0 -0
  1371. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/alias_node.rb +0 -0
  1372. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/and_asgn_node.rb +0 -0
  1373. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/and_node.rb +0 -0
  1374. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/arg_node.rb +0 -0
  1375. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/args_node.rb +0 -0
  1376. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/array_node.rb +0 -0
  1377. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/asgn_node.rb +0 -0
  1378. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/block_node.rb +0 -0
  1379. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/break_node.rb +0 -0
  1380. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/case_match_node.rb +0 -0
  1381. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/case_node.rb +0 -0
  1382. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/casgn_node.rb +0 -0
  1383. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/class_node.rb +0 -0
  1384. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/const_node.rb +0 -0
  1385. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/csend_node.rb +0 -0
  1386. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/def_node.rb +0 -0
  1387. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/defined_node.rb +0 -0
  1388. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/dstr_node.rb +0 -0
  1389. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/ensure_node.rb +0 -0
  1390. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/float_node.rb +0 -0
  1391. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/for_node.rb +0 -0
  1392. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/forward_args_node.rb +0 -0
  1393. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/hash_node.rb +0 -0
  1394. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/if_node.rb +0 -0
  1395. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/in_pattern_node.rb +0 -0
  1396. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/index_node.rb +0 -0
  1397. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/indexasgn_node.rb +0 -0
  1398. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/int_node.rb +0 -0
  1399. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/keyword_begin_node.rb +0 -0
  1400. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/keyword_splat_node.rb +0 -0
  1401. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/lambda_node.rb +0 -0
  1402. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/masgn_node.rb +0 -0
  1403. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -0
  1404. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -0
  1405. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/collection_node.rb +0 -0
  1406. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -0
  1407. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/constant_node.rb +0 -0
  1408. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/descendence.rb +0 -0
  1409. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -0
  1410. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -0
  1411. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -0
  1412. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -0
  1413. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/numeric_node.rb +0 -0
  1414. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -0
  1415. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -0
  1416. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/mlhs_node.rb +0 -0
  1417. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/module_node.rb +0 -0
  1418. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/next_node.rb +0 -0
  1419. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/op_asgn_node.rb +0 -0
  1420. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/or_asgn_node.rb +0 -0
  1421. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/or_node.rb +0 -0
  1422. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/pair_node.rb +0 -0
  1423. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/procarg0_node.rb +0 -0
  1424. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/range_node.rb +0 -0
  1425. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/rational_node.rb +0 -0
  1426. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/regexp_node.rb +0 -0
  1427. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/resbody_node.rb +0 -0
  1428. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/rescue_node.rb +0 -0
  1429. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/return_node.rb +0 -0
  1430. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/self_class_node.rb +0 -0
  1431. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/send_node.rb +0 -0
  1432. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/str_node.rb +0 -0
  1433. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/super_node.rb +0 -0
  1434. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/symbol_node.rb +0 -0
  1435. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/until_node.rb +0 -0
  1436. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/var_node.rb +0 -0
  1437. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/when_node.rb +0 -0
  1438. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/while_node.rb +0 -0
  1439. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node/yield_node.rb +0 -0
  1440. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/builder.rb +0 -0
  1441. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/comment.rb +0 -0
  1442. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler/atom_subcompiler.rb +0 -0
  1443. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler/binding.rb +0 -0
  1444. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler/node_pattern_subcompiler.rb +0 -0
  1445. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +0 -0
  1446. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler/subcompiler.rb +0 -0
  1447. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/compiler.rb +0 -0
  1448. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/lexer.rb +0 -0
  1449. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/lexer.rex +0 -0
  1450. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/lexer.rex.rb +0 -0
  1451. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/method_definer.rb +0 -0
  1452. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/node.rb +0 -0
  1453. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/parser.racc.rb +0 -0
  1454. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/parser.rb +0 -0
  1455. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/parser.y +0 -0
  1456. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/sets.rb +0 -0
  1457. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern/with_meta.rb +0 -0
  1458. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/node_pattern.rb +0 -0
  1459. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/rubocop_compatibility.rb +0 -0
  1460. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/sexp.rb +0 -0
  1461. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/token.rb +0 -0
  1462. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/traversal.rb +0 -0
  1463. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast/utilities/simple_forwardable.rb +0 -0
  1464. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast.rb +0 -0
  1465. /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop-ast.rb +0 -0
@@ -1,1320 +0,0 @@
1
- ### Development
2
- [Full Changelog](https://github.com/rspec/rspec/compare/rspec-mocks-v3.13.4...3-13-maintenance)
3
-
4
- ### 3.13.4 / 2025-05-05
5
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.13.3...v3.13.4)
6
-
7
- Bug Fixes:
8
-
9
- * Fix regression where nested stubbed method calls would inadvertently not be counted.
10
- (Jon Rowe, rspec/rspec#214)
11
- * Fix regression where keyword arguments would not be passed through to nested stubbed
12
- method calls. (Jon Rowe, rspec/rspec#214)
13
-
14
- ### 3.13.3 / 2025-05-01
15
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.13.2...v3.13.3)
16
-
17
- Bug Fixes:
18
-
19
- * When stubbing methods using the `expect_any_instance_of` or `allow_any_instance_of`
20
- ensure the stubbed method has the same visibility as the real method.
21
- (Jon Rowe, rspec/rspec-mocks#1596)
22
- * Prevent recursive calls to stubbed methods during stub invocation.
23
- (James Dabbs, rspec/rspec#116, rspec/rspec#156)
24
-
25
- ### 3.13.2 / 2024-10-02
26
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.13.1...v3.13.2)
27
-
28
- Bug Fixes:
29
-
30
- * Support keyword arguments in callables passed to `and_invoke`. (Jon Rowe, rspec/rspec-mocks#1595)
31
-
32
- ### 3.13.1 / 2024-05-08
33
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.13.0...v3.13.1)
34
-
35
- Bug Fixes:
36
-
37
- * Use `RSpec::Support::Mutex` in `RSpec::Mocks::Proxy` to avoid issues from
38
- stubbing `::Mutex#new`. (Eric Mueller, rspec/rspec-mocks#1575)
39
-
40
- ### 3.13.0 / 2024-02-04
41
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.7...v3.13.0)
42
-
43
- Enhancements:
44
-
45
- * Add an `array_excluding` matcher for arguments. (Zane Wolfgang Pickett, rspec/rspec-mocks#1528)
46
-
47
- ### 3.12.7 / 2024-02-04
48
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.6...v3.12.7)
49
-
50
- Bug Fixes:
51
-
52
- * Reduce allocations from "any_instance" style mocks. (Carlos Palhares, rspec/rspec-mocks#1479)
53
-
54
- ### 3.12.6 / 2023-07-11
55
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.5...v3.12.6)
56
-
57
- Bug Fixes:
58
-
59
- * Fix an issue with `and_call_original` when using the `method_missing` fallback
60
- with keyword arguments. (Igor Drozdov, rspec/rspec-mocks#1552)
61
-
62
- ### 3.12.5 / 2023-03-30
63
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.4...v3.12.5)
64
-
65
- Bug Fixes:
66
-
67
- * Fix compatibility issue with Rails where active_support monkey patches `with`
68
- when using any instance. (Lachlan Sylvester, rspec/rspec-mocks#1540)
69
-
70
- ### 3.12.4 / 2023-03-12
71
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.3...v3.12.4)
72
-
73
- Bug Fixes:
74
-
75
- * Fix an issue with asserting that Array#reverse is never called. (Brad Trick, rspec/rspec-mocks#1533)
76
- * Fix compatibility issue with Rails where active_support monkey patches `with`.
77
- (Jean Boussier, rspec/rspec-mocks#1531, rspec/rspec-mocks#1534)
78
-
79
- ### 3.12.3 / 2023-01-17
80
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.2...v3.12.3)
81
-
82
- Bug Fixes:
83
-
84
- * Fix keyword delegation in `send` for verifying doubles on Ruby 3.
85
- (Charlie Honig, rspec/rspec-mocks#1485)
86
-
87
- ### 3.12.2 / 2023-01-07
88
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.1...v3.12.2)
89
-
90
- Bug Fixes:
91
-
92
- * Fix implementation blocks for mocks using keyword arguments on Ruby 3.2.0.
93
- (Adam Steel, rspec/rspec-mocks#1508)
94
- * Fix keyword argument assertions when mocking using `with` on Ruby 3.2.0.
95
- (Slava Kardakov, Benoit Tigeot, Phil Pirozhkov, Benoit Daloze, rspec/rspec-mocks#1514)
96
-
97
- ### 3.12.1 / 2022-12-10
98
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.12.0...v3.12.1)
99
-
100
- Bug Fixes:
101
-
102
- * Remove empty diff marker when a diff only contains console codes. (Jon Rowe, rspec/rspec-mocks#1506)
103
- * Show keyword vs hash diff marker when arguments are not `==` (Jon Rowe, rspec/rspec-mocks#1506)
104
- * Change check to detect frozen objects to rescue errors rather than
105
- pre-empting by checking `frozen?` due to some objects mis-behaving.
106
- (Keegan Roth, rspec/rspec-mocks#1401)
107
- * Prevent unfulfilled expectations using `expect_any_instance_of` across a class
108
- inheritance boundary from raising rather than failing. (Jon Rowe, rspec/rspec-mocks#1496)
109
- * Prevent a misleading error message when using `allow(...).not_to` with
110
- unsupported matchers. (Phil Pirozhkov, rspec/rspec-mocks#1503)
111
-
112
- ### 3.12.0 / 2022-10-26
113
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.11.2...v3.12.0)
114
-
115
- Enhancements:
116
-
117
- * Improve diff output when diffing keyword arguments against hashes.
118
- (Jean Boussier, rspec/rspec-mocks#1461)
119
-
120
- ### 3.11.2 / 2022-10-25
121
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.11.1...v3.11.2)
122
-
123
- Bug Fixes:
124
-
125
- * Use the original implementation of `Class.new` to detect overridden definitions
126
- of `new` rather than the owner, fixing detection of "double aliased" methods
127
- in Ruby 3 and above. (Benoit Daloze, rspec/rspec-mocks#1470, rspec/rspec-mocks#1476)
128
- * Support keyword argument semantics when constraining argument expectations using
129
- `with` on Ruby 3.0+ with `instance_double` (Andrii Malyshko, rspec/rspec-mocks#1473)
130
-
131
- ### 3.11.1 / 2022-03-31
132
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.11.0...v3.11.1)
133
-
134
- Bug Fixes:
135
-
136
- * Add extra `ruby2_keywords` calls to properly designate methods using
137
- `*args` to pass keyword around, fixes an issue with TruffleRuby.
138
- (Benoit Daloze, rspec/rspec-mocks#1464)
139
-
140
- ### 3.11.0 / 2022-02-09
141
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.3...v3.11.0)
142
-
143
- Enhancements:
144
-
145
- * Add `and_invoke` implementation for configuring responses to `receive`
146
- (and `receive_messages`) with multiple callable objects. (Kyle Smith, rspec/rspec-mocks#1411)
147
-
148
- ### 3.10.3 / 2022-01-28
149
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.2...v3.10.3)
150
-
151
- Bug Fixes:
152
-
153
- * Suppress warning by setting `$VERBOSE` to nil. (Nobuyoshi Nakada, rspec/rspec-mocks#1414)
154
- * Support keyword argument semantics when constraining argument expectations using
155
- `with` on Ruby 3.0+ (Yusuke Endoh, rspec/rspec-mocks#1394)
156
-
157
- ### 3.10.2 / 2021-01-27
158
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.1...v3.10.2)
159
-
160
- Bug Fixes:
161
-
162
- * Support keyword arguments with `and_call_original` on Ruby 3.0.
163
- (Bryan Powell, rspec/rspec-mocks#1385)
164
- * `RSpec::Mocks::Constant#previously_defined?` is now always a boolean.
165
- (Phil Pirozhkov, rspec/rspec-mocks#1397)
166
- * Support keyword arguments on Ruby 3.0 when used with `expect_any_instance_of`
167
- or `allow_any_instance_of` with `and_call_original`.
168
- (Jess Hottenstein, rspec/rspec-mocks#1407)
169
-
170
- ### 3.10.1 / 2020-12-27
171
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.0...v3.10.1)
172
-
173
- Bug Fixes:
174
-
175
- * Issue `ArgumentError` rather than `TypeError` when unsupported methods on
176
- unsupported objects are attempted to be stubbed. (@zhisme, rspec/rspec-mocks#1357)
177
-
178
- ### 3.10.0 / 2020-10-30
179
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.9.1...v3.10.0)
180
-
181
- Enhancements:
182
- * Add the ability to set a custom error generator in `MessageExpectation`.
183
- This will allow rspec-expectations to inject a custom failure message.
184
- (Benoit Tigeot and Nicolas Zermati, rspec/rspec-mocks#1312)
185
- * Return the result of the block passed to `RSpec::Mocks.with_temporary_scope`
186
- when block run. (@expeehaa, rspec/rspec-mocks#1329)
187
-
188
- ### 3.9.1 / 2019-12-31
189
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.9.0...v3.9.1)
190
-
191
- Bug Fixes:
192
-
193
- * Trigger `RSpec::Mocks.configuration.verifying_double_callbacks` when using
194
- `allow_any_instance_of` or `expect_any_instance_of` (Daniel Orner, rspec/rspec-mocks#1309)
195
-
196
- ### 3.9.0 / 2019-10-07
197
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.8.2...v3.9.0)
198
-
199
- Enhancements:
200
-
201
- * Improve thread safety of message expectations by using Mutex to prevent
202
- deadlocking errors. (Ry Biesemeyer, rspec/rspec-mocks#1236)
203
- * Add the ability to use `time` as an alias for `times`. For example:
204
- `expect(Class).to receive(:method).exactly(1).time`.
205
- (Pistos, Benoit Tigeot, rspec/rspec-mocks#1271)
206
-
207
- ### 3.8.2 / 2019-10-02
208
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.8.1...v3.8.2)
209
-
210
- * Allow `array_including` argument matchers to be nested.
211
- (Emmanuel Delmas, rspec/rspec-mocks#1291)
212
-
213
- ### 3.8.1 / 2019-06-13
214
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.8.0...v3.8.1)
215
-
216
- Bug Fixes:
217
-
218
- * Ensure stubbing methods does not change their visibility.
219
- (Kevin Boschert, rspec/rspec-mocks#1277)
220
-
221
- ### 3.8.0 / 2018-08-04
222
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.7.0...v3.8.0)
223
-
224
- Bug Fixes:
225
-
226
- * Issue error when encountering invalid "counted" negative message expectations.
227
- (Sergiy Yarinovskiy, rspec/rspec-mocks#1212)
228
- * Ensure `allow_any_instance_of` and `expect_any_instance_of` can be temporarily
229
- supressed. (Jon Rowe, rspec/rspec-mocks#1228)
230
- * Ensure `expect_any_instance_of(double).to_not have_received(:some_method)`
231
- fails gracefully (as its not supported) rather than issuing a `NoMethodError`.
232
- (Maxim Krizhanovsky, rspec/rspec-mocks#1231)
233
-
234
- ### 3.7.0 / 2017-10-17
235
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.6.0...v3.7.0)
236
-
237
- Enhancements:
238
-
239
- * Improve compatibility with `--enable-frozen-string-literal` option
240
- on Ruby 2.3+. (Pat Allan, rspec/rspec-mocks#1165)
241
-
242
- Bug Fixes:
243
-
244
- * Fix `hash_including` and `hash_excluding` so that they work against
245
- subclasses of `Hash`. (Aaron Rosenberg, rspec/rspec-mocks#1167)
246
-
247
- ### 3.6.0 / 2017-05-04
248
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.6.0.beta2...v3.6.0)
249
-
250
- Bug Fixes:
251
-
252
- * Fix "instance variable @color not initialized" warning when using
253
- rspec-mocks without rspec-core. (Myron Marston, rspec/rspec-mocks#1142)
254
- * Restore aliased module methods properly when stubbing on 1.8.7.
255
- (Samuel Giddins, rspec/rspec-mocks#1144)
256
- * Allow a message chain expectation to be constrained by argument(s).
257
- (Jon Rowe, rspec/rspec-mocks#1156)
258
-
259
- ### 3.6.0.beta2 / 2016-12-12
260
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.6.0.beta1...v3.6.0.beta2)
261
-
262
- Enhancements:
263
-
264
- * Add new `without_partial_double_verification { }` API that lets you
265
- temporarily turn off partial double verification for an example.
266
- (Jon Rowe, rspec/rspec-mocks#1104)
267
-
268
- ### 3.6.0.beta1 / 2016-10-09
269
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0...v3.6.0.beta1)
270
-
271
- Bug Fixes:
272
-
273
- * Return the test double instance form `#freeze` (Alessandro Berardi, rspec/rspec-mocks#1109)
274
- * Allow the special logic for stubbing `new` to work when `<Class>.method` has
275
- been redefined. (Proby, rspec/rspec-mocks#1119)
276
-
277
- ### 3.5.0 / 2016-07-01
278
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta4...v3.5.0)
279
-
280
- Enhancements:
281
-
282
- * Provides a nice string representation of
283
- `RSpec::Mocks::MessageExpectation` (Myron Marston, rspec/rspec-mocks#1095)
284
-
285
- ### 3.5.0.beta4 / 2016-06-05
286
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta3...v3.5.0.beta4)
287
-
288
- Enhancements:
289
-
290
- * Add `and_throw` to any instance handling. (Tobias Bühlmann, rspec/rspec-mocks#1068)
291
-
292
- ### 3.5.0.beta3 / 2016-04-02
293
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta2...v3.5.0.beta3)
294
-
295
- Enhancements:
296
-
297
- * Issue warning when attempting to use unsupported
298
- `allow(...).to receive(...).ordered`. (Jon Rowe, rspec/rspec-mocks#1000)
299
- * Add `rspec/mocks/minitest_integration`, to properly integrate rspec-mocks
300
- with minitest. (Myron Marston, rspec/rspec-mocks#1065)
301
-
302
- ### 3.5.0.beta2 / 2016-03-10
303
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta1...v3.5.0.beta2)
304
-
305
- Enhancements:
306
-
307
- * Improve error message displayed when using `and_wrap_original` on pure test
308
- doubles. (betesh, rspec/rspec-mocks#1063)
309
-
310
- Bug Fixes:
311
-
312
- * Fix issue that prevented `receive_message_chain(...).with(...)` working
313
- correctly on "any instance" mocks. (Jon Rowe, rspec/rspec-mocks#1061)
314
-
315
- ### 3.5.0.beta1 / 2016-02-06
316
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.1...v3.5.0.beta1)
317
-
318
- Bug Fixes:
319
-
320
- * Allow `any_instance_of(...).to receive(...)` to use `and_yield` multiple
321
- times. (Kilian Cirera Sant, rspec/rspec-mocks#1054)
322
- * Allow matchers which inherit from `rspec-mocks` matchers to be used for
323
- `allow`. (Andrew Kozin, rspec/rspec-mocks#1056)
324
- * Prevent stubbing `respond_to?` on partial doubles from causing infinite
325
- recursion. (Jon Rowe, rspec/rspec-mocks#1013)
326
- * Prevent aliased methods from disapearing after being mocked with
327
- `any_instance` (regression from rspec/rspec-mocks#1043). (Joe Rafaniello, rspec/rspec-mocks#1060)
328
-
329
- ### 3.4.1 / 2016-01-10
330
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.0...v3.4.1)
331
-
332
- Bug Fixes:
333
-
334
- * Fix `any_instance` to work properly on Ruby 2.3. (Joe Rafaniello, rspec/rspec-mocks#1043)
335
-
336
- ### 3.4.0 / 2015-11-11
337
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.2...v3.4.0)
338
-
339
- Enhancements:
340
-
341
- * Make `expect(...).to have_received` work without relying upon
342
- rspec-expectations. (Myron Marston, rspec/rspec-mocks#978)
343
- * Add option for failing tests when expectations are set on `nil`.
344
- (Liz Rush, rspec/rspec-mocks#983)
345
-
346
- Bug Fixes:
347
-
348
- * Fix `have_received { ... }` so that any block passed when the message
349
- was received is forwarded to the `have_received` block. (Myron Marston, rspec/rspec-mocks#1006)
350
- * Fix infinite loop in error generator when stubbing `respond_to?`.
351
- (Alex Dowad, rspec/rspec-mocks#1022)
352
- * Fix issue with using `receive` on subclasses (at a class level) with 1.8.7.
353
- (Alex Dowad, rspec/rspec-mocks#1026)
354
-
355
- ### 3.3.2 / 2015-07-15
356
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.1...v3.3.2)
357
-
358
- Bug Fixes:
359
-
360
- * Prevent thread deadlock errors during proxy creation (e.g. when using
361
- `before_verifying_doubles` callbacks). (Jon Rowe, rspec/rspec-mocks#980, rspec/rspec-mocks#979)
362
-
363
- ### 3.3.1 / 2015-06-19
364
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.0...v3.3.1)
365
-
366
- Bug Fixes:
367
-
368
- * Fix bug in `before_verifying_double` callback logic that caused it to be called
369
- once for each class in the ancestor list when mocking or stubbing a class. Now
370
- it is only called for the mocked or stubbed class, as you would expect. (Sam
371
- Phippen, rspec/rspec-mocks#974)
372
-
373
- ### 3.3.0 / 2015-06-12
374
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.2.1...v3.3.0)
375
-
376
- Enhancements:
377
-
378
- * When stubbing `new` on `MyClass` or `class_double(MyClass)`, use the
379
- method signature from `MyClass#initialize` to verify arguments.
380
- (Myron Marston, rspec/rspec-mocks#886)
381
- * Use matcher descriptions when generating description of received arguments
382
- for mock expectation failures. (Tim Wade, rspec/rspec-mocks#891)
383
- * Avoid loading `stringio` unnecessarily. (Myron Marston, rspec/rspec-mocks#894)
384
- * Verifying doubles failure messages now distinguish between class and instance
385
- level methods. (Tim Wade, rspec/rspec-mocks#896, rspec/rspec-mocks#908)
386
- * Improve mock expectation failure messages so that it combines both
387
- number of times and the received arguments in the output. (John Ceh, rspec/rspec-mocks#918)
388
- * Improve how test doubles are represented in failure messages.
389
- (Siva Gollapalli, Myron Marston, rspec/rspec-mocks#932)
390
- * Rename `RSpec::Mocks::Configuration#when_declaring_verifying_double` to
391
- `RSpec::Mocks::Configuration#before_verifying_doubles` and utilise when
392
- verifying partial doubles. (Jon Rowe, rspec/rspec-mocks#940)
393
- * Use rspec-support's `ObjectFormatter` for improved formatting of
394
- arguments in failure messages so that, for example, full time
395
- precisions is displayed for time objects. (Gavin Miller, Myron Marston, rspec/rspec-mocks#955)
396
-
397
- Bug Fixes:
398
-
399
- * Ensure expectations that raise eagerly also raise during RSpec verification.
400
- This means that if exceptions are caught inside test execution the test will
401
- still fail. (Sam Phippen, rspec/rspec-mocks#884)
402
- * Fix `have_received(msg).with(args).exactly(n).times` and
403
- `receive(msg).with(args).exactly(n).times` failure messages
404
- for when the message was received the wrong number of times with
405
- the specified args, and also received additional times with other
406
- arguments. Previously it confusingly listed the arguments as being
407
- mis-matched (even when the double was allowed to receive with any
408
- args) rather than listing the count. (John Ceh, rspec/rspec-mocks#918)
409
- * Fix `any_args`/`anything` support so that we avoid calling `obj == anything`
410
- on user objects that may have improperly implemented `==` in a way that
411
- raises errors. (Myron Marston, rspec/rspec-mocks#924)
412
- * Fix edge case involving stubbing the same method on a class and a subclass
413
- which previously hit a `NoMethodError` internally in RSpec. (Myron Marston rspec/rspec-mocks#954)
414
- * Fix edge case where the message received count would be incremented multiple
415
- times for one failure. (Myron Marston, rspec/rspec-mocks#957)
416
- * Fix failure messages for when spies received the expected message with
417
- different arguments and also received another message. (Maurício Linhares, rspec/rspec-mocks#960)
418
- * Silence whitespace-only diffs. (Myron Marston, rspec/rspec-mocks#969)
419
-
420
- ### 3.2.1 / 2015-02-23
421
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.2.0...v3.2.1)
422
-
423
- Bug Fixes:
424
-
425
- * Add missing `rspec/support/differ` require so that rspec-mocks can be
426
- used w/o rspec-expectations (which also loads the differ and hided the
427
- fact we forgot to require it). (Myron Marston, rspec/rspec-mocks#893)
428
- * Revert tracking of received arg mutation (added in 3.2.0 to provide an
429
- error in a situation we can't support) as our implementation has side
430
- effects on non-standard objects and there's no solution we could come
431
- up with that always works. (Myron Marston, rspec/rspec-mocks#900)
432
-
433
- ### 3.2.0 / 2015-02-03
434
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.3...v3.2.0)
435
-
436
- Enhancements:
437
-
438
- * Treat `any_args` as an arg splat, allowing it to match an arbitrary
439
- number of args at any point in an arg list. (Myron Marston, rspec/rspec-mocks#786)
440
- * Print diffs when arguments in mock expectations are mismatched.
441
- (Sam Phippen, rspec/rspec-mocks#751)
442
- * Support names for verified doubles (`instance_double`, `instance_spy`,
443
- `class_double`, `class_spy`, `object_double`, `object_spy`). (Cezary
444
- Baginski, rspec/rspec-mocks#826)
445
- * Make `array_including` and `hash_including` argument matchers composable.
446
- (Sam Phippen, rspec/rspec-mocks#819)
447
- * Make `allow_any_instance_of(...).to receive(...).and_wrap_original`
448
- work. (Ryan Fitzgerald, rspec/rspec-mocks#869)
449
-
450
- Bug Fixes:
451
-
452
- * Provide a clear error when users wrongly combine `no_args` with
453
- additional arguments (e.g. `expect().to receive().with(no_args, 1)`).
454
- (Myron Marston, rspec/rspec-mocks#786)
455
- * Provide a clear error when users wrongly use `any_args` multiple times in the
456
- same argument list (e.g. `expect().to receive().with(any_args, 1, any_args)`.
457
- (Myron Marston, rspec/rspec-mocks#786)
458
- * Prevent the error generator from using user object #description methods.
459
- See [rspec/rspec-mocks#685](https://github.com/rspec/rspec-mocks/issues/685).
460
- (Sam Phippen, rspec/rspec-mocks#751)
461
- * Make verified doubles declared as `(instance|class)_double(SomeConst)`
462
- work properly when `SomeConst` has previously been stubbed.
463
- `(instance|class)_double("SomeClass")` already worked properly.
464
- (Myron Marston, rspec/rspec-mocks#824)
465
- * Add a matcher description for `receive`, `receive_messages` and
466
- `receive_message_chain`. (Myron Marston, rspec/rspec-mocks#828)
467
- * Validate invocation args for null object verified doubles.
468
- (Myron Marston, rspec/rspec-mocks#829)
469
- * Fix `RSpec::Mocks::Constant.original` when called with an invalid
470
- constant to return an object indicating the constant name is invalid,
471
- rather than blowing up. (Myron Marston, rspec/rspec-mocks#833)
472
- * Make `extend RSpec::Mocks::ExampleMethods` on any object work properly
473
- to add the rspec-mocks API to that object. Previously, `expect` would
474
- be undefined. (Myron Marston, rspec/rspec-mocks#846)
475
- * Fix `require 'rspec/mocks/standalone'` so that it only affects `main`
476
- and not every object. It's really only intended to be used in a REPL
477
- like IRB, but some gems have loaded it, thinking it needs to be loaded
478
- when using rspec-mocks outside the context of rspec-core.
479
- (Myron Marston, rspec/rspec-mocks#846)
480
- * Prevent message expectations from being modified by customization methods
481
- (e.g. `with`) after they have been invoked. (Sam Phippen and Melanie Gilman, rspec/rspec-mocks#837)
482
- * Handle cases where a method stub cannot be removed due to something
483
- external to RSpec monkeying with the method definition. This can
484
- happen, for example, when you `file.reopen(io)` after previously
485
- stubbing a method on the `file` object. (Myron Marston, rspec/rspec-mocks#853)
486
- * Provide a clear error when received message args are mutated before
487
- a `have_received(...).with(...)` expectation. (Myron Marston, rspec/rspec-mocks#868)
488
-
489
- ### 3.1.3 / 2014-10-08
490
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.2...v3.1.3)
491
-
492
- Bug Fixes:
493
-
494
- * Correct received messages count when used with `have_received` matcher.
495
- (Jon Rowe, rspec/rspec-mocks#793)
496
- * Provide a clear error message when you use `allow_any_instance_of(...)` or
497
- `expect_any_instance_of(...)` with the `have_received` matcher (they are
498
- not intended to be used together and previously caused an odd internal
499
- failure in rspec-mocks). (Jon Rowe, rspec/rspec-mocks#799).
500
- * Fix verified double `with` verification so that it applies to method
501
- stubs. (Myron Marston, rspec/rspec-mocks#790)
502
-
503
- ### 3.1.2 / 2014-09-26
504
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.1...v3.1.2)
505
-
506
- Bug Fixes:
507
-
508
- * Provide a clear error message when you use `allow(...)` with the
509
- `have_received` matcher (they are not intended to be used together
510
- and previously caused an odd internal failure in rspec-mocks). (Jon Rowe, rspec/rspec-mocks#788).
511
-
512
- ### 3.1.1 / 2014-09-18
513
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.0...v3.1.1)
514
-
515
- Bug Fixes:
516
-
517
- * Prevent included modules being detected as prepended modules on Ruby 2.0
518
- when using `any_instance_of(...)`. (Tony Novak, rspec/rspec-mocks#781)
519
-
520
- ### 3.1.0 / 2014-09-04
521
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.4...v3.1.0)
522
-
523
- Enhancements:
524
-
525
- * Add spying methods (`spy`, `ìnstance_spy`, `class_spy` and `object_spy`)
526
- which create doubles as null objects for use with spying in testing. (Sam
527
- Phippen, rspec/rspec-mocks#671)
528
- * `have_received` matcher will raise "does not implement" errors correctly when
529
- used with verifying doubles and partial doubles. (Xavier Shay, rspec/rspec-mocks#722)
530
- * Allow matchers to be used in place of keyword arguments in `with`
531
- expectations. (Xavier Shay, rspec/rspec-mocks#726)
532
- * Add `thrice` modifier to message expectation interface as a synonym
533
- for `exactly(3).times`. (Dennis Taylor, rspec/rspec-mocks#753)
534
- * Add more `thrice` synonyms e.g. `.at_least(:thrice)`, `.at_most(:thrice)`,
535
- `receive(...).thrice` and `have_received(...).thrice`. (Jon Rowe, rspec/rspec-mocks#754)
536
- * Add `and_wrap_original` modifier for partial doubles to mutate the
537
- response from a method. (Jon Rowe, rspec/rspec-mocks#762)
538
-
539
- Bug Fixes:
540
-
541
- * Remove `any_number_of_times` from `any_instance` recorders that were
542
- erroneously causing mention of the method in documentation. (Jon Rowe, rspec/rspec-mocks#760)
543
- * Prevent included modules being detected as prepended modules on Ruby 2.0.
544
- (Eugene Kenny, rspec/rspec-mocks#771)
545
-
546
- ### 3.0.4 / 2014-08-14
547
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.3...v3.0.4)
548
-
549
- Bug Fixes:
550
-
551
- * Restore `kind_of(x)` to match using `arg.kind_of?(x)` (like RSpec 2)
552
- rather than `x === arg`. (Jon Rowe, rspec/rspec-mocks#750)
553
-
554
- ### 3.0.3 / 2014-07-21
555
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.2...v3.0.3)
556
-
557
- Bug Fixes:
558
-
559
- * `have_received` matcher will raise "does not implement" errors correctly when
560
- used with verifying doubles and partial doubles. (Xavier Shay, rspec/rspec-mocks#722)
561
- * Make `double.as_null_object.dup` and `double.as_null_object.clone`
562
- make the copies be null objects. (Myron Marston, rspec/rspec-mocks#732)
563
- * Don't inadvertently define `BasicObject` in 1.8.7. (Chris Griego, rspec/rspec-mocks#739)
564
-
565
- ### 3.0.2 / 2014-06-19
566
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.1...v3.0.2)
567
-
568
- Bug Fixes:
569
-
570
- * Fix edge case that triggered "can't add a new key into hash during
571
- iteration" during mock verification. (Sam Phippen, Myron Marston, rspec/rspec-mocks#711)
572
- * Fix verifying doubles so that when they accidentally leak into another
573
- example, they provide the same clear error message that normal doubles
574
- do. (Myron Marston, rspec/rspec-mocks#718)
575
- * Make `ordered` work with exact receive counts. (Sam Phippen, rspec/rspec-mocks#713)
576
-
577
- ### 3.0.1 / 2014-06-07
578
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0...v3.0.1)
579
-
580
- Bug Fixes:
581
-
582
- * Fix `receive_message_chain(...)` so that it supports `with` just like
583
- `stub_chain` did. (Jon Rowe, rspec/rspec-mocks#697)
584
- * Fix regression in `expect_any_instance_of` so that it expects the
585
- message on _any_ instance rather than on _every_ instance.
586
- (Myron Marston, rspec/rspec-mocks#699)
587
-
588
- ### 3.0.0 / 2014-06-01
589
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.rc1...v3.0.0)
590
-
591
- Bug Fixes:
592
-
593
- * Fix module prepend detection to work properly on ruby 2.0 for a case
594
- where a module is extended onto itself. (Myron Marston)
595
- * Fix `transfer_nested_constants` option so that transferred constants
596
- get properly reset at the end of the example. (Myron Marston)
597
- * Fix `config.transfer_nested_constants = true` so that you don't
598
- erroneously get errors when stubbing a constant that is not a module
599
- or a class. (Myron Marston)
600
- * Fix regression that caused `double(:class => SomeClass)` to later
601
- trigger infinite recursion. (Myron Marston)
602
- * Fix bug in `have_received(...).with(...).ordered` where it was not
603
- taking the args into account when checking the order. (Myron Marston)
604
- * Fix bug in `have_received(...).ordered` where it was wrongly
605
- considering stubs when checking the order. (Myron Marston)
606
- * Message expectation matchers now show descriptions from argument
607
- matchers when their expectations aren't met. (Jon Rowe)
608
- * Display warning when encountering `TypeError` during instance method
609
- staging on 2.0.0-p195, suffers from https://bugs.ruby-lang.org/issues/8686
610
- too. (Cezar Halmagean).
611
-
612
- ### 3.0.0.rc1 / 2014-05-18
613
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.beta2...v3.0.0.rc1)
614
-
615
- Breaking Changes for 3.0.0:
616
-
617
- * Remove `RSpec::Mocks::TestDouble.extend_onto`. (Myron Marston)
618
- * Remove `RSpec::Mocks::ConstantStubber`. (Jon Rowe)
619
- * Make monkey-patch of Marshal to support dumping of stubbed objects opt-in.
620
- (Xavier Shay)
621
-
622
- Enhancements:
623
-
624
- * Instead of crashing when cleaning up stub methods on a frozen object, it now
625
- issues a warning explaining that it's impossible to clean up the stubs.
626
- (Justin Coyne and Sam Phippen)
627
- * Add meaningful descriptions to `anything`, `duck_type` and `instance_of` argument
628
- matchers. (Jon Rowe)
629
-
630
- Bug Fixes:
631
-
632
- * Fix regression introduced in 3.0.0.beta2 that caused
633
- `double.as_null_object.to_str` to return the double rather
634
- than a string. (Myron Marston)
635
- * Fix bug in `expect(dbl).to receive_message_chain(:foo, :bar)` where it was
636
- not setting an expectation for the last message in the chain.
637
- (Jonathan del Strother)
638
- * Allow verifying partial doubles to have private methods stubbed. (Xavier Shay)
639
- * Fix bug with allowing/expecting messages on Class objects which have had
640
- their singleton class prepended to. (Jon Rowe)
641
- * Fix an issue with 1.8.7 not running implementation blocks on partial doubles.
642
- (Maurício Linhares)
643
- * Prevent `StackLevelTooDeep` errors when stubbing an `any_instance` method that's
644
- accessed in `inspect` by providing our own inspect output. (Jon Rowe)
645
- * Fix bug in `any_instance` logic that did not allow you to mock or stub
646
- private methods if `verify_partial_doubles` was configured. (Oren Dobzinski)
647
- * Include useful error message when trying to observe an unimplemented method
648
- on an any instance. (Xavier Shay)
649
- * Fix `and_call_original` to work properly when multiple classes in an
650
- inheritance hierarchy have been stubbed with the same method. (Myron Marston)
651
- * Fix `any_instance` so that it updates existing instances that have
652
- already been stubbed. (Myron Marston)
653
- * Fix verified doubles so that their class name is included in failure
654
- messages. (Myron Marston)
655
- * Fix `expect_any_instance_of` so that when the message is received
656
- on an individual instance that has been directly stubbed, it still
657
- satisfies the expectation. (Sam Phippen, Myron Marston)
658
- * Explicitly disallow using `any_instance` to mock or stub a method
659
- that is defined on a module prepended onto the class. This triggered
660
- `SystemStackError` before and is very hard to support so we are not
661
- supporting it at this time. (Myron Marston)
662
-
663
- ### 3.0.0.beta2 / 2014-02-17
664
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.beta1...v3.0.0.beta2)
665
-
666
- Breaking Changes for 3.0.0:
667
-
668
- * Rename `RSpec::Mocks::Mock` to `RSpec::Mocks::Double`. (Myron Marston)
669
- * Change how to integrate rspec-mocks in other test frameworks. You now
670
- need to include `RSpec::Mocks::ExampleMethods` in your test context.
671
- (Myron Marston)
672
- * Prevent RSpec mocks' doubles and partial doubles from being used outside of
673
- the per-test lifecycle (e.g. from a `before(:all)` hook). (Sam Phippen)
674
- * Remove the `host` argument of `RSpec::Mocks.setup`. Instead
675
- `RSpec::Mocks::ExampleMethods` should be included directly in the scope where
676
- RSpec's mocking capabilities are used. (Sam Phippen)
677
- * Make test doubles raise errors if you attempt to use them after they
678
- get reset, to help surface issues when you accidentally retain
679
- references to test doubles and attempt to reuse them in another
680
- example. (Myron Marston)
681
- * Remove support for `and_return { value }` and `and_return` without arguments. (Yuji Nakayama)
682
-
683
- Enhancements:
684
-
685
- * Add `receive_message_chain` which provides the functionality of the old
686
- `stub_chain` for the new allow/expect syntax. Use it like so: `allow(...).to
687
- receive_message_chain(:foo, :bar, :bazz)`. (Sam Phippen).
688
- * Change argument matchers to use `===` as their primary matching
689
- protocol, since their semantics mirror that of a case or rescue statement
690
- (which uses `===` for matching). (Myron Marston)
691
- * Add `RSpec::Mocks.with_temporary_scope`, which allows you to create
692
- temporary rspec-mocks scopes in arbitrary places (such as a
693
- `before(:all)` hook). (Myron Marston)
694
- * Support keyword arguments when checking arity with verifying doubles.
695
- (Xavier Shay)
696
-
697
- Bug Fixes:
698
-
699
- * Fix regression in 3.0.0.beta1 that caused `double("string_name" => :value)`
700
- to stop working. (Xavier Shay)
701
- * Fix the way rspec-mocks and rspec-core interact so that if users
702
- define a `let` with the same name as one of the methods
703
- from `RSpec::Mocks::ArgumentMatchers`, the user's `let` takes
704
- precedence. (Michi Huber, Myron Marston)
705
- * Fix verified doubles so that their methods match the visibility
706
- (public, protected or private) of the interface they verify
707
- against. (Myron Marston)
708
- * Fix verified null object doubles so that they do not wrongly
709
- report that they respond to anything. They only respond to methods
710
- available on the interface they verify against. (Myron Marston)
711
- * Fix deprecation warning for use of old `:should` syntax w/o explicit
712
- config so that it no longer is silenced by an extension gem such
713
- as rspec-rails when it calls `config.add_stub_and_should_receive_to`.
714
- (Sam Phippen)
715
- * Fix `expect` syntax so that it does not wrongly emit a "You're
716
- overriding a previous implementation for this stub" warning when
717
- you are not actually doing that. (Myron Marston)
718
- * Fix `any_instance.unstub` when used on sub classes for whom the super
719
- class has had `any_instance.stub` invoked on. (Jon Rowe)
720
- * Fix regression in `stub_chain`/`receive_message_chain` that caused
721
- it to raise an `ArgumentError` when passing args to the stubbed
722
- methods. (Sam Phippen)
723
- * Correct stub of undefined parent modules all the way down when stubbing a
724
- nested constant. (Xavier Shay)
725
- * Raise `VerifyingDoubleNotDefinedError` when a constant is not defined for
726
- a verifying class double. (Maurício Linhares)
727
- * Remove `Double#to_str`, which caused confusing `raise some_double`
728
- behavior. (Maurício Linhares)
729
-
730
- ### 3.0.0.beta1 / 2013-11-07
731
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.4...v3.0.0.beta1)
732
-
733
- Breaking Changes for 3.0.0:
734
-
735
- * Raise an explicit error if `should_not_receive(...).and_return` is used. (Sam
736
- Phippen)
737
- * Remove 1.8.6 workarounds. (Jon Rowe)
738
- * Remove `stub!` and `unstub!`. (Sam Phippen)
739
- * Remove `mock(name, methods)` and `stub(name, methods)`, leaving
740
- `double(name, methods)` for creating test doubles. (Sam Phippen, Michi Huber)
741
- * Remove `any_number_of_times` since `should_receive(:msg).any_number_of_times`
742
- is really a stub in a mock's clothing. (Sam Phippen)
743
- * Remove support for re-using the same null-object test double in multiple
744
- examples. Test doubles are designed to only live for one example.
745
- (Myron Marston)
746
- * Make `at_least(0)` raise an error. (Sam Phippen)
747
- * Remove support for `require 'spec/mocks'` which had been kept
748
- in place for backwards compatibility with RSpec 1. (Myron Marston)
749
- * Blocks provided to `with` are always used as implementation. (Xavier Shay)
750
- * The config option (added in 2.99) to yield the receiver to
751
- `any_instance` implementation blocks now defaults to "on". (Sam Phippen)
752
-
753
- Enhancements:
754
-
755
- * Allow the `have_received` matcher to use a block to set further expectations
756
- on arguments. (Tim Cowlishaw)
757
- * Provide `instance_double` and `class_double` to create verifying doubles,
758
- ported from `rspec-fire`. (Xavier Shay)
759
- * `as_null_object` on a verifying double only responds to defined methods.
760
- (Xavier Shay)
761
- * Provide `object_double` to create verified doubles of specific object
762
- instances. (Xavier Shay)
763
- * Provide `verify_partial_doubles` configuration that provides `object_double`
764
- like verification behaviour on partial doubles. (Xavier Shay)
765
- * Improved performance of double creation, particularly those with many
766
- attributes. (Xavier Shay)
767
- * Default value of `transfer_nested_constants` option for constant stubbing can
768
- be configured. (Xavier Shay)
769
- * Messages can be allowed or expected on in bulk via
770
- `receive_messages(:message => :value)`. (Jon Rowe)
771
- * `allow(Klass.any_instance)` and `expect(Klass.any_instance)` now print a
772
- warning. This is usually a mistake, and users usually want
773
- `allow_any_instance_of` or `expect_any_instance_of` instead. (Sam Phippen)
774
- * `instance_double` and `class_double` raise `ArgumentError` if the underlying
775
- module is loaded and the arity of the method being invoked does not match the
776
- arity of the method as it is actually implemented. (Andy Lindeman)
777
- * Spies can now check their invocation ordering is correct. (Jon Rowe)
778
-
779
- Deprecations:
780
-
781
- * Using the old `:should` syntax without explicitly configuring it
782
- is deprecated. It will continue to work but will emit a deprecation
783
- warning in RSpec 3 if you do not explicitly enable it. (Sam Phippen)
784
-
785
- Bug Fixes:
786
-
787
- * Fix `and_call_original` to handle a complex edge case involving
788
- singleton class ancestors. (Marc-André Lafortune, Myron Marston)
789
- * When generating an error message for unexpected arguments,
790
- use `#inspect` rather than `#description` if `#description`
791
- returns `nil` or `''` so that you still get a useful message.
792
- (Nick DeLuca)
793
-
794
- ### 2.99.4 / 2015-06-19
795
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.3...v2.99.4)
796
-
797
- Bug Fixes:
798
-
799
- * Add missing deprecation for using `with` with no arguments e.g. `with()`. (Yousuke, rspec/rspec-mocks#970)
800
-
801
- ### 2.99.3 / 2015-01-09
802
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.2...v2.99.3)
803
-
804
- Bug Fixes:
805
-
806
- * Fix regression that caused an error when a test double was deserialized from YAML. (Yuji Nakayama, rspec/rspec-mocks#777)
807
-
808
- ### 2.99.2 / 2014-07-21
809
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.1...v2.99.2)
810
-
811
- Enhancements:
812
-
813
- * Warn about upcoming change to `#===` matching and `DateTime#===` behaviour.
814
- (Jon Rowe, rspec/rspec-mocks#735)
815
-
816
- ### 2.99.1 / 2014-06-12
817
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0...v2.99.1)
818
-
819
- Bug Fixes:
820
-
821
- * Fix bug that caused errors at the end of each example
822
- when a `double.as_null_object` had been frozen. (Yuji Nakayama, rspec/rspec-mocks#698)
823
-
824
- Deprecations:
825
-
826
- * Deprecate freezing a test double. (Yuji Nakayama, rspec/rspec-mocks#698)
827
-
828
- ### 2.99.0 / 2014-06-01
829
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.rc1...v2.99.0)
830
-
831
- No changes. Just taking it out of pre-release.
832
-
833
- ### 2.99.0.rc1 / 2014-05-18
834
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.beta2...v2.99.0.rc1)
835
-
836
- Deprecations:
837
-
838
- * Deprecate `RSpec::Mocks::TestDouble.extend_onto`. (Myron Marston)
839
- * Deprecate `RSpec::Mocks::ConstantStubber`. (Jon Rowe)
840
- * Deprecate `Marshal.dump` monkey-patch without opt-in. (Xavier Shay)
841
-
842
- ### 2.99.0.beta2 / 2014-02-17
843
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.beta1...v2.99.0.beta2)
844
-
845
- Deprecations:
846
-
847
- * Deprecate `RSpec::Mocks::Mock` in favor of `RSpec::Mocks::Double`.
848
- (Myron Marston)
849
- * Deprecate the `host` argument of `RSpec::Mocks.setup`. Instead
850
- `RSpec::Mocks::ExampleMethods` should be included directly in the scope where
851
- RSpec's mocking capabilities are used. (Sam Phippen)
852
- * Deprecate using any of rspec-mocks' features outside the per-test
853
- lifecycle (e.g. from a `before(:all)` hook). (Myron Marston)
854
- * Deprecate re-using a test double in another example. (Myron Marston)
855
- * Deprecate `and_return { value }` and `and_return` without arguments. (Yuji Nakayama)
856
-
857
- ### 2.99.0.beta1 / 2013-11-07
858
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.4...v2.99.0.beta1)
859
-
860
- Deprecations
861
-
862
- * Expecting to use lambdas or other strong arity implementations for stub
863
- methods with mis-matched arity is deprecated and support for them will be
864
- removed in 3.0. Either provide the right amount of arguments or use a weak
865
- arity implementation (methods with splats or procs). (Jon Rowe)
866
- * Using the same test double instance in multiple examples is deprecated. Test
867
- doubles are only meant to live for one example. The mocks and stubs have
868
- always been reset between examples; however, in 2.x the `as_null_object`
869
- state was not reset and some users relied on this to have a null object
870
- double that is used for many examples. This behavior will be removed in 3.0.
871
- (Myron Marston)
872
- * Print a detailed warning when an `any_instance` implementation block is used
873
- when the new `yield_receiver_to_any_instance_implementation_blocks` config
874
- option is not explicitly set, as RSpec 3.0 will default to enabling this new
875
- feature. (Sam Phippen)
876
-
877
- Enhancements:
878
-
879
- * Add a config option to yield the receiver to `any_instance` implementation
880
- blocks. (Sam Phippen)
881
-
882
- ### 2.14.6 / 2014-02-20
883
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.5...v2.14.6)
884
-
885
- Bug Fixes:
886
-
887
- * Ensure `any_instance` method stubs and expectations are torn down regardless of
888
- expectation failures. (Sam Phippen)
889
-
890
- ### 2.14.5 / 2014-02-01
891
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.4...v2.14.5)
892
-
893
- Bug Fixes:
894
-
895
- * Fix regression that caused block implementations to not receive all
896
- args on 1.8.7 if the block also receives a block, due to Proc#arity
897
- reporting `1` no matter how many args the block receives if it
898
- receives a block, too. (Myron Marston)
899
-
900
- ### 2.14.4 / 2013-10-15
901
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.3...v2.14.4)
902
-
903
- Bug Fixes:
904
-
905
- * Fix issue where unstubing methods on "any instances" would not
906
- remove stubs on existing instances (Jon Rowe)
907
- * Fix issue with receive(:message) do ... end precedence preventing
908
- the usage of modifications (`and_return` etc) (Jon Rowe)
909
-
910
- ### 2.14.3 / 2013-08-08
911
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.2...v2.14.3)
912
-
913
- Bug Fixes:
914
-
915
- * Fix stubbing some instance methods for classes whose hierarchy includes
916
- a prepended Module (Bradley Schaefer)
917
-
918
- ### 2.14.2 / 2013-07-30
919
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.1...v2.14.2)
920
-
921
- Bug Fixes:
922
-
923
- * Fix `as_null_object` doubles so that they return `nil` from `to_ary`
924
- (Jon Rowe).
925
- * Fix regression in 2.14 that made `stub!` (with an implicit receiver)
926
- return a test double rather than stub a method (Myron Marston).
927
-
928
- ### 2.14.1 / 2013-07-07
929
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.0...v2.14.1)
930
-
931
- Bug Fixes:
932
-
933
- * Restore `double.as_null_object` behavior from 2.13 and earlier: a
934
- double's nullness persisted between examples in earlier examples.
935
- While this is not an intended use case (test doubles are meant to live
936
- for only one example), we don't want to break behavior users rely
937
- on in a minor relase. This will be deprecated in 2.99 and removed
938
- in 3.0. (Myron Marston)
939
-
940
- ### 2.14.0 / 2013-07-06
941
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.0.rc1...v2.14.0)
942
-
943
- Enhancements:
944
-
945
- * Document test spies in the readme. (Adarsh Pandit)
946
- * Add an `array_including` matcher. (Sam Phippen)
947
- * Add a syntax-agnostic API for mocking or stubbing a method. This is
948
- intended for use by libraries such as rspec-rails that need to mock
949
- or stub a method, and work regardless of the syntax the user has
950
- configured (Paul Annesley, Myron Marston and Sam Phippen).
951
-
952
- Bug Fixes:
953
-
954
- * Fix `double` so that it sets up passed stubs correctly regardless of
955
- the configured syntax (Paul Annesley).
956
- * Allow a block implementation to be used in combination with
957
- `and_yield`, `and_raise`, `and_return` or `and_throw`. This got fixed
958
- in 2.13.1 but failed to get merged into master for the 2.14.0.rc1
959
- release (Myron Marston).
960
- * `Marshal.dump` does not unnecessarily duplicate objects when rspec-mocks has
961
- not been fully initialized. This could cause errors when using `spork` or
962
- similar preloading gems (Andy Lindeman).
963
-
964
- ### 2.14.0.rc1 / 2013-05-27
965
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.13.0...v2.14.0.rc1)
966
-
967
- Enhancements:
968
-
969
- * Refactor internals so that the mock proxy methods and state are held
970
- outside of the mocked object rather than inside it. This paves the way
971
- for future syntax enhancements and removes the need for some hacky
972
- work arounds for `any_instance` dup'ing and `YAML` serialization,
973
- among other things. Note that the code now relies upon `__id__`
974
- returning a unique, consistent value for any object you want to
975
- mock or stub (Myron Marston).
976
- * Add support for test spies. This allows you to verify a message
977
- was received afterwards using the `have_received` matcher.
978
- Note that you must first stub the method or use a null double.
979
- (Joe Ferris and Joël Quenneville)
980
- * Make `at_least` and `at_most` style receive expectations print that they were
981
- expecting at least or at most some number of calls, rather than just the
982
- number of calls given in the expectation (Sam Phippen)
983
- * Make `with` style receive expectations print the args they were expecting, and
984
- the args that they got (Sam Phippen)
985
- * Fix some warnings seen under ruby 2.0.0p0 (Sam Phippen).
986
- * Add a new `:expect` syntax for message expectations
987
- (Myron Marston and Sam Phippen).
988
-
989
- Bug fixes
990
-
991
- * Fix `any_instance` so that a frozen object can be `dup`'d when methods
992
- have been stubbed on that type using `any_instance` (Jon Rowe).
993
- * Fix `and_call_original` so that it properly raises an `ArgumentError`
994
- when the wrong number of args are passed (Jon Rowe).
995
- * Fix `double` on 1.9.2 so you can wrap them in an Array
996
- using `Array(my_double)` (Jon Rowe).
997
- * Fix `stub_const` and `hide_const` to handle constants that redefine `send`
998
- (Sam Phippen).
999
- * Fix `Marshal.dump` extension so that it correctly handles nil.
1000
- (Luke Imhoff, Jon Rowe)
1001
- * Fix isolation of `allow_message_expectations_on_nil` (Jon Rowe)
1002
- * Use inspect to format actual arguments on expectations in failure messages (rspec/rspec-mocks#280, Ben Langfeld)
1003
- * Protect against improperly initialised test doubles (rspec/rspec-mocks#293) (Joseph Shraibman and Jon Rowe)
1004
-
1005
- Deprecations
1006
-
1007
- * Deprecate `stub` and `mock` as aliases for `double`. `double` is the
1008
- best term for creating a test double, and it reduces confusion to
1009
- have only one term (Michi Huber).
1010
- * Deprecate `stub!` and `unstub!` in favor of `stub` and `unstub`
1011
- (Jon Rowe).
1012
- * Deprecate `at_least(0).times` and `any_number_of_times` (Michi Huber).
1013
-
1014
- ### 2.13.1 / 2013-04-06
1015
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.13.0...v2.13.1)
1016
-
1017
- Bug fixes
1018
-
1019
- * Allow a block implementation to be used in combination with
1020
- `and_yield`, `and_raise`, `and_return` or `and_throw` (Myron Marston).
1021
-
1022
- ### 2.13.0 / 2013-02-23
1023
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.2...v2.13.0)
1024
-
1025
- Bug fixes
1026
-
1027
- * Fix bug that caused weird behavior when a method that had
1028
- previously been stubbed with multiple return values (e.g.
1029
- `obj.stub(:foo).and_return(1, 2)`) was later mocked with a
1030
- single return value (e.g. `obj.should_receive(:foo).once.and_return(1)`).
1031
- (Myron Marston)
1032
- * Fix bug related to a mock expectation for a method that already had
1033
- multiple stubs with different `with` constraints. Previously, the
1034
- first stub was used, even though it may not have matched the passed
1035
- args. The fix defers this decision until the message is received so
1036
- that the proper stub response can be chosen based on the passed
1037
- arguments (Myron Marston).
1038
- * Do not call `nil?` extra times on a mocked object, in case `nil?`
1039
- itself is expected a set number of times (Myron Marston).
1040
- * Fix `missing_default_stub_error` message so array args are handled
1041
- properly (Myron Marston).
1042
- * Explicitly disallow `any_instance.unstub!` (Ryan Jones).
1043
- * Fix `any_instance` stubbing so that it works with `Delegator`
1044
- subclasses (Myron Marston).
1045
- * Fix `and_call_original` so that it works with `Delegator` subclasses
1046
- (Myron Marston).
1047
- * Fix `any_instance.should_not_receive` when `any_instance.should_receive`
1048
- is used on the same class in the same example. Previously it would
1049
- wrongly report a failure even when the message was not received
1050
- (Myron Marston).
1051
-
1052
- ### 2.12.2 / 2013-01-27
1053
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.1...v.2.12.2)
1054
-
1055
- Bug fixes
1056
-
1057
- * Fix `and_call_original` to work properly for methods defined
1058
- on a module extended onto an object instance (Myron Marston).
1059
- * Fix `stub_const` with an undefined constnat name to work properly
1060
- with constant strings that are prefixed with `::` -- and edge case
1061
- I missed in the bug fix in the 2.12.1 release (Myron Marston).
1062
- * Ensure method visibility on a partial mock is restored after reseting
1063
- method stubs, even on a singleton module (created via `extend self`)
1064
- when the method visibility differs between the instance and singleton
1065
- versions (Andy Lindeman).
1066
-
1067
- ### 2.12.1 / 2012-12-21
1068
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.0...v2.12.1)
1069
-
1070
- Bug fixes
1071
-
1072
- * Fix `any_instance` to support `and_call_original`.
1073
- (Myron Marston)
1074
- * Properly restore stubbed aliased methods on rubies
1075
- that report the incorrect owner (Myron Marston and Andy Lindeman).
1076
- * Fix `hide_const` and `stub_const` with a defined constnat name to
1077
- work properly with constant strings that are prefixed with `::` (Myron Marston).
1078
-
1079
- ### 2.12.0 / 2012-11-12
1080
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.3...v2.12.0)
1081
-
1082
- Enhancements
1083
-
1084
- * `and_raise` can accept an exception class and message, more closely
1085
- matching `Kernel#raise` (e.g., `foo.stub(:bar).and_raise(RuntimeError, "message")`)
1086
- (Bas Vodde)
1087
- * Add `and_call_original`, which will delegate the message to the
1088
- original method (Myron Marston).
1089
-
1090
- Deprecations:
1091
-
1092
- * Add deprecation warning when using `and_return` with `should_not_receive`
1093
- (Neha Kumari)
1094
-
1095
- ### 2.11.3 / 2012-09-19
1096
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.2...v2.11.3)
1097
-
1098
- Bug fixes
1099
-
1100
- * Fix `:transfer_nested_constants` option of `stub_const` so that it
1101
- doesn't blow up when there are inherited constants. (Myron Marston)
1102
- * `any_instance` stubs can be used on classes that override `Object#method`.
1103
- (Andy Lindeman)
1104
- * Methods stubbed with `any_instance` are unstubbed after the test finishes.
1105
- (Andy Lindeman)
1106
- * Fix confusing error message when calling a mocked class method an
1107
- extra time with the wrong arguments (Myron Marston).
1108
-
1109
- ### 2.11.2 / 2012-08-11
1110
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.1...v2.11.2)
1111
-
1112
- Bug fixes
1113
-
1114
- * Don't modify `dup` on classes that don't support `dup` (David Chelimsky)
1115
- * Fix `any_instance` so that it works properly with methods defined on
1116
- a superclass. (Daniel Eguzkiza)
1117
- * Fix `stub_const` so that it works properly for nested constants that
1118
- share a name with a top-level constant (e.g. "MyGem::Hash"). (Myron
1119
- Marston)
1120
-
1121
- ### 2.11.1 / 2012-07-09
1122
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.0...v2.11.1)
1123
-
1124
- Bug fixes
1125
-
1126
- * Fix `should_receive` so that when it is called on an `as_null_object`
1127
- double with no implementation, and there is a previous explicit stub
1128
- for the same method, the explicit stub remains (rather than being
1129
- overridden with the null object implementation--`return self`). (Myron
1130
- Marston)
1131
-
1132
- ### 2.11.0 / 2012-07-07
1133
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.1...v2.11.0)
1134
-
1135
- Enhancements
1136
-
1137
- * Expose ArgumentListMatcher as a formal API
1138
- * supports use by 3rd party mock frameworks like Surrogate
1139
- * Add `stub_const` API to stub constants for the duration of an
1140
- example (Myron Marston).
1141
-
1142
- Bug fixes
1143
-
1144
- * Fix regression of edge case behavior. `double.should_receive(:foo) { a }`
1145
- was causing a NoMethodError when `double.stub(:foo).and_return(a, b)`
1146
- had been setup before (Myron Marston).
1147
- * Infinite loop generated by using `any_instance` and `dup`. (Sidu Ponnappa @kaiwren)
1148
- * `double.should_receive(:foo).at_least(:once).and_return(a)` always returns a
1149
- even if `:foo` is already stubbed.
1150
- * Prevent infinite loop when interpolating a null double into a string
1151
- as an integer (`"%i" % double.as_null_object`). (Myron Marston)
1152
- * Fix `should_receive` so that null object behavior (e.g. returning
1153
- self) is preserved if no implementation is given (Myron Marston).
1154
- * Fix `and_raise` so that it raises `RuntimeError` rather than
1155
- `Exception` by default, just like ruby does. (Andrew Marshall)
1156
-
1157
- ### 2.10.1 / 2012-05-05
1158
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.0...v2.10.1)
1159
-
1160
- Bug fixes
1161
-
1162
- * fix regression of edge case behavior
1163
- (https://github.com/rspec/rspec-mocks/issues/132)
1164
- * fixed failure of `object.should_receive(:message).at_least(0).times.and_return value`
1165
- * fixed failure of `object.should_not_receive(:message).and_return value`
1166
-
1167
- ### 2.10.0 / 2012-05-03
1168
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.9.0...v2.10.0)
1169
-
1170
- Bug fixes
1171
-
1172
- * fail fast when an `exactly` or `at_most` expectation is exceeded
1173
-
1174
- ### 2.9.0 / 2012-03-17
1175
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0...v2.9.0)
1176
-
1177
- Enhancements
1178
-
1179
- * Support order constraints across objects (preethiramdev)
1180
-
1181
- Bug fixes
1182
-
1183
- * Allow a `as_null_object` to be passed to `with`
1184
- * Pass proc to block passed to stub (Aubrey Rhodes)
1185
- * Initialize child message expectation args to match any args (rspec/rspec-mocks#109 -
1186
- preethiramdev)
1187
-
1188
- ### 2.8.0 / 2012-01-04
1189
-
1190
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0.rc2...v2.8.0)
1191
-
1192
- No changes for this release. Just releasing with the other rspec gems.
1193
-
1194
- ### 2.8.0.rc2 / 2011-12-19
1195
-
1196
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0.rc1...v2.8.0.rc2)
1197
-
1198
- No changes for this release. Just releasing with the other rspec gems.
1199
-
1200
- ### 2.8.0.rc1 / 2011-11-06
1201
-
1202
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.7.0...v2.8.0.rc1)
1203
-
1204
- Enhancements
1205
-
1206
- * Eliminate Ruby warnings (Matijs van Zuijlen)
1207
-
1208
- ### 2.7.0 / 2011-10-16
1209
-
1210
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.6.0...v2.7.0)
1211
-
1212
- Enhancements
1213
-
1214
- * Use `__send__` rather than `send` (alextk)
1215
- * Add support for `any_instance.stub_chain` (Sidu Ponnappa)
1216
- * Add support for `any_instance` argument matching based on `with` (Sidu
1217
- Ponnappa and Andy Lindeman)
1218
-
1219
- Changes
1220
-
1221
- * Check for `failure_message_for_should` or `failure_message` instead of
1222
- `description` to detect a matcher (Tibor Claassen)
1223
-
1224
- Bug fixes
1225
-
1226
- * pass a hash to `any_instance.stub`. (Justin Ko)
1227
- * allow `to_ary` to be called without raising `NoMethodError` (Mikhail
1228
- Dieterle)
1229
- * `any_instance` properly restores private methods (Sidu Ponnappa)
1230
-
1231
- ### 2.6.0 / 2011-05-12
1232
-
1233
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.5.0...v2.6.0)
1234
-
1235
- Enhancements
1236
-
1237
- * Add support for `any_instance.stub` and `any_instance.should_receive` (Sidu
1238
- Ponnappa and Andy Lindeman)
1239
-
1240
- Bug fixes
1241
-
1242
- * fix bug in which multiple chains with shared messages ending in hashes failed
1243
- to return the correct value
1244
-
1245
- ### 2.5.0 / 2011-02-05
1246
-
1247
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.4.0...v2.5.0)
1248
-
1249
- Bug fixes
1250
-
1251
- * message expectation counts now work in combination with a stub (Damian
1252
- Nurzynski)
1253
- * fix failure message when message received with incorrect args (Josep M.
1254
- Bach)
1255
-
1256
- ### 2.4.0 / 2011-01-02
1257
-
1258
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.3.0...v2.4.0)
1259
-
1260
- No functional changes in this release, which was made to align with the
1261
- rspec-core-2.4.0 release.
1262
-
1263
- ### 2.3.0 / 2010-12-12
1264
-
1265
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.2.0...v2.3.0)
1266
-
1267
- Bug fixes
1268
-
1269
- * Fix our Marshal extension so that it does not interfere with objects that
1270
- have their own `@mock_proxy` instance variable. (Myron Marston)
1271
-
1272
- ### 2.2.0 / 2010-11-28
1273
-
1274
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.1.0...v2.2.0)
1275
-
1276
- Enhancements
1277
-
1278
- * Added "rspec/mocks/standalone" for exploring the rspec-mocks in irb.
1279
-
1280
- Bug fix
1281
-
1282
- * Eliminate warning on splat args without parens (Gioele Barabucci)
1283
- * Fix bug where `obj.should_receive(:foo).with(stub.as_null_object)` would pass
1284
- with a false positive.
1285
-
1286
- ### 2.1.0 / 2010-11-07
1287
-
1288
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.1...v2.1.0)
1289
-
1290
- Bug fixes
1291
-
1292
- * Fix serialization of stubbed object (Josep M Bach)
1293
-
1294
- ### 2.0.0 / 2010-10-10
1295
-
1296
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.22...v2.0.0)
1297
-
1298
- ### 2.0.0.rc / 2010-10-05
1299
-
1300
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.22...v2.0.0.rc)
1301
-
1302
- Enhancements
1303
-
1304
- * support passing a block to an expectation block (Nicolas Braem)
1305
- * `obj.should_receive(:msg) {|&block| ... }`
1306
-
1307
- Bug fixes
1308
-
1309
- * Fix YAML serialization of stub (Myron Marston)
1310
- * Fix rdoc rake task (Hans de Graaff)
1311
-
1312
- ### 2.0.0.beta.22 / 2010-09-12
1313
-
1314
- [Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.20...v2.0.0.beta.22)
1315
-
1316
- Bug fixes
1317
-
1318
- * fixed regression that broke `obj.stub_chain(:a, :b => :c)`
1319
- * fixed regression that broke `obj.stub_chain(:a, :b) { :c }`
1320
- * `respond_to?` always returns true when using `as_null_object`