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,1358 +0,0 @@
1
- ### Development
2
- [Full Changelog](https://github.com/rspec/rspec/compare/rspec-expectations-v3.13.4...3-13-maintenance)
3
-
4
- ### 3.13.4 / 2025-05-01
5
-
6
- Bug Fixes:
7
-
8
- * Prevent `match` from trying to compare strings and arrays using `Array#match`. (Joseph Haig, rspec/rspec#183)
9
-
10
- ### 3.13.3 / 2024-09-07
11
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.2...v3.13.3)
12
-
13
- Bug Fixes:
14
-
15
- * Fix passing a regular expression to the `include` matcher without a count constraint.
16
- (Jon Rowe, rspec/rspec-expectations#1485)
17
-
18
- ### 3.13.2 / 2024-08-20
19
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.1...v3.13.2)
20
-
21
- Bug Fixes:
22
-
23
- * When using null object doubles, prevent typos triggering dynamic matchers.
24
- (Eric Mueller, rspec/rspec-expectations#1455)
25
- * Use `RSpec.warning` for an expectation warning rather than `Kernel.warn`. (Jon Rowe, rspec/rspec-expectations#1472)
26
- * Prevent mismatched use of block and value matchers in compound expectations. (Phil Pirozhkov, rspec/rspec-expectations#1476)
27
- * Raise an error when passing no arguments to the `include` matcher. (Eric Mueller, rspec/rspec-expectations#1479)
28
-
29
- ### 3.13.1 / 2024-06-13
30
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.0...v3.13.1)
31
-
32
- Bug Fixes:
33
-
34
- * Fix the "false positive" warning message when using a negated `raise_error` matcher
35
- with a `RegExp` instance. (Eric Mueller, rspec/rspec-expectations#1456)
36
-
37
- ### 3.13.0 / 2024-02-04
38
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.4...v3.13.0)
39
-
40
- Enhancements:
41
-
42
- * Update `eq` and `eql` matchers to better highlight difference in string encoding.
43
- (Alan Foster, rspec/rspec-expectations#1425)
44
-
45
- ### 3.12.4 / 2024-02-04
46
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.3...v3.12.4)
47
-
48
- Bug Fixes:
49
-
50
- * Fix the diff for redefined `actual` and reassigned `@actual` in compound
51
- expectations failure messages. (Phil Pirozhkov, rspec/rspec-expectations#1440)
52
-
53
- ### 3.12.3 / 2023-04-20
54
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.2...v3.12.3)
55
-
56
- Bug Fixes:
57
-
58
- * Fix `include` matcher when fuzzy matching on keys with a hash-like actual which
59
- has a non standard `key?` method which may raise.
60
- (Jon Rowe, rspec/rspec-expectations#1416)
61
-
62
- ### 3.12.2 / 2023-01-07
63
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.1...v3.12.2)
64
-
65
- Bug Fixes:
66
-
67
- * Prevent deprecation warning when using the `exist` matcher with `Dir`.
68
- (Steve Dierker, rspec/rspec-expectations#1398)
69
-
70
- ### 3.12.1 / 2022-12-16
71
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.0...v3.12.1)
72
-
73
- Bug Fixes:
74
-
75
- * Pass keyword arguments through to aliased (and thus negated) matchers. (Jon Rowe, rspec/rspec-expectations#1394)
76
- * When handling failures in an aggregated_failures block (or example) prevent
77
- the failure list leaking out. (Maciek Rząsa, rspec/rspec-expectations#1392)
78
-
79
- ### 3.12.0 / 2022-10-26
80
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.11.1...v3.12.0)
81
-
82
- Enhancements:
83
-
84
- * Add `an_array_matching` alias for `match_array` to improve readability as an argument
85
- matcher. (Mark Schneider, rspec/rspec-expectations#1361)
86
-
87
- ### 3.11.1 / 2022-09-12
88
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.11.0...v3.11.1)
89
-
90
- Bug Fixes:
91
-
92
- * Allow the `contain_exactly` matcher to be reused by resetting its
93
- internals on `matches?` (@bclayman-sq, rspec/rspec-expectations#1326)
94
- * Using the exist matcher on `FileTest` no longer produces a deprecation warning.
95
- (Ryo Nakamura, rspec/rspec-expectations#1383)
96
-
97
- ### 3.11.0 / 2022-02-09
98
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.10.2...v3.11.0)
99
-
100
- Enhancements:
101
-
102
- * Return `true` from `aggregate_failures` when no exception occurs. (Jon Rowe, rspec/rspec-expectations#1225)
103
-
104
- Deprecations:
105
-
106
- * Print a deprecation message when using the implicit block expectation syntax.
107
- (Phil Pirozhkov, rspec/rspec-expectations#1139)
108
-
109
- ### 3.10.2 / 2022-01-14
110
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.10.1...v3.10.2)
111
-
112
- Bug Fixes:
113
-
114
- * Fix support for dynamic matchers for expectation target checks (Phil Pirozhkov, rspec/rspec-expectations#1294)
115
- * Fix `expect(array).to include(hash).times`, previously this would fail due to
116
- matching the entire array as a single hash, rather than a member of the hash.
117
- (Slava Kardakov, rspec/rspec-expectations#1322)
118
- * Ensure `raise_error` matches works with the `error_highlight` option from Ruby 3.1.
119
- (Peter Goldstein, rspec/rspec-expectations#1339)
120
-
121
- ### 3.10.1 / 2020-12-27
122
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.10.0...v3.10.1)
123
-
124
- Bug Fixes:
125
-
126
- * Allow JRuby 9.2.x.x to generate backtraces normally rather than via our
127
- backfill workaround. (rspec/rspec-expectations#1230, Jon Rowe)
128
-
129
- ### 3.10.0 / 2020-10-30
130
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.9.3...v3.10.0)
131
-
132
- Enhancements:
133
-
134
- * Allow `include` matcher to be chained with `once`, `at_least`, etc. for simple cases.
135
- (Marc-André Lafortune, rspec/rspec-expectations#1168)
136
- * Add an explicit warning when `nil` is passed to `raise_error`. (Phil Pirozhkov, rspec/rspec-expectations#1143)
137
- * Improve `include` matcher's composability. (Phil Pirozhkov, rspec/rspec-expectations#1155)
138
- * Mocks expectations can now set a custom failure message.
139
- (Benoit Tigeot and Nicolas Zermati, rspec/rspec-expectations#1156)
140
- * `aggregate_failures` now shows the backtrace line for each failure. (Fabricio Bedin, rspec/rspec-expectations#1163)
141
- * Support multiple combinations of `yield_control` modifiers like `at_least`, `at_most`.
142
- (Jon Rowe, rspec/rspec-expectations#1169)
143
- * Dynamic `have_<n>` matchers now have output consistent with other dynamic matchers.
144
- (Marc-André Lafortune, rspec/rspec-expectations#1195)
145
- * New config option `strict_predicate_matchers` allows predicate matcher to be strict
146
- (i.e. match for `true` or `false`) instead of the default (match truthy vs `false` or `nil`).
147
- (Marc-André Lafortune, rspec/rspec-expectations#1196)
148
-
149
- ### 3.9.4 / 2020-10-29
150
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.9.3...v3.9.4)
151
-
152
- Bug Fixes:
153
-
154
- * Fix regression with `be_` and `have_` matchers and arguments implementing `to_hash`
155
- were they would act like keywords and be cast to a hash. (Jon Rowe, rspec/rspec-expectations#1222)
156
-
157
- ### 3.9.3 / 2020-10-23
158
-
159
- Bug Fixes:
160
-
161
- * Swap the comparison of the delta vs the expected for the `be_within` matcher allowing
162
- more complicated oobjects to be compared providing they provide `abs` and other
163
- comparison methods. (Kelly Stannard, rspec/rspec-expectations#1182)
164
- * Properly format expected in the description of the `be_within` matcher. (Jon Rowe, rspec/rspec-expectations#1185)
165
- * Remove warning when using keyword arguments with `be_` and `have_` matchers on 2.7.x
166
- (Jon Rowe, rspec/rspec-expectations#1187)
167
- * Prevent formatting a single hash as a list of key value pairs in default failure messages
168
- for custom matches (fixes formatting in `EnglishPhrasing#list`). (Robert Eshleman, rspec/rspec-expectations#1193)
169
- * Prevent errors from causing false positives when using `be <operator>` comparison, e.g.
170
- `expect(1).not_to be < 'a'` will now correctly fail rather than pass. (Jon Rowe, rspec/rspec-expectations#1208)
171
-
172
-
173
- ### 3.9.2 / 2020-05-08
174
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.9.1...v3.9.2)
175
-
176
- Bug Fixes:
177
-
178
- * Issue a proper `ArgumentError` when invalid arguments are given to `yield_control`
179
- modifiers such as `at_least` et al. (Marc-André Lafortune, rspec/rspec-expectations#1167)
180
- * Prevent Ruby 2.7 keyword arguments warning from being issued by custom
181
- matcher definitions. (Jon Rowe, rspec/rspec-expectations#1176)
182
-
183
- ### 3.9.1 / 2020-03-13
184
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.9.0...v3.9.1)
185
-
186
- Bug Fixes:
187
-
188
- * Issue an improved warning when using `respond_to(...).with(n).arguments` and ignore
189
- the warning when using with `have_attributes(...)`. (Jon Rowe, rspec/rspec-expectations#1164)
190
-
191
- ### 3.9.0 / 2019-10-08
192
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.6...v3.9.0)
193
-
194
- Enhancements:
195
-
196
- * The `respond_to` matcher now uses the signature from `initialize` to validate checks
197
- for `new` (unless `new` is non standard). (Jon Rowe, rspec/rspec-expectations#1072)
198
- * Generated descriptions for matchers now use `is expected to` rather than `should` in
199
- line with our preferred DSL. (Pete Johns, rspec/rspec-expectations#1080, rspec/rspec-corerspec/rspec-expectations#2572)
200
- * Add the ability to re-raise expectation errors when matching
201
- with `match_when_negated` blocks. (Jon Rowe, rspec/rspec-expectations#1130)
202
- * Add a warning when an empty diff is produce due to identical inspect output.
203
- (Benoit Tigeot, rspec/rspec-expectations#1126)
204
-
205
- ### 3.8.6 / 2019-10-07
206
-
207
- Bug Fixes:
208
-
209
- * Revert rspec/rspec-expectations#1125 due to the change being incompatible with our semantic versioning
210
- policy.
211
-
212
- ### 3.8.5 / 2019-10-02
213
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.4...v3.8.5)
214
-
215
- Bug Fixes:
216
-
217
- * Prevent unsupported implicit block expectation syntax from being used.
218
- (Phil Pirozhkov, rspec/rspec-expectations#1125)
219
-
220
- ### 3.8.4 / 2019-06-10
221
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.3...v3.8.4)
222
-
223
- Bug Fixes:
224
-
225
- * Prevent false negatives when checking objects for the methods required to run the
226
- the `be_an_instance_of` and `be_kind_of` matchers. (Nazar Matus, rspec/rspec-expectations#1112)
227
-
228
- ### 3.8.3 / 2019-04-20
229
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.2...v3.8.3)
230
-
231
- Bug Fixes:
232
-
233
- * Prevent composed `all` matchers from leaking into their siblings leading to duplicate
234
- failures. (Jamie English, rspec/rspec-expectations#1086)
235
- * Prevent objects which change their hash on comparison from failing change checks.
236
- (Phil Pirozhkov, rspec/rspec-expectations#1100)
237
- * Issue an `ArgumentError` rather than a `NoMethodError` when `be_an_instance_of` and
238
- `be_kind_of` matchers encounter objects not supporting those methods.
239
- (Taichi Ishitani, rspec/rspec-expectations#1107)
240
-
241
- ### 3.8.2 / 2018-10-09
242
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.1...v3.8.2)
243
-
244
- Bug Fixes:
245
-
246
- * Change `include` matcher to rely on a `respond_to?(:include?)` check rather than a direct
247
- Hash comparison before calling `to_hash` to convert to a hash. (Jordan Owens, rspec/rspec-expectations#1073)
248
- * Prevent unexpected call stack jumps from causing an obscure error (`IndexError`), and
249
- replace that error with a proper informative message. (Jon Rowe, rspec/rspec-expectations#1076)
250
-
251
- ### 3.8.1 / 2018-08-06
252
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.8.0...v3.8.1)
253
-
254
- Bug Fixes:
255
-
256
- * Fix regression in `include` matcher so stopped
257
- `expect(hash.with_indifferent_access).to include(:symbol_key)`
258
- from working. (Eito Katagiri, rspec/rspec-expectations#1069)
259
-
260
- ### 3.8.0 / 2018-08-04
261
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.7.0...v3.8.0)
262
-
263
- Enhancements:
264
-
265
- * Improve failure message of `change(receiver, :message)` by including the
266
- receiver as `SomeClass#some_message`. (Tomohiro Hashidate, rspec/rspec-expectations#1005)
267
- * Improve `change` matcher so that it can correctly detect changes in
268
- deeply nested mutable objects (such as arrays-of-hashes-of-arrays).
269
- The improved logic uses the before/after `hash` value to see if the
270
- object has been mutated, rather than shallow duping the object.
271
- (Myron Marston, rspec/rspec-expectations#1034)
272
- * Improve `include` matcher so that pseudo-hash objects (e.g. objects
273
- that decorate a hash using a `SimpleDelegator` or similar) are treated
274
- as a hash, as long as they implement `to_hash`. (Pablo Brasero, rspec/rspec-expectations#1012)
275
- * Add `max_formatted_output_length=` to configuration, allowing changing
276
- the length at which we truncate large output strings.
277
- (Sam Phippen rspec/rspec-expectations#951, Benoit Tigeot rspec/rspec-expectations#1056)
278
- * Improve error message when passing a matcher that doesn't support block
279
- expectations to a block based `expect`. (@nicktime, rspec/rspec-expectations#1066)
280
-
281
- ### 3.7.0 / 2017-10-17
282
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0...v3.7.0)
283
-
284
- Enhancements:
285
-
286
- * Improve compatibility with `--enable-frozen-string-literal` option
287
- on Ruby 2.3+. (Pat Allan, rspec/rspec-expectations#997)
288
-
289
- ### 3.6.0 / 2017-05-04
290
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0.beta2...v3.6.0)
291
-
292
- Enhancements:
293
-
294
- * Treat NoMethodError as a failure for comparison matchers. (Jon Rowe, rspec/rspec-expectations#972)
295
- * Allow for scoped aliased and negated matchers--just call
296
- `alias_matcher` or `define_negated_matcher` from within an example
297
- group. (Markus Reiter, rspec/rspec-expectations#974)
298
- * Improve failure message of `change` matcher with block and `satisfy` matcher
299
- by including the block snippet instead of just describing it as `result` or
300
- `block` when Ripper is available. (Yuji Nakayama, rspec/rspec-expectations#987)
301
-
302
- Bug Fixes:
303
-
304
- * Fix `yield_with_args` and `yield_successive_args` matchers so that
305
- they compare expected to actual args at the time the args are yielded
306
- instead of at the end, in case the method that is yielding mutates the
307
- arguments after yielding. (Alyssa Ross, rspec/rspec-expectations#965)
308
-
309
- ### 3.6.0.beta2 / 2016-12-12
310
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0.beta1...v3.6.0.beta2)
311
-
312
- Bug Fixes:
313
-
314
- * Using the exist matcher on `File` no longer produces a deprecation warning.
315
- (Jon Rowe, rspec/rspec-expectations#954)
316
-
317
- ### 3.6.0.beta1 / 2016-10-09
318
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0...v3.6.0.beta1)
319
-
320
- Bug Fixes:
321
-
322
- * Fix `contain_exactly` to work correctly with ranges. (Myron Marston, rspec/rspec-expectations#940)
323
- * Fix `change` to work correctly with sets. (Marcin Gajewski, rspec/rspec-expectations#939)
324
-
325
- ### 3.5.0 / 2016-07-01
326
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta4...v3.5.0)
327
-
328
- Enhancements:
329
-
330
- * Add support for keyword arguments to the `respond_to` matcher. (Rob Smith, rspec/rspec-expectations#915).
331
-
332
- ### 3.5.0.beta4 / 2016-06-05
333
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta3...v3.5.0.beta4)
334
-
335
- Bug Fixes:
336
-
337
- * Fix `include` matcher so that it provides a valid diff for hashes. (Yuji Nakayama, rspec/rspec-expectations#916)
338
-
339
- ### 3.5.0.beta3 / 2016-04-02
340
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta2...v3.5.0.beta3)
341
-
342
- Enhancements:
343
-
344
- * Make `rspec/expectations/minitest_integration` work on Minitest::Spec
345
- 5.6+. (Myron Marston, rspec/rspec-expectations#904)
346
- * Add an alias `having_attributes` for `have_attributes` matcher.
347
- (Yuji Nakayama, rspec/rspec-expectations#905)
348
- * Improve `change` matcher error message when block is mis-used.
349
- (Alex Altair, rspec/rspec-expectations#908)
350
-
351
- ### 3.5.0.beta2 / 2016-03-10
352
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta1...v3.5.0.beta2)
353
-
354
- Enhancements:
355
-
356
- * Add the ability to raise an error on encountering false positives via
357
- `RSpec::Configuration#on_potential_false_positives = :raise`. (Jon Rowe, rspec/rspec-expectations#900)
358
- * When using the custom matcher DSL, support new
359
- `notify_expectation_failures: true` option for the `match` method to
360
- allow expectation failures to be raised as normal instead of being
361
- converted into a `false` return value for `matches?`. (Jon Rowe, rspec/rspec-expectations#892)
362
-
363
- Bug Fixes:
364
-
365
- * Allow `should` deprecation check to work on `BasicObject`s. (James Coleman, rspec/rspec-expectations#898)
366
-
367
- ### 3.5.0.beta1 / 2016-02-06
368
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.4.0...v3.5.0.beta1)
369
-
370
- Enhancements:
371
-
372
- * Make `match_when_negated` in custom matcher DSL support use of
373
- expectations within the match logic. (Chris Arcand, rspec/rspec-expectations#789)
374
-
375
- Bug Fixes:
376
-
377
- * Return `true` as expected from passing negated expectations
378
- (such as `expect("foo").not_to eq "bar"`), so they work
379
- properly when used within a `match` or `match_when_negated`
380
- block. (Chris Arcand, rspec/rspec-expectations#789)
381
-
382
- ### 3.4.0 / 2015-11-11
383
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.1...v3.4.0)
384
-
385
- Enhancements:
386
-
387
- * Warn when `RSpec::Matchers` is included in a superclass after it has
388
- already been included in a subclass on MRI 1.9, since that situation
389
- can cause uses of `super` to trigger infinite recursion. (Myron Marston, rspec/rspec-expectations#816)
390
- * Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
391
- `SystemExit`. It is dangerous to interfere with these. (Myron Marston, rspec/rspec-expectations#845)
392
- * Add `#with_captures` to the match matcher which allows a user to specify expected
393
- captures when matching a regex against a string. (Sam Phippen, rspec/rspec-expectations#848)
394
- * Always print compound failure messages in the multi-line form. Trying
395
- to print it all on a single line didn't read very well. (Myron Marston, rspec/rspec-expectations#859)
396
-
397
- Bug Fixes:
398
-
399
- * Fix failure message from dynamic predicate matchers when the object
400
- does not respond to the predicate so that it is inspected rather
401
- than relying upon its `to_s` -- that way for `nil`, `"nil"` is
402
- printed rather than an empty string. (Myron Marston, rspec/rspec-expectations#841)
403
- * Fix SystemStackError raised when diffing an Enumerable object
404
- whose `#each` includes the object itself. (Yuji Nakayama, rspec/rspec-expectations#857)
405
-
406
- ### 3.3.1 / 2015-07-15
407
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.0...v3.3.1)
408
-
409
- Bug Fixes:
410
-
411
- * Fix `be >`, `be <`, etc so that it fails rather than allowing an
412
- argument error to be raised when compared against an object of the
413
- wrong type. This allows it to be used in composed matcher expressions
414
- against heterogeneous objects. (Dennis Günnewig, rspec/rspec-expectations#809)
415
- * Fix `respond_to` to work properly on target objects
416
- that redefine the `method` method. (unmanbearpig, rspec/rspec-expectations#821)
417
-
418
- ### 3.3.0 / 2015-06-12
419
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.2.1...v3.3.0)
420
-
421
- Enhancements:
422
-
423
- * Expose `RSpec::Matchers::EnglishPhrasing` to make it easier to write
424
- nice failure messages in custom matchers. (Jared Beck, rspec/rspec-expectations#736)
425
- * Add `RSpec::Matchers::FailMatchers`, a mixin which provides
426
- `fail`, `fail_with` and `fail_including` matchers for use in
427
- specifying that an expectation fails for use by
428
- extension/plugin authors. (Charlie Rudolph, rspec/rspec-expectations#729)
429
- * Avoid loading `tempfile` (and its dependencies) unless
430
- it is absolutely needed. (Myron Marston, rspec/rspec-expectations#735)
431
- * Improve failure output when attempting to use `be_true` or `be_false`.
432
- (Tim Wade, rspec/rspec-expectations#744)
433
- * Define `RSpec::Matchers#respond_to_missing?` so that
434
- `RSpec::Matchers#respond_to?` and `RSpec::Matchers#method` handle
435
- dynamic predicate matchers. (Andrei Botalov, rspec/rspec-expectations#751)
436
- * Use custom Time/DateTime/BigDecimal formatting for all matchers
437
- so they are consistently represented in failure messages.
438
- (Gavin Miller, rspec/rspec-expectations#740)
439
- * Add configuration to turn off warnings about matcher combinations that
440
- may cause false positives. (Jon Rowe, rspec/rspec-expectations#768)
441
- * Warn when using a bare `raise_error` matcher that you may be subject to
442
- false positives. (Jon Rowe, rspec/rspec-expectations#768)
443
- * Warn rather than raise when using the`raise_error` matcher in negative
444
- expectations that may be subject to false positives. (Jon Rowe, rspec/rspec-expectations#775)
445
- * Improve failure message for `include(a, b, c)` so that if `a` and `b`
446
- are included the failure message only mentions `c`. (Chris Arcand, rspec/rspec-expectations#780)
447
- * Allow `satisfy` matcher to take an optional description argument
448
- that will be used in the `description`, `failure_message` and
449
- `failure_message_when_negated` in place of the undescriptive
450
- "sastify block". (Chris Arcand, rspec/rspec-expectations#783)
451
- * Add new `aggregate_failures` API that allows multiple independent
452
- expectations to all fail and be listed in the failure output, rather
453
- than the example aborting on the first failure. (Myron Marston, rspec/rspec-expectations#776)
454
- * Improve `raise_error` matcher so that it can accept a matcher as a single argument
455
- that matches the message. (Time Wade, rspec/rspec-expectations#782)
456
-
457
- Bug Fixes:
458
-
459
- * Make `contain_exactly` / `match_array` work with strict test doubles
460
- that have not defined `<=>`. (Myron Marston, rspec/rspec-expectations#758)
461
- * Fix `include` matcher so that it omits the diff when it would
462
- confusingly highlight items that are actually included but are not
463
- an exact match in a line-by-line diff. (Tim Wade, rspec/rspec-expectations#763)
464
- * Fix `match` matcher so that it does not blow up when matching a string
465
- or regex against another matcher (rather than a string or regex).
466
- (Myron Marston, rspec/rspec-expectations#772)
467
- * Silence whitespace-only diffs. (Myron Marston, rspec/rspec-expectations#801)
468
-
469
- ### 3.2.1 / 2015-04-06
470
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.2.0...v3.2.1)
471
-
472
- Bug Fixes:
473
-
474
- * Prevent `Range`s from being enumerated when generating matcher
475
- descriptions. (Jon Rowe, rspec/rspec-expectations#755)
476
- * Ensure exception messages are compared as strings in the `raise_error`
477
- matcher. (Jon Rowe, rspec/rspec-expectations#755)
478
-
479
- ### 3.2.0 / 2015-02-03
480
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.1.2...v3.2.0)
481
-
482
- Enhancements:
483
-
484
- * Add `block_arg` method to custom matcher API, which allows you to
485
- access the block passed to a custom matcher, if there is one.
486
- (Mike Dalton, rspec/rspec-expectations#645)
487
- * Provide more detail in failure message of `yield_control` matcher.
488
- (Jon Rowe, rspec/rspec-expectations#650)
489
- * Add a shorthand syntax for `chain` in the matcher DSL which assigns values
490
- for use elsewhere, for example `chain :and_smaller_than, :small_value`
491
- creates an `attr_reader` for `small_value` (Tom Stuart, rspec/rspec-expectations#644)
492
- * Provide a more helpful deprecation message when using the `should` syntax.
493
- (Elia Schito, rspec/rspec-expectations#663)
494
- * Provide more detail in the `have_attributes` matcher failure message.
495
- (Jon Rowe, rspec/rspec-expectations#668)
496
- * Make the `have_attributes` matcher diffable.
497
- (Jon Rowe, Alexey Fedorov, rspec/rspec-expectations#668)
498
- * Add `output(...).to_std(out|err)_from_any_process` as alternatives
499
- to `output(...).to_std(out|err)`. The latter doesn't work when a sub
500
- process writes to the named stream but is much faster.
501
- (Alex Genco, rspec/rspec-expectations#700)
502
- * Improve compound matchers (created by `and` and `or`) so that diffs
503
- are included in failures when one or more of their matchers
504
- are diffable. (Alexey Fedorov, rspec/rspec-expectations#713)
505
-
506
- Bug Fixes:
507
-
508
- * Avoid calling `private_methods` from the `be` predicate matcher on
509
- the target object if the object publicly responds to the predicate
510
- method. This avoids a possible error that can occur if the object
511
- raises errors from `private_methods` (which can happen with celluloid
512
- objects). (@chapmajs, rspec/rspec-expectations#670)
513
- * Make `yield_control` (with no modifier) default to
514
- `at_least(:once)` rather than raising a confusing error
515
- when multiple yields are encountered.
516
- (Myron Marston, rspec/rspec-expectations#675)
517
- * Fix "instance variable @color not initialized" warning when using
518
- rspec-expectations outside of an rspec-core context. (Myron Marston, rspec/rspec-expectations#689)
519
- * Fix `start_with` and `end_with` to work properly when checking a
520
- string against an array of strings. (Myron Marston, rspec/rspec-expectations#690)
521
- * Don't use internally delegated matchers when generating descriptions
522
- for examples without doc strings. (Myron Marston, rspec/rspec-expectations#692)
523
-
524
- ### 3.1.2 / 2014-09-26
525
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.1.1...v3.1.2)
526
-
527
- Bug Fixes:
528
-
529
- * Fix `define_negated_matcher` so that matchers that support fluent
530
- interfaces continue to be negated after you use the chained method.
531
- (Myron Marston, rspec/rspec-expectations#656)
532
- * Fix `define_negated_matcher` so that the matchers fail with an
533
- appropriate failure message. (Myron Marston, rspec/rspec-expectations#659)
534
-
535
- ### 3.1.1 / 2014-09-15
536
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.1.0...v3.1.1)
537
-
538
- Bug Fixes:
539
-
540
- * Fix regression in `all` matcher in 3.1.0 that prevented it from
541
- working on objects that are not `Enumerable` but do implement
542
- `each_with_index` (such as an ActiveRecord proxy). (Jori Hardman, rspec/rspec-expectations#647)
543
-
544
- ### 3.1.0 / 2014-09-04
545
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.4...v3.1.0)
546
-
547
- Enhancements:
548
-
549
- * Add `have_attributes` matcher, that passes if actual's attribute
550
- values match the expected attributes hash:
551
- `Person = Struct.new(:name, :age)`
552
- `person = Person.new("Bob", 32)`
553
- `expect(person).to have_attributes(:name => "Bob", :age => 32)`.
554
- (Adam Farhi, rspec/rspec-expectations#571)
555
- * Extended compound matcher support to block matchers, for cases like:
556
- `expect { ... }.to change { x }.to(3).and change { y }.to(4)`. (Myron
557
- Marston, rspec/rspec-expectations#567)
558
- * Include chained methods in custom matcher description and failure message
559
- when new `include_chain_clauses_in_custom_matcher_descriptions` config
560
- option is enabled. (Dan Oved, rspec/rspec-expectations#600)
561
- * Add `thrice` modifier to `yield_control` matcher as a synonym for
562
- `exactly(3).times`. (Dennis Taylor, rspec/rspec-expectations#615)
563
- * Add `RSpec::Matchers.define_negated_matcher`, which defines a negated
564
- version of the named matcher. (Adam Farhi, Myron Marston, rspec/rspec-expectations#618)
565
- * Document and support negation of `contain_exactly`/`match_array`.
566
- (Jon Rowe, rspec/rspec-expectations#626).
567
-
568
- Bug Fixes:
569
-
570
- * Rename private `LegacyMacherAdapter` constant to `LegacyMatcherAdapter`
571
- to fix typo. (Abdelkader Boudih, rspec/rspec-expectations#563)
572
- * Fix `all` matcher so that it fails properly (rather than raising a
573
- `NoMethodError`) when matched against a non-enumerable. (Hao Su, rspec/rspec-expectations#622)
574
-
575
- ### 3.0.4 / 2014-08-14
576
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.3...v3.0.4)
577
-
578
- Bug Fixes:
579
-
580
- * Fix `start_with` and `end_with` so that they work properly with
581
- structs. (Myron Marston, rspec/rspec-expectations#620)
582
- * Fix failure message generation so that structs are printed properly
583
- in failures. Previously failure messages would represent them as
584
- an array. (Myron Marston, rspec/rspec-expectations#620)
585
- * Fix composable matcher support so that it does not wrongly treat
586
- structs as arrays. (Myron Marston, rspec/rspec-expectations#620)
587
-
588
- ### 3.0.3 / 2014-07-21
589
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.2...v3.0.3)
590
-
591
- Bug Fixes:
592
-
593
- * Fix issue with detection of generic operator matchers so they work
594
- correctly when undefined. (Myron Marston, rspec/rspec-expectations#597)
595
- * Don't inadvertently define `BasicObject` in 1.8.7. (Chris Griego, rspec/rspec-expectations#603)
596
- * Fix `include` matcher so that it fails gracefully when matched against
597
- an object that does not respond to `include?`. (Myron Marston, rspec/rspec-expectations#607)
598
-
599
- ### 3.0.2 / 2014-06-19
600
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.1...v3.0.2)
601
-
602
- Bug Fixes:
603
-
604
- * Fix regression in `contain_exactly` (AKA `match_array`) that caused it
605
- to wrongly pass when the expected array was empty. (Myron Marston, rspec/rspec-expectations#581)
606
- * Provide a better error message when you use the `change(obj, :msg)`
607
- form of the change matcher but forget the message argument. (Alex
608
- Sunderland, rspec/rspec-expectations#585)
609
- * Make the `contain_exactly` matcher work with arrays that contain hashes in
610
- arbitrary ordering. (Sam Phippen, rspec/rspec-expectations#578)
611
-
612
- ### 3.0.1 / 2014-06-12
613
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.0...v3.0.1)
614
-
615
- Bug Fixes:
616
-
617
- * Add a missing `require` that would cause the `respond_to` matcher to
618
- fail when used in a project where the rest of RSpec (e.g. core and
619
- expecatations) weren't being used. (Myron Marston, rspec/rspec-expectations#566)
620
- * Structs are no longer treated as arrays when diffed. (Jon Rowe, rspec/rspec-expectations#576)
621
-
622
- ### 3.0.0 / 2014-06-01
623
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.0.rc1...v3.0.0)
624
-
625
- No code changes. Just taking it out of pre-release.
626
-
627
- ### 3.0.0.rc1 / 2014-05-18
628
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.0.beta2...v3.0.0.rc1)
629
-
630
- Breaking Changes for 3.0.0:
631
-
632
- * Remove `matcher_execution_context` attribute from DSL-defined
633
- custom matchers. (Myron Marston)
634
- * Remove `RSpec::Matchers::Pretty#_pretty_print`. (Myron Marston)
635
- * Remove `RSpec::Matchers::Pretty#expected_to_sentence`. (Myron Marston)
636
- * Rename `RSpec::Matchers::Configuration` constant to
637
- `RSpec::Expectations::Configuration`. (Myron Marston)
638
- * Prevent `have_xyz` predicate matchers using private methods.
639
- (Adrian Gonzalez)
640
- * Block matchers must now implement `supports_block_expectations?`.
641
- (Myron Marston)
642
- * Stop supporting `require 'rspec-expectations'`.
643
- Use `require 'rspec/expectations'` instead. (Myron Marston)
644
-
645
- Bug Fixes:
646
-
647
- * Fix `NoMethodError` triggered by beta2 when `YARD` was loaded in
648
- the test environment. (Myron Marston)
649
- * Fix `be_xyz` matcher to accept a `do...end` block. (Myron Marston)
650
- * Fix composable matcher failure message generation logic
651
- so that it does not blow up when given `$stdout` or `$stderr`.
652
- (Myron Marston)
653
- * Fix `change` matcher to work properly with `IO` objects.
654
- (Myron Marston)
655
- * Fix `exist` matcher so that it can be used in composed matcher
656
- expressions involving objects that do not implement `exist?` or
657
- `exists?`. (Daniel Fone)
658
- * Fix composable matcher match logic so that it clones matchers
659
- before using them in order to work properly with matchers
660
- that use internal memoization based on a given `actual` value.
661
- (Myron Marston)
662
- * Fix `be_xyz` and `has_xyz` predicate matchers so that they can
663
- be used in composed matcher expressions involving objects that
664
- do not implement the predicate method. (Daniel Fone)
665
-
666
- Enhancements:
667
-
668
- * Document the remaining public APIs. rspec-expectations now has 100% of
669
- the public API documented and will remain that way (as new undocumented
670
- methods will fail the build). (Myron Marston)
671
- * Improve the formatting of BigDecimal objects in `eq` matcher failure
672
- messages. (Daniel Fone)
673
- * Improve the failure message for `be_xyz` predicate matchers so
674
- that it includes the `inspect` output of the receiver.
675
- (Erik Michaels-Ober, Sam Phippen)
676
- * Add `all` matcher, to allow you to specify that a given matcher
677
- matches all elements in a collection:
678
- `expect([1, 3, 5]).to all( be_odd )`. (Adam Farhi)
679
- * Add boolean aliases (`&`/`|`) for compound operators (`and`/`or`). (Adam Farhi)
680
- * Give users a clear error when they wrongly use a value matcher
681
- in a block expectation expression (e.g. `expect { 3 }.to eq(3)`)
682
- or vice versa. (Myron Marston)
683
-
684
- ### 3.0.0.beta2 / 2014-02-17
685
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.0.0.beta1...v3.0.0.beta2)
686
-
687
- Breaking Changes for 3.0.0:
688
-
689
- * Remove deprecated support for accessing the `RSpec` constant using
690
- `Rspec` or `Spec`. (Myron Marston)
691
- * Remove deprecated `RSpec::Expectations.differ=`. (Myron Marston)
692
- * Remove support for deprecated `expect(...).should`. (Myron Marston)
693
- * Explicitly disallow `expect { }.not_to change { }` with `by`,
694
- `by_at_least`, `by_at_most` or `to`. These have never been supported
695
- but did not raise explicit errors. (Myron Marston)
696
- * Provide `===` rather than `==` as an alias of `matches?` for
697
- all matchers. The semantics of `===` are closer to an RSpec
698
- matcher than `==`. (Myron Marston)
699
- * Remove deprecated `RSpec::Matchers::OperatorMatcher` constant.
700
- (Myron Marston)
701
- * Make `RSpec::Expectations::ExpectationNotMetError` subclass
702
- `Exception` rather than `StandardError` so they can bypass
703
- a bare `rescue` in end-user code (e.g. when an expectation is
704
- set from within a rspec-mocks stub implementation). (Myron Marston)
705
- * Remove Test::Unit and Minitest 4.x integration. (Myron Marston)
706
-
707
- Enhancements:
708
-
709
- * Simplify the failure message of the `be` matcher when matching against:
710
- `true`, `false` and `nil`. (Sam Phippen)
711
- * Update matcher protocol and custom matcher DSL to better align
712
- with the newer `expect` syntax. If you want your matchers to
713
- maintain compatibility with multiple versions of RSpec, you can
714
- alias the new names to the old. (Myron Marston)
715
- * `failure_message_for_should` => `failure_message`
716
- * `failure_message_for_should_not` => `failure_message_when_negated`
717
- * `match_for_should` => `match`
718
- * `match_for_should_not` => `match_when_negated`
719
- * Improve generated descriptions from `change` matcher. (Myron Marston)
720
- * Add support for compound matcher expressions using `and` and `or`.
721
- Simply chain them off of any existing matcher to create an expression
722
- like `expect(alphabet).to start_with("a").and end_with("z")`.
723
- (Eloy Espinaco)
724
- * Add `contain_exactly` as a less ambiguous version of `match_array`.
725
- Note that it expects the expected array to be splatted as
726
- individual args: `expect(array).to contain_exactly(1, 2)` is
727
- the same as `expect(array).to match_array([1, 2])`. (Myron Marston)
728
- * Update `contain_exactly`/`match_array` so that it can match against
729
- other non-array collections (such as a `Set`). (Myron Marston)
730
- * Update built-in matchers so that they can accept matchers as arguments
731
- to allow you to compose matchers in arbitrary ways. (Myron Marston)
732
- * Add `RSpec::Matchers::Composable` mixin that can be used to make
733
- a custom matcher composable as well. Note that custom matchers
734
- defined via `RSpec::Matchers.define` already have this. (Myron
735
- Marston)
736
- * Define noun-phrase aliases for built-in matchers, which can be
737
- used when creating composed matcher expressions that read better
738
- and provide better failure messages. (Myron Marston)
739
- * Add `RSpec::Matchers.alias_matcher` so users can define their own
740
- matcher aliases. The `description` of the matcher will reflect the
741
- alternate matcher name. (Myron Marston)
742
- * Add explicit `be_between` matcher. `be_between` has worked for a
743
- long time as a dynamic predicate matcher, but the failure message
744
- was suboptimal. The new matcher provides a much better failure
745
- message. (Erik Michaels-Ober)
746
- * Enhance the `be_between` matcher to allow for `inclusive` or `exclusive`
747
- comparison (e.g. inclusive of min/max or exclusive of min/max).
748
- (Pedro Gimenez)
749
- * Make failure message for `not_to be #{operator}` less confusing by
750
- only saying it's confusing when comparison operators are used.
751
- (Prathamesh Sonpatki)
752
- * Improve failure message of `eq` matcher when `Time` or `DateTime`
753
- objects are used so that the full sub-second precision is included.
754
- (Thomas Holmes, Jeff Wallace)
755
- * Add `output` matcher for expecting that a block outputs `to_stdout`
756
- or `to_stderr`. (Luca Pette, Matthias Günther)
757
- * Forward a provided block on to the `has_xyz?` method call when
758
- the `have_xyz` matcher is used. (Damian Galarza)
759
- * Provide integration with Minitest 5.x. Require
760
- `rspec/expectations/minitest_integration` after loading minitest
761
- to use rspec-expectations with minitest. (Myron Marston)
762
-
763
- Bug Fixes:
764
-
765
- * Fix wrong matcher descriptions with falsey expected value (yujinakayama)
766
- * Fix `expect { }.not_to change { }.from(x)` so that the matcher only
767
- passes if the starting value is `x`. (Tyler Rick, Myron Marston)
768
- * Fix hash diffing, so that it colorizes properly and doesn't consider trailing
769
- commas when performing the diff. (Jared Norman)
770
- * Fix built-in matchers to fail normally rather than raising
771
- `ArgumentError` when given an object of the wrong type to match
772
- against, so that they work well in composite matcher expressions like
773
- `expect([1.51, "foo"]).to include(a_string_matching(/foo/), a_value_within(0.1).of(1.5))`.
774
- (Myron Marston)
775
-
776
- Deprecations:
777
-
778
- * Retain support for RSpec 2 matcher protocol (e.g. for matchers
779
- in 3rd party extension gems like `shoulda`), but it will print
780
- a deprecation warning. (Myron Marston)
781
-
782
- ### 3.0.0.beta1 / 2013-11-07
783
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.2...v3.0.0.beta1)
784
-
785
- Breaking Changes for 3.0.0:
786
-
787
- * Remove explicit support for 1.8.6. (Jon Rowe)
788
- * Remove the deprecated `be_close` matcher, preferring `be_within` instead.
789
- (Sam Phippen)
790
- * Remove the deprecated `have`, `have_at_least` and `have_at_most` matchers.
791
- You can continue using those matchers through https://github.com/rspec/rspec-collection_matchers,
792
- or you can rewrite your expectations with something like
793
- `expect(your_object.size).to eq(num)`. (Hugo Baraúna)
794
- * Rename `be_true` and `be_false` to `be_truthy` and `be_falsey`. (Sam Phippen)
795
- * Make `expect { }.to_not raise_error(SomeSpecificClass, message)`,
796
- `expect { }.to_not raise_error(SomeSpecificClass)` and
797
- `expect { }.to_not raise_error(message)` invalid, since they are prone
798
- to hiding failures. Instead, use `expect { }.to_not raise_error` (with no
799
- args). (Sam Phippen)
800
- * Within `RSpec::Matchers.define` blocks, helper methods made available
801
- either via `def self.helper` or `extend HelperModule` are no longer
802
- available to the `match` block (or any of the others). Instead
803
- `include` your helper module and define the helper method as an
804
- instance method. (Myron Marston)
805
- * Force upgrading Diff::LCS for encoding compatability with diffs. (Jon Rowe)
806
-
807
- Enhancements:
808
-
809
- * Support `do..end` style block with `raise_error` matcher. (Yuji Nakayama)
810
- * Rewrote custom matcher DSL to simplify its implementation and solve a
811
- few issues. (Myron Marston)
812
- * Allow early `return` from within custom matcher DSL blocks. (Myron
813
- Marston)
814
- * The custom matcher DSL's `chain` can now accept a block. (Myron
815
- Marston)
816
- * Support setting an expectation on a `raise_error` matcher via a chained
817
- `with_message` method call. (Sam Phippen)
818
-
819
- Bug Fixes:
820
-
821
- * Allow `include` and `match` matchers to be used from within a
822
- DSL-defined custom matcher's `match` block. (Myron Marston)
823
- * Correct encoding error message on diff failure (Jon Rowe)
824
-
825
- Deprecations:
826
-
827
- * Using the old `:should` syntax without explicitly configuring it is deprecated.
828
- It will continue to work but will emit a deprecation warning in RSpec 3 if
829
- you do not explicitly enable it. (Sam Phippen)
830
-
831
- ### 2.99.2 / 2014-07-21
832
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.1...v2.99.2)
833
-
834
- Bug Fixes:
835
-
836
- * Fix regression in `Expectations#method_handle_for` where proxy objects
837
- with method delegated would wrongly not return a method handle.
838
- (Jon Rowe, rspec/rspec-expectations#594)
839
- * Fix issue with detection of generic operator matchers so they work
840
- correctly when undefined. (Myron Marston, rspec/rspec-expectations#597)
841
-
842
- ### 2.99.1 / 2014-06-19
843
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0...v2.99.1)
844
-
845
- Bug Fixes:
846
-
847
- * Fix typo in custom matcher `expected` deprecation warning -- it's
848
- `expected_as_array`, not `expected_array`. (Frederick Cheung, rspec/rspec-expectations#562)
849
-
850
- ### 2.99.0 / 2014-06-01
851
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0.rc1...v2.99.0)
852
-
853
- Enhancements:
854
-
855
- * Special case deprecation message for `errors_on` with `rspec-rails` to be more useful.
856
- (Aaron Kromer)
857
-
858
- ### 2.99.0.rc1 / 2014-05-18
859
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0.beta2...2.99.0.rc1)
860
-
861
- Deprecations:
862
-
863
- * Deprecate `matcher_execution_context` attribute on DSL-defined
864
- custom matchers. (Myron Marston)
865
- * Deprecate `RSpec::Matchers::Pretty#_pretty_print`. (Myron Marston)
866
- * Deprecate `RSpec::Matchers::Pretty#expected_to_sentence`. (Myron Marston)
867
- * Deprecate `RSpec::Matchers::Configuration` in favor of
868
- `RSpec::Expectations::Configuration`. (Myron Marston)
869
- * Deprecate `be_xyz` predicate matcher on an object that doesn't respond to
870
- `xyz?` or `xyzs?`. (Daniel Fone)
871
- * Deprecate `have_xyz` matcher on an object that doesn't respond to `has_xyz?`.
872
- (Daniel Fone)
873
- * Deprecate `have_xyz` matcher on an object that has a private method `has_xyz?`.
874
- (Jon Rowe)
875
- * Issue a deprecation warning when a block expectation expression is
876
- used with a matcher that doesn't explicitly support block expectations
877
- via `supports_block_expectations?`. (Myron Marston)
878
- * Deprecate `require 'rspec-expectations'`. Use
879
- `require 'rspec/expectations'` instead. (Myron Marston)
880
-
881
- ### 2.99.0.beta2 / 2014-02-17
882
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0.beta1...v2.99.0.beta2)
883
-
884
- Deprecations:
885
-
886
- * Deprecate chaining `by`, `by_at_least`, `by_at_most` or `to` off of
887
- `expect { }.not_to change { }`. The docs have always said these are
888
- not supported for the negative form but now they explicitly raise
889
- errors in RSpec 3. (Myron Marston)
890
- * Change the semantics of `expect { }.not_to change { x }.from(y)`.
891
- In RSpec 2.x, this expectation would only fail if `x` started with
892
- the value of `y` and changed. If it started with a different value
893
- and changed, it would pass. In RSpec 3, it will pass only if the
894
- value starts at `y` and it does not change. (Myron Marston)
895
- * Deprecate `matcher == value` as an alias for `matcher.matches?(value)`,
896
- in favor of `matcher === value`. (Myron Marston)
897
- * Deprecate `RSpec::Matchers::OperatorMatcher` in favor of
898
- `RSpec::Matchers::BuiltIn::OperatorMatcher`. (Myron Marston)
899
- * Deprecate auto-integration with Test::Unit and minitest.
900
- Instead, include `RSpec::Matchers` in the appropriate test case
901
- base class yourself. (Myron Marston)
902
- * Deprecate treating `#expected` on a DSL-generated custom matcher
903
- as an array when only 1 argument is passed to the matcher method.
904
- In RSpec 3 it will be the single value in order to make diffs
905
- work properly. (Jon Rowe)
906
-
907
- ### 2.99.0.beta1 / 2013-11-07
908
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.4...v2.99.0.beta1)
909
-
910
- Deprecations
911
-
912
- * Deprecate `have`, `have_at_least` and `have_at_most`. You can continue using those
913
- matchers through https://github.com/rspec/rspec-collection_matchers, or
914
- you can rewrite your expectations with something like
915
- `expect(your_object.size).to eq(num)`. (Hugo Baraúna)
916
- * Deprecate `be_xyz` predicate matcher when `xyz?` is a private method.
917
- (Jon Rowe)
918
- * Deprecate `be_true`/`be_false` in favour of `be_truthy`/`be_falsey`
919
- (for Ruby's conditional semantics) or `be true`/`be false`
920
- (for exact equality). (Sam Phippen)
921
- * Deprecate calling helper methods from a custom matcher with the wrong
922
- scope. (Myron Marston)
923
- * `def self.foo` / `extend Helper` can be used to add macro methods
924
- (e.g. methods that call the custom matcher DSL methods), but should
925
- not be used to define helper methods called from within the DSL
926
- blocks.
927
- * `def foo` / `include Helper` is the opposite: it's for helper methods
928
- callable from within a DSL block, but not for defining macros.
929
- * RSpec 2.x allowed helper methods defined either way to be used for
930
- either purpose, but RSpec 3.0 will not.
931
-
932
- ### 2.14.5 / 2014-02-01
933
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.4...v2.14.5)
934
-
935
- Bug fixes
936
-
937
- * Fix wrong matcher descriptions with falsey expected value
938
- (yujinakayama)
939
-
940
- ### 2.14.4 / 2013-11-06
941
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.3...v2.14.4)
942
-
943
- Bug fixes
944
-
945
- * Make the `match` matcher produce a diff output. (Jon Rowe, Ben Moss)
946
- * Choose encoding for diff's more intelligently, and when all else fails fall
947
- back to default internal encoding with replacing characters. (Jon Rowe)
948
-
949
- ### 2.14.3 / 2013-09-22
950
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.2...v2.14.3)
951
-
952
- Bug fixes
953
-
954
- * Fix operator matchers (`should` syntax) when `method` is redefined on target.
955
- (Brandon Turner)
956
- * Fix diffing of hashes with object based keys. (Jon Rowe)
957
- * Fix operator matchers (`should` syntax) when operator is defined via
958
- `method_missing` (Jon Rowe)
959
-
960
- ### 2.14.2 / 2013-08-14
961
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.1...v2.14.2)
962
-
963
- Bug fixes
964
-
965
- * Fix `be_<predicate>` matcher to not support operator chaining like the
966
- `be` matcher does (e.g. `be == 5`). This led to some odd behaviors
967
- since `be_<predicate> == anything` returned a `BeComparedTo` matcher
968
- and was thus always truthy. This was a consequence of the implementation
969
- (e.g. subclassing the basic `Be` matcher) and was not intended behavior.
970
- (Myron Marston).
971
- * Fix `change` matcher to compare using `==` in addition to `===`. This
972
- is important for an expression like:
973
- `expect {}.to change { a.class }.from(ClassA).to(ClassB)` because
974
- `SomeClass === SomeClass` returns false. (Myron Marston)
975
-
976
- ### 2.14.1 / 2013-08-08
977
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0...2.14.1)
978
-
979
- Bug fixes
980
-
981
- * Ensure diff output uses the same encoding as the encoding of
982
- the string being diff'd to prevent `Encoding::UndefinedConversionError`
983
- errors (Jon Rowe).
984
-
985
- ### 2.14.0 / 2013-07-06
986
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0.rc1...v2.14.0)
987
-
988
- Bug fixes
989
-
990
- * Values that are not matchers use `#inspect`, rather than `#description` for
991
- documentation output (Andy Lindeman, Sam Phippen).
992
- * Make `expect(a).to be_within(x).percent_of(y)` work with negative y
993
- (Katsuhiko Nishimra).
994
- * Make the `be_predicate` matcher work as expected used with `expect{...}.to
995
- change...` (Sam Phippen).
996
-
997
- ### 2.14.0.rc1 / 2013-05-27
998
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.13.0...v2.14.0.rc1)
999
-
1000
- Enhancements
1001
-
1002
- * Enhance `yield_control` so that you can specify an exact or relative
1003
- number of times: `expect { }.to yield_control.exactly(3).times`,
1004
- `expect { }.to yield_control.at_least(2).times`, etc (Bartek
1005
- Borkowski).
1006
- * Make the differ that is used when an expectation fails better handle arrays
1007
- by splitting each element of the array onto its own line. (Sam Phippen)
1008
- * Accept duck-typed strings that respond to `:to_str` as expectation messages.
1009
- (Toby Ovod-Everett)
1010
-
1011
- Bug fixes
1012
-
1013
- * Fix differ to not raise errors when dealing with differently-encoded
1014
- strings (Jon Rowe).
1015
- * Fix `expect(something).to be_within(x).percent_of(y)` where x and y are both
1016
- integers (Sam Phippen).
1017
- * Fix `have` matcher to handle the fact that on ruby 2.0,
1018
- `Enumerator#size` may return nil (Kenta Murata).
1019
- * Fix `expect { raise s }.to raise_error(s)` where s is an error instance
1020
- on ruby 2.0 (Sam Phippen).
1021
- * Fix `expect(object).to raise_error` passing. This now warns the user and
1022
- fails the spec (tomykaira).
1023
-
1024
- Deprecations
1025
-
1026
- * Deprecate `expect { }.not_to raise_error(SpecificErrorClass)` or
1027
- `expect { }.not_to raise_error("some specific message")`. Using
1028
- these was prone to hiding failures as they would allow _any other
1029
- error_ to pass. (Sam Phippen and David Chelimsky)
1030
-
1031
- ### 2.13.0 / 2013-02-23
1032
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.12.1...v2.13.0)
1033
-
1034
- Enhancements
1035
-
1036
- * Add support for percent deltas to `be_within` matcher:
1037
- `expect(value).to be_within(10).percent_of(expected)`
1038
- (Myron Marston).
1039
- * Add support to `include` matcher to allow it to be given a list
1040
- of matchers as the expecteds to match against (Luke Redpath).
1041
-
1042
- Bug fixes
1043
-
1044
- * Fix `change` matcher so that it dups strings in order to handle
1045
- mutated strings (Myron Marston).
1046
- * Fix `should be =~ /some regex/` / `expect(...).to be =~ /some regex/`.
1047
- Previously, these either failed with a confusing `undefined method
1048
- matches?' for false:FalseClass` error or were no-ops that didn't
1049
- actually verify anything (Myron Marston).
1050
- * Add compatibility for diff-lcs 1.2 and relax the version
1051
- constraint (Peter Goldstein).
1052
- * Fix DSL-generated matchers to allow multiple instances of the
1053
- same matcher in the same example to have different description
1054
- and failure messages based on the expected value (Myron Marston).
1055
- * Prevent `undefined method #split for Array` error when dumping
1056
- the diff of an array of multiline strings (Myron Marston).
1057
- * Don't blow up when comparing strings that are in an encoding
1058
- that is not ASCII compatible (Myron Marston).
1059
- * Remove confusing "Check the implementation of #==" message
1060
- printed for empty diffs (Myron Marston).
1061
-
1062
- ### 2.12.1 / 2012-12-15
1063
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.12.0...v2.12.1)
1064
-
1065
- Bug fixes
1066
-
1067
- * Improve the failure message for an expression like
1068
- `{}.should =~ {}`. (Myron Marston and Andy Lindeman)
1069
- * Provide a `match_regex` alias so that custom matchers
1070
- built using the matcher DSL can use it (since `match`
1071
- is a different method in that context).
1072
- (Steven Harman)
1073
-
1074
- ### 2.12.0 / 2012-11-12
1075
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.3...v2.12.0)
1076
-
1077
- Enhancements
1078
-
1079
- * Colorize diffs if the `--color` option is configured. (Alex Coplan)
1080
- * Include backtraces in unexpected errors handled by `raise_error`
1081
- matcher (Myron Marston)
1082
- * Print a warning when users accidentally pass a non-string argument
1083
- as an expectation message (Sam Phippen)
1084
- * `=~` and `match_array` matchers output a more useful error message when
1085
- the actual value is not an array (or an object that responds to `#to_ary`)
1086
- (Sam Phippen)
1087
-
1088
- Bug fixes
1089
-
1090
- * Fix `include` matcher so that `expect({}).to include(:a => nil)`
1091
- fails as it should (Sam Phippen).
1092
- * Fix `be_an_instance_of` matcher so that `Class#to_s` is used in the
1093
- description rather than `Class#inspect`, since some classes (like
1094
- `ActiveRecord::Base`) define a long, verbose `#inspect`.
1095
- (Tom Stuart)
1096
-
1097
- ### 2.11.3 / 2012-09-04
1098
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.2...v2.11.3)
1099
-
1100
- Bug fixes
1101
-
1102
- * Fix (and deprecate) `expect { }.should` syntax so that it works even
1103
- though it was never a documented or intended syntax. It worked as a
1104
- consequence of the implementation of `expect` in RSpec 2.10 and
1105
- earlier. (Myron Marston)
1106
- * Ensure #== is defined on built in matchers so that they can be composed.
1107
- For example:
1108
-
1109
- expect {
1110
- user.emailed!
1111
- }.to change { user.last_emailed_at }.to be_within(1.second).of(Time.zone.now)
1112
-
1113
- ### 2.11.2 / 2012-07-25
1114
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2)
1115
-
1116
- Bug fixes
1117
-
1118
- * Define `should` and `should_not` on `Object` rather than `BasicObject`
1119
- on MacRuby. On MacRuby, `BasicObject` is defined but is not the root
1120
- of the object hierarchy. (Gabriel Gilder)
1121
-
1122
- ### 2.11.1 / 2012-07-08
1123
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1)
1124
-
1125
- Bug fixes
1126
-
1127
- * Constrain `actual` in `be_within` matcher to values that respond to `-` instead
1128
- of requiring a specific type.
1129
- * `Time`, for example, is a legit alternative.
1130
-
1131
- ### 2.11.0 / 2012-07-07
1132
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0)
1133
-
1134
- Enhancements
1135
-
1136
- * Expand `expect` syntax so that it supports expections on bare values
1137
- in addition to blocks (Myron Marston).
1138
- * Add configuration options to control available expectation syntaxes
1139
- (Myron Marston):
1140
- * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }`
1141
- * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }`
1142
- * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }`
1143
- * `RSpec.configuration.add_should_and_should_not_to Delegator`
1144
-
1145
- Bug fixes
1146
-
1147
- * Allow only `Numeric` values to be the "actual" in the `be_within` matcher.
1148
- This prevents confusing error messages. (Su Zhang @zhangsu)
1149
- * Define `should` and `should_not` on `BasicObject` rather than `Kernel`
1150
- on 1.9. This makes `should` and `should_not` work properly with
1151
- `BasicObject`-subclassed proxy objects like `Delegator`. (Myron
1152
- Marston)
1153
-
1154
- ### 2.10.0 / 2012-05-03
1155
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.1...v2.10.0)
1156
-
1157
- Enhancements
1158
-
1159
- * Add new `start_with` and `end_with` matchers (Jeremy Wadsack)
1160
- * Add new matchers for specifying yields (Myron Marston):
1161
- * `expect {...}.to yield_control`
1162
- * `expect {...}.to yield_with_args(1, 2, 3)`
1163
- * `expect {...}.to yield_with_no_args`
1164
- * `expect {...}.to yield_successive_args(1, 2, 3)`
1165
- * `match_unless_raises` takes multiple exception args
1166
-
1167
- Bug fixes
1168
-
1169
- * Fix `be_within` matcher to be inclusive of delta.
1170
- * Fix message-specific specs to pass on Rubinius (John Firebaugh)
1171
-
1172
- ### 2.9.1 / 2012-04-03
1173
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.0...v2.9.1)
1174
-
1175
- Bug fixes
1176
-
1177
- * Provide a helpful message if the diff between two objects is empty.
1178
- * Fix bug diffing single strings with multiline strings.
1179
- * Fix for error with using custom matchers inside other custom matchers
1180
- (mirasrael)
1181
- * Fix using execution context methods in nested DSL matchers (mirasrael)
1182
-
1183
- ### 2.9.0 / 2012-03-17
1184
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0...v2.9.0)
1185
-
1186
- Enhancements
1187
-
1188
- * Move built-in matcher classes to RSpec::Matchers::BuiltIn to reduce pollution
1189
- of RSpec::Matchers (which is included in every example).
1190
- * Autoload files with matcher classes to improve load time.
1191
-
1192
- Bug fixes
1193
-
1194
- * Align `respond_to?` and `method_missing` in DSL-defined matchers.
1195
- * Clear out user-defined instance variables between invocations of DSL-defined
1196
- matchers.
1197
- * Dup the instance of a DSL generated matcher so its state is not changed by
1198
- subsequent invocations.
1199
- * Treat expected args consistently across positive and negative expectations
1200
- (thanks to Ralf Kistner for the heads up)
1201
-
1202
- ### 2.8.0 / 2012-01-04
1203
-
1204
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0.rc2...v2.8.0)
1205
-
1206
- Enhancements
1207
-
1208
- * Better diff output for Hash (Philippe Creux)
1209
- * Eliminate Ruby warnings (Olek Janiszewski)
1210
-
1211
- ### 2.8.0.rc2 / 2011-12-19
1212
-
1213
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0.rc1...v2.8.0.rc2)
1214
-
1215
- No changes for this release. Just releasing with the other rspec gems.
1216
-
1217
- ### 2.8.0.rc1 / 2011-11-06
1218
-
1219
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.7.0...v2.8.0.rc1)
1220
-
1221
- Enhancements
1222
-
1223
- * Use classes for the built-in matchers (they're faster).
1224
- * Eliminate Ruby warnings (Matijs van Zuijlen)
1225
-
1226
- ### 2.7.0 / 2011-10-16
1227
-
1228
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.6.0...v2.7.0)
1229
-
1230
- Enhancements
1231
-
1232
- * `HaveMatcher` converts argument using `to_i` (Alex Bepple & Pat Maddox)
1233
- * Improved failure message for the `have_xxx` matcher (Myron Marston)
1234
- * `HaveMatcher` supports `count` (Matthew Bellantoni)
1235
- * Change matcher dups `Enumerable` before the action, supporting custom
1236
- `Enumerable` types like `CollectionProxy` in Rails (David Chelimsky)
1237
-
1238
- Bug fixes
1239
-
1240
- * Fix typo in `have(n).xyz` documentation (Jean Boussier)
1241
- * fix `safe_sort` for ruby 1.9.2 (`Kernel` now defines `<=>` for Object) (Peter
1242
- van Hardenberg)
1243
-
1244
- ### 2.6.0 / 2011-05-12
1245
-
1246
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.5.0...v2.6.0)
1247
-
1248
- Enhancements
1249
-
1250
- * `change` matcher accepts regexps (Robert Davis)
1251
- * better descriptions for `have_xxx` matchers (Magnus Bergmark)
1252
- * `range.should cover(*values)` (Anders Furseth)
1253
-
1254
- Bug fixes
1255
-
1256
- * Removed non-ascii characters that were choking rcov (Geoffrey Byers)
1257
- * change matcher dups arrays and hashes so their before/after states can be
1258
- compared correctly.
1259
- * Fix the order of inclusion of RSpec::Matchers in Test::Unit::TestCase and
1260
- MiniTest::Unit::TestCase to prevent a SystemStackError (Myron Marston)
1261
-
1262
- ### 2.5.0 / 2011-02-05
1263
-
1264
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.4.0...v2.5.0)
1265
-
1266
- Enhancements
1267
-
1268
- * `should exist` works with `exist?` or `exists?` (Myron Marston)
1269
- * `expect { ... }.not_to do_something` (in addition to `to_not`)
1270
-
1271
- Documentation
1272
-
1273
- * improved docs for raise_error matcher (James Almond)
1274
-
1275
- ### 2.4.0 / 2011-01-02
1276
-
1277
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.3.0...v2.4.0)
1278
-
1279
- No functional changes in this release, which was made to align with the
1280
- rspec-core-2.4.0 release.
1281
-
1282
- Enhancements
1283
-
1284
- * improved RDoc for change matcher (Jo Liss)
1285
-
1286
- ### 2.3.0 / 2010-12-12
1287
-
1288
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.2.1...v2.3.0)
1289
-
1290
- Enhancements
1291
-
1292
- * diff strings when include matcher fails (Mike Sassak)
1293
-
1294
- ### 2.2.0 / 2010-11-28
1295
-
1296
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.1.0...v2.2.0)
1297
-
1298
- ### 2.1.0 / 2010-11-07
1299
-
1300
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.1...v2.1.0)
1301
-
1302
- Enhancements
1303
-
1304
- * `be_within(delta).of(expected)` matcher (Myron Marston)
1305
- * Lots of new Cucumber features (Myron Marston)
1306
- * Raise error if you try `should != expected` on Ruby-1.9 (Myron Marston)
1307
- * Improved failure messages from `throw_symbol` (Myron Marston)
1308
-
1309
- Bug fixes
1310
-
1311
- * Eliminate hard dependency on `RSpec::Core` (Myron Marston)
1312
- * `have_matcher` - use pluralize only when ActiveSupport inflections are indeed
1313
- defined (Josep M Bach)
1314
- * throw_symbol matcher no longer swallows exceptions (Myron Marston)
1315
- * fix matcher chaining to avoid name collisions (Myron Marston)
1316
-
1317
- ### 2.0.0 / 2010-10-10
1318
-
1319
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.rc...v2.0.0)
1320
-
1321
- Enhancements
1322
-
1323
- * Add match_for_should_not method to matcher DSL (Myron Marston)
1324
-
1325
- Bug fixes
1326
-
1327
- * `respond_to` matcher works correctly with `should_not` with multiple methods
1328
- (Myron Marston)
1329
- * `include` matcher works correctly with `should_not` with multiple values
1330
- (Myron Marston)
1331
-
1332
- ### 2.0.0.rc / 2010-10-05
1333
-
1334
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.beta.22...v2.0.0.rc)
1335
-
1336
- Enhancements
1337
-
1338
- * `require 'rspec/expectations'` in a T::U or MiniUnit suite (Josep M. Bach)
1339
-
1340
- Bug fixes
1341
-
1342
- * change by 0 passes/fails correctly (Len Smith)
1343
- * Add description to satisfy matcher
1344
-
1345
- ### 2.0.0.beta.22 / 2010-09-12
1346
-
1347
- [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.beta.20...v2.0.0.beta.22)
1348
-
1349
- Enhancements
1350
-
1351
- * diffing improvements
1352
- * diff multiline strings
1353
- * don't diff single line strings
1354
- * don't diff numbers (silly)
1355
- * diff regexp + multiline string
1356
-
1357
- Bug fixes
1358
- * `should[_not]` change now handles boolean values correctly