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
@@ -0,0 +1,2432 @@
1
+ ### Development
2
+ [Full Changelog](https://github.com/rspec/rspec/compare/rspec-core-v3.13.4...3-13-maintenance)
3
+
4
+ ### 3.13.4 / 2025-05-27
5
+ [Full Changelog](http://github.com/rspec/rspec/compare/rspec-core-v3.13.3...rspec-core-v3.13.4)
6
+
7
+ Bug Fixes:
8
+
9
+ * Fix links in gemspec to point to the monorepo / homepage.
10
+
11
+ ### 3.13.3 / 2025-02-06
12
+ [Full Changelog](http://github.com/rspec/rspec/compare/rspec-core-v3.13.4...rspec-core-v3.13.3)
13
+
14
+ Bug fixes:
15
+
16
+ * Fix reporter memorisation of `ExamplesNotification` used in `RSpec::Core::Reporter#finish`
17
+ by reusing an instance across notifcations. (Maxime Lapointe, rspec/rspec#172)
18
+ * Fix memorisation of `RSpec::Core::Example#location_rerun_argument`.
19
+ (Maxime Lapointe, rspec/rspec#173)
20
+
21
+ ### 3.13.2 / 2024-10-18
22
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.13.1...v3.13.2)
23
+
24
+ Bug fixes:
25
+
26
+ * `RSpec::Configuration#requires` will reflect files already required, whilst requiring
27
+ them. (Jon Rowe, rspec/rspec-core#3117)
28
+
29
+ ### 3.13.1 / 2024-09-02
30
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.13.0...v3.13.1)
31
+
32
+ Bug fixes:
33
+
34
+ * Sort ids to run as the original order to fix `--bisect`. (Maki Kawahara, rspec/rspec-core#3093)
35
+
36
+ ### 3.13.0 / 2024-02-04
37
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.3...v3.13.0)
38
+
39
+ Enhancements:
40
+
41
+ * Support the `--backtrace` flag when using the JSON formatter. (Matt Larraz, rspec/rspec-core#2980)
42
+ * Ignore commented out lines in CLI config files (e.g. `.rspec`). (Junichi Ito, rspec/rspec-core#2984)
43
+ * Add `pending_failure_output` config option to allow skipping backtraces or
44
+ muting pending specs output. (Phil Pirozhkov, rspec/rspec-core#2957)
45
+ * Process `--dry-run` before configuration flags that read files so that introspecting
46
+ it returns the correct value. (Xenor Chang, rspec/rspec-core#3008)
47
+ * Allow specifying custom ordering strategies via `--order`. (Jon Rowe, rspec/rspec-core#3025)
48
+ * Use the improved `syntax_suggest` output for `SyntaxError` when available.
49
+ (Richard Schneeman, rspec/rspec-core#3015, rspec/rspec-core#3026)
50
+ * Add config option (`RSpec::Core::Configuration#full_cause_backtrace`) to print the
51
+ entire backtrace of an exception cause. (David Taylor, rspec/rspec-core#3046)
52
+
53
+ ### 3.12.3 / 2024-02-04
54
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.2...v3.12.3)
55
+
56
+ Bug fixes:
57
+
58
+ * Use `__send__` in output wrapper to avoid issues with IO objects that implement `send`
59
+ like `Socket`. (Richard Platel, rspec/rspec-core#3045)
60
+
61
+ ### 3.12.2 / 2023-04-18
62
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.1...v3.12.2)
63
+
64
+ Bug fixes:
65
+
66
+ * Remove link to outdated documentation in generated output. (Jon Rowe, rspec/rspec-core#3035)
67
+
68
+ ### 3.12.1 / 2023-02-03
69
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.0...v3.12.1)
70
+
71
+ Bug fixes:
72
+
73
+ * Prevent multiple calls to `extra_failure_lines` from adding additional whitespace
74
+ around them when the lines already contain whitespace. (Jon Rowe, rspec/rspec-core#3006)
75
+
76
+ ### 3.12.0 / 2022-10-26
77
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.11.0...v3.12.0)
78
+
79
+ * No changes, released to support other gems.
80
+
81
+ ### 3.11.0 / 2022-02-09
82
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.2...v3.11.0)
83
+
84
+ Enhancements:
85
+
86
+ * Improve pluralisation of words ending with `s` (like process). (Joshua Pinter, rspec/rspec-core#2779)
87
+ * Add ordering by file modification time (most recent first). (Matheus Richard, rspec/rspec-core#2778)
88
+ * Add `to_s` to reserved names for #let and #subject. (Nick Flückiger, rspec/rspec-core#2886)
89
+ * Introduce `RSpec.current_scope` to expose the current scope in which
90
+ RSpec is executing. e.g. `:before_example_hook`, `:example` etc. (@odinhb, rspec/rspec-core#2895)
91
+ * Add named bold colours as options for custom colours. (rspec/rspec-core#2913, rspec/rspec-core#2914)
92
+ * Warn when (but not prevent) a `SystemExit` occurs. (Jared Beck, rspec/rspec-core#2926)
93
+
94
+ ### 3.10.2 / 2022-01-27
95
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.1...v3.10.2)
96
+
97
+ Bug fixes:
98
+
99
+ * Ensure bisect communication uses consistent encoding. (Mike Jarema, rspec/rspec-core#2852)
100
+ * Fix exception presenter when the root cause exception has nil backtrace.
101
+ (Zinovyev Ivan, rspec/rspec-core#2903)
102
+ * Fix `inspect` output of `RSpec::Core::Example::Procsy` to namespace correctly.
103
+ (Keiko Kaneko, rspec/rspec-core#2915)
104
+ * Ensure formatters not exposing `#output` will not crash duplicate check.
105
+ (@niceking, rspec/rspec-core#2916)
106
+
107
+ ### 3.10.1 / 2020-12-27
108
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.0...v3.10.1)
109
+
110
+ Bug fixes:
111
+
112
+ * RSpec warning output was missing deprecations from Ruby, these are now included.
113
+ (Jon Rowe, rspec/rspec-core#2811)
114
+
115
+ ### 3.10.0 / 2020-10-30
116
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.3...v3.10.0)
117
+
118
+ Enhancements:
119
+
120
+ * Memoize `RSpec::Core::Formatters::ExceptionPresenter#exception_lines` to improve performance
121
+ with slow exception messages. (Maxime Lapointe, rspec/rspec-core#2743)
122
+ * Add configuration for an error exit code (to disambiguate errored builds from failed builds
123
+ by exit status). (Dana Sherson, rspec/rspec-core#2749)
124
+
125
+ ### 3.9.3 / 2020-09-30
126
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.2...v3.9.3)
127
+
128
+ Bug Fixes:
129
+
130
+ * Declare `ruby2_keywords` on `method_missing` for other gems. (Jon Rowe, rspec/rspec-core#2731)
131
+ * Ensure custom error codes are returned from bisect runs. (Jon Rowe, rspec/rspec-core#2732)
132
+ * Ensure `RSpec::Core::Configuration` predicate config methods return booleans.
133
+ (Marc-André Lafortune, rspec/rspec-core#2736)
134
+ * Prevent `rspec --bisect` from generating zombie processes while executing
135
+ bisect runs. (Benoit Tigeot, Jon Rowe, rspec/rspec-core#2739)
136
+ * Predicates for pending examples, (in `RSpec::Core::Example`, `#pending?`, `#skipped?` and
137
+ `#pending_fixed?`) now return boolean values rather than truthy values.
138
+ (Marc-André Lafortune, rspec/rspec-core#2756, rspec/rspec-core#2758)
139
+ * Exceptions which have a message which cannot be cast to a string will no longer
140
+ cause a crash. (Jon Rowe, rspec/rspec-core#2761)
141
+
142
+ ### 3.9.2 / 2020-05-02
143
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.1...v3.9.2)
144
+
145
+ Bug Fixes:
146
+
147
+ * Emit a warning when `around` hook is used with `:context` scope
148
+ (Phil Pirozhkov, rspec/rspec-core#2687)
149
+ * Prevent invalid implementations of `Exception#cause` from being treated as a
150
+ valid cause (and causing strange errors) in `RSpec::Core::Formatters::ExceptionPresenter`.
151
+ (Jon Rowe, rspec/rspec-core#2703)
152
+ * Correctly detect patterns when `rspec_opts` is an array in `RSpec::Core::RakeTask`.
153
+ (Marc-André Lafortune, rspec/rspec-core#2704)
154
+ * Make `RSpec.clear_examples` reset example counts for example groups. This fixes
155
+ an issue with re-running specs not matching ids. (Agis Anastasopoulos, rspec/rspec-core#2723)
156
+
157
+ ### 3.9.1 / 2019-12-28
158
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.0...v3.9.1)
159
+
160
+ Bug Fixes:
161
+
162
+ * Prevent bisect command from blocking when number of specs exceeds file
163
+ descriptor limit on OSX or Linux. (Benoit Tigeot, rspec/rspec-core#2669)
164
+ * Prevent warnings being issued on Ruby 2.7.0. (Jon Rowe, rspec/rspec-core#2680)
165
+
166
+ ### 3.9.0 / 2019-10-07
167
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.2...v3.9.0)
168
+
169
+ Enhancements:
170
+
171
+ * Improve the handling of errors during loading support files, if a file
172
+ errors before loading specs, RSpec will now skip loading the specs.
173
+ (David Rodríguez, rspec/rspec-core#2568)
174
+ * Add support for --example-matches to run examples by regular expression.
175
+ (Sam Joseph, Matt Rider, @okothkongo1, rspec/rspec-core#2586)
176
+ * Add `did_you_mean` suggestions for file names encountering a `LoadError`
177
+ outside of examples. (@obromios, rspec/rspec-core#2601)
178
+ * Add a minimalist quick fix style formatter, only outputs failures as
179
+ `file:line:message`. (Romain Tartière, rspec/rspec-core#2614)
180
+ * Convert string number values to integer when used for `RSpec::Configuration#fail_fast`
181
+ (Viktor Fonic, rspec/rspec-core#2634)
182
+ * Issue warning when invalid values are used for `RSpec::Configuration#fail_fast`
183
+ (Viktor Fonic, rspec/rspec-core#2634)
184
+ * Add support for running the Rake task in a clean environment.
185
+ (Jon Rowe, rspec/rspec-core#2632)
186
+ * Indent messages by there example group / example in the documentation formatter.
187
+ (Samuel Williams, rspec/rspec-core#2649)
188
+
189
+ ### 3.8.2 / 2019-06-29
190
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.1...v3.8.2)
191
+
192
+ Bug Fixes:
193
+
194
+ * Fix `config.define_derived_metadata` so that cascades are not triggered
195
+ until metadata has been assigned to the example or example group
196
+ (Myron Marston, rspec/rspec-core#2635).
197
+
198
+ ### 3.8.1 / 2019-06-13
199
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.0...v3.8.1)
200
+
201
+ Bug Fixes:
202
+
203
+ * Handle RSpec description(s) with japanese chars in CP932 encoded files.
204
+ (Benoit Tigeot, rspec/rspec-core#2575)
205
+ * When defining `let` methods that overwrite an existing method, prevent
206
+ a warning being issued by removing the old definition. (Jon Rowe, rspec/rspec-core#2593)
207
+ * Prevent warning on Ruby 2.6.0-rc1 (Keiji Yoshimi, rspec/rspec-core#2582)
208
+ * Fix `config.define_derived_metadata` so that it supports cascades.
209
+ (Myron Marston, rspec/rspec-core#2630).
210
+
211
+ ### 3.8.0 / 2018-08-04
212
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.1...v3.8.0)
213
+
214
+ Enhancements:
215
+
216
+ * Improve shell escaping used by `RSpec::Core::RakeTask` and `--bisect` so
217
+ that it works on `Pathname` objects. (Andrew Vit, rspec/rspec-core#2479)
218
+ * Nicely format errors encountered while loading files specified
219
+ by `--require` option. (Myron Marston, rspec/rspec-core#2504)
220
+ * Significantly improve the performance of `--bisect` on platforms that
221
+ support forking by replacing the shell-based runner with one that uses
222
+ forking so that RSpec and the application environment can be booted only
223
+ once, instead of once per spec run. (Myron Marston, rspec/rspec-core#2511)
224
+ * Provide a configuration API to pick which bisect runner is used for
225
+ `--bisect`. Pick a runner via `config.bisect_runner = :shell` or
226
+ `config.bisect_runner = :fork` in a file loaded by a `--require`
227
+ option passed at the command line or set in `.rspec`. (Myron Marston, rspec/rspec-core#2511)
228
+ * Support the [XDG Base Directory
229
+ Specification](https://specifications.freedesktop.org/basedir-spec/latest/)
230
+ for the global options file. `~/.rspec` is still supported when no
231
+ options file is found in `$XDG_CONFIG_HOME/rspec/options` (Magnus Bergmark, rspec/rspec-core#2538)
232
+ * Extract `RSpec.world.prepare_example_filtering` that sets up the
233
+ example filtering for custom RSpec runners. (Oleg Pudeyev, rspec/rspec-core#2552)
234
+
235
+ Bug Fixes:
236
+
237
+ * Prevent an `ArgumentError` when truncating backtraces with two identical
238
+ backtraces. (Systho, rspec/rspec-core#2515, Benoit Tigeot, rspec/rspec-core#2539)
239
+
240
+ ### 3.7.1 / 2018-01-02
241
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...v3.7.1)
242
+
243
+ Bug Fixes:
244
+
245
+ * Work around duplicate config hook regression introduced
246
+ by Ruby 2.5's lazy proc allocation. (Myron Marston, rspec/rspec-core#2497)
247
+
248
+ ### 3.7.0 / 2017-10-17
249
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0...v3.7.0)
250
+
251
+ Enhancements:
252
+
253
+ * Add `-n` alias for `--next-failure`. (Ian Ker-Seymer, rspec/rspec-core#2434)
254
+ * Improve compatibility with `--enable-frozen-string-literal` option
255
+ on Ruby 2.3+. (Pat Allan, rspec/rspec-core#2425, rspec/rspec-core#2427, rspec/rspec-core#2437)
256
+ * Do not run `:context` hooks for example groups that have been skipped.
257
+ (Devon Estes, rspec/rspec-core#2442)
258
+ * Add `errors_outside_of_examples_count` to the JSON formatter.
259
+ (Takeshi Arabiki, rspec/rspec-core#2448)
260
+
261
+ Bug Fixes:
262
+
263
+ * Improve compatibility with frozen string literal flag. (rspec/rspec-core#2425, Pat Allan)
264
+
265
+ ### 3.6.0 / 2017-05-04
266
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta2...v3.6.0)
267
+
268
+ Enhancements:
269
+
270
+ * Add seed information to JSON formatter output. (rspec/rspec-core#2388, Mitsutaka Mimura)
271
+ * Include example id in the JSON formatter output. (rspec/rspec-core#2369, Xavier Shay)
272
+ * Respect changes to `config.output_stream` after formatters have been
273
+ setup. (rspec/rspec-core#2401, rspec/rspec-core#2419, Ilya Lavrov)
274
+
275
+ Bug Fixes:
276
+
277
+ * Delay formatter loading until the last minute to allow accessing the reporter
278
+ without triggering formatter setup. (Jon Rowe, rspec/rspec-core#2243)
279
+ * Ensure context hook failures running before an example can access the
280
+ reporter. (Jon Jensen, rspec/rspec-core#2387)
281
+ * Multiple fixes to allow using the runner multiple times within the same
282
+ process: `RSpec.clear_examples` resets the formatter and no longer clears
283
+ shared examples, and streams can be used across multiple runs rather than
284
+ being closed after the first. (rspec/rspec-core#2368, Xavier Shay)
285
+ * Prevent unexpected `example_group_finished` notifications causing an error.
286
+ (rspec/rspec-core#2396, VTJamie)
287
+ * Fix bugs where `config.when_first_matching_example_defined` hooks would fire
288
+ multiple times in some cases. (Yuji Nakayama, rspec/rspec-core#2400)
289
+ * Default `last_run_status` to "unknown" when the `status` field in the
290
+ persistence file contains an unrecognized value. (rspec/rspec-core#2360, matrinox)
291
+ * Prevent `let` from defining an `initialize` method. (rspec/rspec-core#2414, Jon Rowe)
292
+
293
+ ### 3.6.0.beta2 / 2016-12-12
294
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta1...v3.6.0.beta2)
295
+
296
+ Enhancements:
297
+
298
+ * Include count of errors occurring outside examples in default summaries.
299
+ (rspec/rspec-core#2351, Jon Rowe)
300
+ * Warn when including shared example groups recursively. (rspec/rspec-core#2356, Jon Rowe)
301
+ * Improve failure snippet syntax highlighting with CodeRay to highlight
302
+ RSpec "keywords" like `expect`. (rspec/rspec-core#2358, Myron Marston)
303
+
304
+ ### 3.6.0.beta1 / 2016-10-09
305
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.4...v3.6.0.beta1)
306
+
307
+ Enhancements:
308
+
309
+ * Warn when duplicate shared examples definitions are loaded due to being
310
+ defined in files matching the spec pattern (e.g. `_spec.rb`) (rspec/rspec-core#2278, Devon Estes)
311
+ * Improve metadata filtering so that it can match against any object
312
+ that implements `===` instead of treating regular expressions as
313
+ special. (Myron Marston, rspec/rspec-core#2294)
314
+ * Improve `rspec -v` so that it prints out the versions of each part of
315
+ RSpec to prevent confusion. (Myron Marston, rspec/rspec-core#2304)
316
+ * Add `config.fail_if_no_examples` option which causes RSpec to fail if
317
+ no examples are found. (Ewa Czechowska, rspec/rspec-core#2302)
318
+ * Nicely format errors encountered while loading spec files.
319
+ (Myron Marston, rspec/rspec-core#2323)
320
+ * Improve the API for enabling and disabling color output (Josh
321
+ Justice, rspec/rspec-core#2321):
322
+ * Automatically enable color if the output is a TTY, since color is
323
+ nearly always desirable if the output can handle it.
324
+ * Introduce new CLI flag to force color on (`--force-color`), even
325
+ if the output is not a TTY. `--no-color` continues to work as well.
326
+ * Introduce `config.color_mode` for configuring the color from Ruby.
327
+ `:automatic` is the default and will produce color if the output is
328
+ a TTY. `:on` forces it on and `:off` forces it off.
329
+
330
+ ### 3.5.4 / 2016-09-30
331
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.3...v3.5.4)
332
+
333
+ Bug Fixes:
334
+
335
+ * Remove accumulated `ExampleGroup` constants when reseting RSpec,
336
+ preventing a memory leak. (TravisSpangle, rspec/rspec-core#2328)
337
+
338
+ ### 3.5.3 / 2016-09-02
339
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.2...v3.5.3)
340
+
341
+ Bug Fixes:
342
+
343
+ * When applying shared group metadata to a host group, overwrite
344
+ conflicting keys if the value in the host group was inherited from
345
+ a parent group instead of being specified at that level.
346
+ (Myron Marston, rspec/rspec-core#2307)
347
+ * Handle errors in `:suite` hooks and provide the same nicely formatted
348
+ output as errors that happen in examples. (Myron Marston, rspec/rspec-core#2316)
349
+ * Set the exit status to non-zero when an error occurs in an
350
+ `after(:context)` hook. (Myron Marston, rspec/rspec-core#2320)
351
+
352
+ ### 3.5.2 / 2016-07-28
353
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.1...v3.5.2)
354
+
355
+ Bug Fixes:
356
+
357
+ * Wait to report `example_finished` until the example's `execution_result`
358
+ has been completely filled in. (Myron Marston, rspec/rspec-core#2291)
359
+ * Make sure example block is still available when using `duplicate_with`
360
+ to clone examples. (bootstraponline, rspec/rspec-core#2298)
361
+ * Don't include the default `--pattern` in the Rake task when
362
+ `rspec_opts` specifies its own. (Jon Rowe, rspec/rspec-core#2305)
363
+
364
+ ### 3.5.1 / 2016-07-06
365
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0...v3.5.1)
366
+
367
+ Bug Fixes:
368
+
369
+ * Ensure that config hooks that are added to existing example groups are
370
+ added only once. (Eugene Kenny, rspec/rspec-core#2280)
371
+
372
+ ### 3.5.0 / 2016-07-01
373
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta4...v3.5.0)
374
+
375
+ Enhancements:
376
+
377
+ * Include any `SPEC_OPTS` in reproduction command printed at the end of
378
+ a bisect run. (Simon Coffey, rspec/rspec-core#2274)
379
+
380
+ Bug Fixes:
381
+
382
+ * Handle `--bisect` in `SPEC_OPTS` environment variable correctly so as
383
+ to avoid infinite recursion. (Simon Coffey, rspec/rspec-core#2271)
384
+
385
+ ### 3.5.0.beta4 / 2016-06-05
386
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta3...v3.5.0.beta4)
387
+
388
+ Enhancements:
389
+
390
+ * Filter out bundler stackframes from backtraces by default, since
391
+ Bundler 1.12 now includes its own frames in stack traces produced
392
+ by using `bundle exec`. (Myron Marston, rspec/rspec-core#2240)
393
+ * HTML Formatter uses exception presenter to get failure message
394
+ for consistency with other formatters. (@mrageh, rspec/rspec-core#2222)
395
+ * Load spec files in the order of the directories or files passed
396
+ at the command line, making it easy to make some specs run before
397
+ others in a one-off manner. For example, `rspec spec/unit
398
+ spec/acceptance --order defined` will run unit specs before acceptance
399
+ specs. (Myron Marston, rspec/rspec-core#2253)
400
+ * Add new `config.include_context` API for configuring global or
401
+ filtered inclusion of shared contexts in example groups.
402
+ (Myron Marston, rspec/rspec-core#2256)
403
+ * Add new `config.shared_context_metadata_behavior = :apply_to_host_groups`
404
+ option, which causes shared context metadata to be inherited by the
405
+ metadata hash of all host groups and examples instead of configuring
406
+ implicit auto-inclusion based on the passed metadata. (Myron Marston, rspec/rspec-core#2256)
407
+
408
+ Bug Fixes:
409
+
410
+ * Fix `--bisect` so it works on large spec suites that were previously triggering
411
+ "Argument list too long errors" due to all the spec locations being passed as
412
+ CLI args. (Matt Jones, rspec/rspec-core#2223).
413
+ * Fix deprecated `:example_group`-based filtering so that it properly
414
+ applies to matching example groups. (Myron Marston, rspec/rspec-core#2234)
415
+ * Fix `NoMethodError` caused by Java backtraces on JRuby. (Michele Piccirillo, rspec/rspec-core#2244)
416
+
417
+ ### 3.5.0.beta3 / 2016-04-02
418
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta2...v3.5.0.beta3)
419
+
420
+ Enhancements:
421
+
422
+ * Add new `config.filter_run_when_matching` API, intended to replace
423
+ the combination of `config.filter_run` and
424
+ `config.run_all_when_everything_filtered` (Myron Marston, rspec/rspec-core#2206)
425
+
426
+ Bug Fixes:
427
+
428
+ * Use the encoded string logic for source extraction. (Jon Rowe, rspec/rspec-core#2183)
429
+ * Fix rounding issue in duration formatting helper. (Fabersky, Jon Rowe, rspec/rspec-core#2208)
430
+ * Fix failure snippet extraction so that `def-end` snippets
431
+ ending with `end`-only line can be extracted properly.
432
+ (Yuji Nakayama, rspec/rspec-core#2215)
433
+
434
+ ### 3.5.0.beta2 / 2016-03-10
435
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta1...v3.5.0.beta2)
436
+
437
+ Enhancements:
438
+
439
+ * Remove unneeded `:execution_result` example group metadata, saving a
440
+ bit of memory. (Myron Marston, rspec/rspec-core#2172)
441
+ * Apply hooks registered with `config` to previously defined groups.
442
+ (Myron Marston, rspec/rspec-core#2189)
443
+ * `RSpec::Core::Configuration#reporter` is now public API under SemVer.
444
+ (Jon Rowe, rspec/rspec-core#2193)
445
+ * Add new `config.when_first_matching_example_defined` hook. (Myron
446
+ Marston, rspec/rspec-core#2175)
447
+
448
+ ### 3.5.0.beta1 / 2016-02-06
449
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.4...v3.5.0.beta1)
450
+
451
+ Enhancements:
452
+
453
+ * Add `RSpec::Core::ExampleGroup.currently_executing_a_context_hook?`,
454
+ primarily for use by rspec-rails. (Sam Phippen, rspec/rspec-core#2131)
455
+
456
+ Bug Fixes:
457
+
458
+ * Ensure `MultipleExceptionError` does not contain a recursive reference
459
+ to itself. (Sam Phippen, rspec/rspec-core#2133)
460
+
461
+ ### 3.4.4 / 2016-03-09
462
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.3...v3.4.4)
463
+
464
+ Bug Fixes:
465
+
466
+ * Fix `RSpec::Core::RakeTask` so that it works with Rake 11.
467
+ (Travis Grathwell, rspec/rspec-core#2197)
468
+
469
+ ### 3.4.3 / 2016-02-19
470
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.2...v3.4.3)
471
+
472
+ Bug Fixes:
473
+
474
+ * Prevent a `TypeError` from occurring when running via the rake task when
475
+ Ruby crashes. (Patrik Wenger, rspec/rspec-core#2161)
476
+ * Only consider example and group declaration lines from a specific file
477
+ when applying line number filtering, instead of considering all
478
+ declaration lines from all spec files. (Myron Marston, rspec/rspec-core#2170)
479
+ * Fix failure snippet extraction so that snippets that contain `do-end` style
480
+ block and end with `end`-only line can be extracted properly.
481
+ (Yuji Nakayama, rspec/rspec-core#2173)
482
+ * Prevent infinite recursion when an exception is caused by itself.
483
+ (Jon Rowe, rspec/rspec-core#2128)
484
+
485
+ ### 3.4.2 / 2016-01-26
486
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)
487
+
488
+ Bug Fixes:
489
+
490
+ * Fix `rspec --profile` when an example calls `abort` or `exit`.
491
+ (Bradley Schaefer, rspec/rspec-core#2144)
492
+ * Fix `--drb` so that when no DRb server is running, it prevents
493
+ the DRb connection error from being listed as the cause of all
494
+ expectation failures. (Myron Marston, rspec/rspec-core#2156)
495
+ * Fix syntax highlighter so that it works when the `coderay` gem is
496
+ installed as a rubygem but not already available on your load path
497
+ (as happens when you use bundler). (Myron Marston, rspec/rspec-core#2159)
498
+
499
+ ### 3.4.1 / 2015-11-18
500
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.0...v3.4.1)
501
+
502
+ Bug Fixes:
503
+
504
+ * Fix backtrace formatter to handle backtraces that are `nil`.
505
+ (Myron Marston, rspec/rspec-core#2118)
506
+
507
+ ### 3.4.0 / 2015-11-11
508
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.2...v3.4.0)
509
+
510
+ Enhancements:
511
+
512
+ * Combine multiple `--pattern` arguments making them equivalent to
513
+ `--pattern=1,2,...,n`. (Jon Rowe, rspec/rspec-core#2002)
514
+ * Improve `inspect` and `to_s` output for `RSpec::Core::Example`
515
+ objects, replacing Ruby's excessively verbose output. (Gavin Miller, rspec/rspec-core#1922)
516
+ * Add `silence_filter_announcements` configuration option.
517
+ (David Raffensperger, rspec/rspec-core#2007)
518
+ * Add optional `example_finished` notification to the reporter protocol for
519
+ when you don't care about the example outcome. (Jon Rowe, rspec/rspec-core#2013)
520
+ * Switch `--bisect` to a recursion-based bisection algorithm rather than
521
+ a permutation-based one. This better handles cases where an example
522
+ depends upon multiple other examples instead of just one and minimizes
523
+ the number of runs necessary to determine that an example set cannot be
524
+ minimized further. (Simon Coffey, rspec/rspec-core#1997)
525
+ * Allow simple filters (e.g. `:symbol` key only) to be triggered by truthey
526
+ values. (Tim Mertens, rspec/rspec-core#2035)
527
+ * Remove unneeded warning about need for `ansicon` on Windows when using
528
+ RSpec's `--color` option. (Ashley Engelund, rspec/rspec-core#2038)
529
+ * Add option to configure RSpec to raise errors when issuing warnings.
530
+ (Jon Rowe, rspec/rspec-core#2052)
531
+ * Append the root `cause` of a failure or error to the printed failure
532
+ output when a `cause` is available. (Adam Magan)
533
+ * Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
534
+ `SystemExit`. It is dangerous to interfere with these. (Myron Marston, rspec/rspec-core#2063)
535
+ * Add `config.project_source_dirs` setting which RSpec uses to determine
536
+ if a backtrace line comes from your project source or from some
537
+ external library. It defaults to `spec`, `lib` and `app` but can be
538
+ configured differently. (Myron Marston, rspec/rspec-core#2088)
539
+ * Improve failure line detection so that it looks for the failure line
540
+ in any project source directory instead of just in the spec file.
541
+ In addition, if no backtrace lines can be found from a project source
542
+ file, we fall back to displaying the source of the first backtrace
543
+ line. This should virtually eliminate the "Unable to find matching
544
+ line from backtrace" messages. (Myron Marston, rspec/rspec-core#2088)
545
+ * Add support for `:extra_failure_lines` example metadata that will
546
+ be appended to the failure output. (bootstraponline, rspec/rspec-core#2092).
547
+ * Add `RSpec::Core::Example#duplicate_with` to produce new examples
548
+ with cloned metadata. (bootstraponline, rspec/rspec-core#2098)
549
+ * Add `RSpec::Core::Configuration#on_example_group_definition` to register
550
+ hooks to be invoked when example groups are created. (bootstraponline, rspec/rspec-core#2094)
551
+ * Add `add_example` and `remove_example` to `RSpec::Core::ExampleGroup` to
552
+ allow manipulating an example groups examples. (bootstraponline, rspec/rspec-core#2095)
553
+ * Display multiline failure source lines in failure output when Ripper is
554
+ available (MRI >= 1.9.2, and JRuby >= 1.7.5 && < 9.0.0.0.rc1).
555
+ (Yuji Nakayama, rspec/rspec-core#2083)
556
+ * Add `max_displayed_failure_line_count` configuration option
557
+ (defaults to 10). (Yuji Nakayama, rspec/rspec-core#2083)
558
+ * Enhance `fail_fast` option so it can take a number (e.g. `--fail-fast=3`)
559
+ to force the run to abort after the specified number of failures.
560
+ (Jack Scotti, rspec/rspec-core#2065)
561
+ * Syntax highlight the failure snippets in text formatters when `color`
562
+ is enabled and the `coderay` gem is installed on a POSIX system.
563
+ (Myron Marston, rspec/rspec-core#2109)
564
+
565
+ Bug Fixes:
566
+
567
+ * Lock `example_status_persistence_file` when reading from and writing
568
+ to it to prevent race conditions when multiple processes try to use
569
+ it. (Ben Woosley, rspec/rspec-core#2029)
570
+ * Fix regression in 3.3 that caused spec file names with square brackets in
571
+ them (such as `1[]_spec.rb`) to not be loaded properly. (Myron Marston, rspec/rspec-core#2041)
572
+ * Fix output encoding issue caused by ASCII literal on 1.9.3 (Jon Rowe, rspec/rspec-core#2072)
573
+ * Fix requires in `rspec/core/rake_task.rb` to avoid double requires
574
+ seen by some users. (Myron Marston, rspec/rspec-core#2101)
575
+
576
+ ### 3.3.2 / 2015-07-15
577
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)
578
+
579
+ Bug Fixes:
580
+
581
+ * Fix formatters to handle exceptions for which `backtrace` returns `nil`.
582
+ (Myron Marston, rspec/rspec-core#2023)
583
+ * Fix duplicate formatter detection so that it allows subclasses of formatters
584
+ to be added. (Sebastián Tello, rspec/rspec-core#2019)
585
+
586
+ ### 3.3.1 / 2015-06-18
587
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)
588
+
589
+ Bug Fixes:
590
+
591
+ * Correctly run `before(:suite)` (and friends) in the context of an example
592
+ group instance, thus making the expected RSpec environment available.
593
+ (Jon Rowe, rspec/rspec-core#1986)
594
+
595
+ ### 3.3.0 / 2015-06-12
596
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.3...v3.3.0)
597
+
598
+ Enhancements:
599
+
600
+ * Expose the reporter used to run examples via `RSpec::Core::Example#reporter`.
601
+ (Jon Rowe, rspec/rspec-core#1866)
602
+ * Make `RSpec::Core::Reporter#message` a public supported API. (Jon Rowe, rspec/rspec-core#1866)
603
+ * Allow custom formatter events to be published via
604
+ `RSpec::Core::Reporter#publish(event_name, hash_of_attributes)`. (Jon Rowe, rspec/rspec-core#1869)
605
+ * Remove dependency on the standard library `Set` and replace with `RSpec::Core::Set`.
606
+ (Jon Rowe, rspec/rspec-core#1870)
607
+ * Assign a unique id to each example and group so that they can be
608
+ uniquely identified, even for shared examples (and similar situations)
609
+ where the location isn't unique. (Myron Marston, rspec/rspec-core#1884)
610
+ * Use the example id in the rerun command printed for failed examples
611
+ when the location is not unique. (Myron Marston, rspec/rspec-core#1884)
612
+ * Add `config.example_status_persistence_file_path` option, which is
613
+ used to persist the last run status of each example. (Myron Marston, rspec/rspec-core#1888)
614
+ * Add `:last_run_status` metadata to each example, which indicates what
615
+ happened the last time an example ran. (Myron Marston, rspec/rspec-core#1888)
616
+ * Add `--only-failures` CLI option which filters to only the examples
617
+ that failed the last time they ran. (Myron Marston, rspec/rspec-core#1888)
618
+ * Add `--next-failure` CLI option which allows you to repeatedly focus
619
+ on just one of the currently failing examples, then move on to the
620
+ next failure, etc. (Myron Marston, rspec/rspec-core#1888)
621
+ * Make `--order random` ordering stable, so that when you rerun a
622
+ subset with a given seed, the examples will be order consistently
623
+ relative to each other. (Myron Marston, rspec/rspec-core#1908)
624
+ * Set example group constant earlier so errors when evaluating the context
625
+ include the example group name (Myron Marson, rspec/rspec-core#1911)
626
+ * Make `let` and `subject` threadsafe. (Josh Cheek, rspec/rspec-core#1858)
627
+ * Add version information into the JSON formatter. (Mark Swinson, rspec/rspec-core#1883)
628
+ * Add `--bisect` CLI option, which will repeatedly run your suite in
629
+ order to isolate the failures to the smallest reproducible case.
630
+ (Myron Marston, rspec/rspec-core#1917)
631
+ * For `config.include`, `config.extend` and `config.prepend`, apply the
632
+ module to previously defined matching example groups. (Eugene Kenny, rspec/rspec-core#1935)
633
+ * When invalid options are parsed, notify users where they came from
634
+ (e.g. `.rspec` or `~/.rspec` or `ENV['SPEC_OPTS']`) so they can
635
+ easily find the source of the problem. (Myron Marston, rspec/rspec-core#1940)
636
+ * Add pending message contents to the json formatter output. (Jon Rowe, rspec/rspec-core#1949)
637
+ * Add shared group backtrace to the output displayed by the built-in
638
+ formatters for pending examples that have been fixed. (Myron Marston, rspec/rspec-core#1946)
639
+ * Add support for `:aggregate_failures` metadata. Tag an example or
640
+ group with this metadata and it'll use rspec-expectations'
641
+ `aggregate_failures` feature to allow multiple failures in an example
642
+ and list them all, rather than aborting on the first failure. (Myron
643
+ Marston, rspec/rspec-core#1946)
644
+ * When no formatter implements #message add a fallback to prevent those
645
+ messages being lost. (Jon Rowe, rspec/rspec-core#1980)
646
+ * Profiling examples now takes into account time spent in `before(:context)`
647
+ hooks. (Denis Laliberté, Jon Rowe, rspec/rspec-core#1971)
648
+ * Improve failure output when an example has multiple exceptions, such
649
+ as one from an `it` block and one from an `after` block. (Myron Marston, rspec/rspec-core#1985)
650
+
651
+ Bug Fixes:
652
+
653
+ * Handle invalid UTF-8 strings within exception methods. (Benjamin Fleischer, rspec/rspec-core#1760)
654
+ * Fix Rake Task quoting of file names with quotes to work properly on
655
+ Windows. (Myron Marston, rspec/rspec-core#1887)
656
+ * Fix `RSpec::Core::RakeTask#failure_message` so that it gets printed
657
+ when the task failed. (Myron Marston, rspec/rspec-core#1905)
658
+ * Make `let` work properly when defined in a shared context that is applied
659
+ to an individual example via metadata. (Myron Marston, rspec/rspec-core#1912)
660
+ * Ensure `rspec/autorun` respects configuration defaults. (Jon Rowe, rspec/rspec-core#1933)
661
+ * Prevent modules overriding example group defined methods when included,
662
+ prepended or extended by config defined after an example group. (Eugene Kenny, rspec/rspec-core#1935)
663
+ * Fix regression which caused shared examples to be mistakenly run when specs
664
+ where filtered to a particular location. (Ben Axnick, rspec/rspec-core#1963)
665
+ * Fix time formatting logic so that it displays 70 seconds as "1 minute,
666
+ 10 seconds" rather than "1 minute, 1 second". (Paul Brennan, rspec/rspec-core#1984)
667
+ * Fix regression where the formatter loader would allow duplicate formatters.
668
+ (Jon Rowe, rspec/rspec-core#1990)
669
+
670
+ ### 3.2.3 / 2015-04-06
671
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.2...v3.2.3)
672
+
673
+ Bug Fixes:
674
+
675
+ * Fix how the DSL methods are defined so that RSpec is compatible with
676
+ gems that define methods of the same name on `Kernel` (such as
677
+ the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, rspec/rspec-core#1907)
678
+ * Fix `before(:context) { skip }` so that it does not wrongly cause the
679
+ spec suite to exit with a non-zero status when no examples failed.
680
+ (Myron Marston, rspec/rspec-core#1926)
681
+
682
+ ### 3.2.2 / 2015-03-11
683
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.1...v3.2.2)
684
+
685
+ Bug Fixes:
686
+
687
+ * Fix regression in 3.2.0 that allowed tag-filtered examples to
688
+ run even if there was a location filter applied to the spec
689
+ file that was intended to limit the file to other examples.
690
+ (rspec/rspec-core#1894, Myron Marston)
691
+
692
+ ### 3.2.1 / 2015-02-23
693
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.0...v3.2.1)
694
+
695
+ Bug Fixes:
696
+
697
+ * Notify start-of-run seed _before_ `start` notification rather than
698
+ _after_ so that formatters like Fuubar work properly. (Samuel Esposito, rspec/rspec-core#1882)
699
+
700
+ ### 3.2.0 / 2015-02-03
701
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)
702
+
703
+ Enhancements:
704
+
705
+ * Improve the `inspect` output of example groups. (Mike Dalton, rspec/rspec-core#1687)
706
+ * When rake task fails, only output the command if `verbose` flag is
707
+ set. (Ben Snape, rspec/rspec-core#1704)
708
+ * Add `RSpec.clear_examples` as a clear way to reset examples in between
709
+ spec runs, whilst retaining user configuration. (Alexey Fedorov, rspec/rspec-core#1706)
710
+ * Reduce string allocations when defining and running examples by 70%
711
+ and 50% respectively. (Myron Marston, rspec/rspec-core#1738)
712
+ * Removed dependency on pathname from stdlib. (Sam Phippen, rspec/rspec-core#1703)
713
+ * Improve the message presented when a user hits Ctrl-C.
714
+ (Alex Chaffee rspec/rspec-core#1717, rspec/rspec-core#1742)
715
+ * Improve shared example group inclusion backtrace displayed
716
+ in failed example output so that it works for all methods
717
+ of including shared example groups and shows all inclusion
718
+ locations. (Myron Marston, rspec/rspec-core#1763)
719
+ * Issue seed notification at start (as well as the end) of the reporter
720
+ run. (Arlandis Word, rspec/rspec-core#1761)
721
+ * Improve the documentation of around hooks. (Jim Kingdon, rspec/rspec-core#1772)
722
+ * Support prepending of modules into example groups from config and allow
723
+ filtering based on metadata. (Arlandis Word, rspec/rspec-core#1806)
724
+ * Emit warnings when `:suite` hooks are registered on an example group
725
+ (where it has always been ignored) or are registered with metadata
726
+ (which has always been ignored). (Myron Marston, rspec/rspec-core#1805)
727
+ * Provide a friendly error message when users call RSpec example group
728
+ APIs (e.g. `context`, `describe`, `it`, `let`, `before`, etc) from
729
+ within an example where those APIs are unavailable. (Myron Marston, rspec/rspec-core#1819)
730
+ * Provide a friendly error message when users call RSpec example
731
+ APIs (e.g. `expect`, `double`, `stub_const`, etc) from
732
+ within an example group where those APIs are unavailable.
733
+ (Myron Marston, rspec/rspec-core#1819)
734
+ * Add new `RSpec::Core::Sandbox.sandboxed { }` API that facilitates
735
+ testing RSpec with RSpec, allowing you to define example groups
736
+ and example from within an example without affecting the global
737
+ `RSpec.world` state. (Tyler Ball, 1808)
738
+ * Apply line-number filters only to the files they are scoped to,
739
+ allowing you to mix filtered and unfiltered files. (Myron Marston, rspec/rspec-core#1839)
740
+ * When dumping pending examples, include the failure details so that you
741
+ don't have to un-pend the example to see it. (Myron Marston, rspec/rspec-core#1844)
742
+ * Make `-I` option support multiple values when separated by
743
+ `File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
744
+ the behavior of Ruby's `-I` option. (Fumiaki Matsushima, rspec/rspec-core#1855).
745
+ * Treat each example as having a singleton example group for the
746
+ purposes of applying metadata-based features that normally apply
747
+ to example groups to individually tagged examples. For example,
748
+ `RSpec.shared_context "Uses redis", :uses_redis` will now apply
749
+ to individual examples tagged with `:uses_redis`, as will
750
+ `config.include RedisHelpers, :uses_redis`, and
751
+ `config.before(:context, :uses_redis) { }`, etc. (Myron Marston, rspec/rspec-core#1749)
752
+
753
+ Bug Fixes:
754
+
755
+ * When assigning generated example descriptions, surface errors
756
+ raised by `matcher.description` in the example description.
757
+ (Myron Marston, rspec/rspec-core#1771)
758
+ * Don't consider expectations from `after` hooks when generating
759
+ example descriptions. (Myron Marston, rspec/rspec-core#1771)
760
+ * Don't apply metadata-filtered config hooks to examples in groups
761
+ with matching metadata when those examples override the parent
762
+ metadata value to not match. (Myron Marston, rspec/rspec-core#1796)
763
+ * Fix `config.expect_with :minitest` so that `skip` uses RSpec's
764
+ implementation rather than Minitest's. (Jonathan Rochkind, rspec/rspec-core#1822)
765
+ * Fix `NameError` caused when duplicate example group aliases are defined and
766
+ the DSL is not globally exposed. (Aaron Kromer, rspec/rspec-core#1825)
767
+ * When a shared example defined in an external file fails, use the host
768
+ example group (from a loaded spec file) for the re-run command to
769
+ ensure the command will actually work. (Myron Marston, rspec/rspec-core#1835)
770
+ * Fix location filtering to work properly for examples defined in
771
+ a nested example group within a shared example group defined in
772
+ an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, rspec/rspec-core#1837)
773
+ * When a pending example fails (as expected) due to a mock expectation,
774
+ set `RSpec::Core::Example::ExecutionResult#pending_exception` --
775
+ previously it was not being set but should have been. (Myron Marston, rspec/rspec-core#1844)
776
+ * Fix rake task to work when `rspec-core` is installed in a directory
777
+ containing a space. (Guido Günther, rspec/rspec-core#1845)
778
+ * Fix regression in 3.1 that caused `describe Regexp` to raise errors.
779
+ (Durran Jordan, rspec/rspec-core#1853)
780
+ * Fix regression in 3.x that caused the profile information to be printed
781
+ after the summary. (Max Lincoln, rspec/rspec-core#1857)
782
+ * Apply `--seed` before loading `--require` files so that required files
783
+ can access the provided seed. (Myron Marston, rspec/rspec-core#1745)
784
+ * Handle `RSpec::Core::Formatters::DeprecationFormatter::FileStream` being
785
+ reopened with an IO stream, which sometimes happens with spring.
786
+ (Kevin Mook, rspec/rspec-core#1757)
787
+
788
+ ### 3.1.7 / 2014-10-11
789
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.6...v3.1.7)
790
+
791
+ Bug Fixes:
792
+
793
+ * Fix `Metadata.relative_path` so that for a current directory of
794
+ `/foo/bar`, `/foo/bar_1` is not wrongly converted to `._1`.
795
+ (Akos Vandra, rspec/rspec-core#1730)
796
+ * Prevent constant lookup mistakenly finding `RSpec::ExampleGroups` generated
797
+ constants on 1.9.2 by appending a trailing `_` to the generated names.
798
+ (Jon Rowe, rspec/rspec-core#1737)
799
+ * Fix bug in `:pending` metadata. If it got set in any way besides passing
800
+ it as part of the metadata literal passed to `it` (such as by using
801
+ `define_derived_metadata`), it did not have the desired effect,
802
+ instead marking the example as `:passed`. (Myron Marston, rspec/rspec-core#1739)
803
+
804
+ ### 3.1.6 / 2014-10-08
805
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.5...v3.1.6)
806
+
807
+ Bug Fixes:
808
+
809
+ * Fix regression in rake task pattern handling, that prevented patterns
810
+ that were relative from the current directory rather than from `spec`
811
+ from working properly. (Myron Marston, rspec/rspec-core#1734)
812
+ * Prevent rake task from generating duplicate load path entries.
813
+ (Myron Marston, rspec/rspec-core#1735)
814
+
815
+ ### 3.1.5 / 2014-09-29
816
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.4...v3.1.5)
817
+
818
+ Bug Fixes:
819
+
820
+ * Fix issue with the rake task incorrectly escaping strings on Windows.
821
+ (Jon Rowe rspec/rspec-core#1718)
822
+ * Support absolute path patterns. While this wasn't officially supported
823
+ previously, setting `rake_task.pattern` to an absolute path pattern in
824
+ RSpec 3.0 and before worked since it delegated to `FileList` internally
825
+ (but now just forwards the pattern on to the `rspec` command).
826
+ (Myron Marston, rspec/rspec-core#1726)
827
+
828
+ ### 3.1.4 / 2014-09-18
829
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.3...v3.1.4)
830
+
831
+ Bug Fixes:
832
+
833
+ * Fix implicit `subject` when using `describe false` or `describe nil`
834
+ so that it returns the provided primitive rather than the string
835
+ representation. (Myron Marston, rspec/rspec-core#1710)
836
+ * Fix backtrace filtering to allow code in subdirectories of your
837
+ current working directory (such as vendor/bundle/...) to be filtered
838
+ from backtraces. (Myron Marston, rspec/rspec-core#1708)
839
+
840
+ ### 3.1.3 / 2014-09-15
841
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.2...v3.1.3)
842
+
843
+ Bug Fixes:
844
+
845
+ * Fix yet another regression in rake task pattern handling, to allow
846
+ `task.pattern = FileList["..."]` to work. That was never intended
847
+ to be supported but accidentally worked in 3.0 and earlier.
848
+ (Myron Marston, rspec/rspec-core#1701)
849
+ * Fix pattern handling so that files are normalized to absolute paths
850
+ before subtracting the `--exclude-pattern` matched files from the
851
+ `--pattern` matched files so that it still works even if the patterns
852
+ are in slightly different forms (e.g. one starting with `./`).
853
+ (Christian Nelson, rspec/rspec-core#1698)
854
+
855
+ ### 3.1.2 / 2014-09-08
856
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.1...v3.1.2)
857
+
858
+ Bug Fixes:
859
+
860
+ * Fix another regression in rake task pattern handling, so that patterns
861
+ that start with `./` still work. (Christian Nelson, rspec/rspec-core#1696)
862
+
863
+ ### 3.1.1 / 2014-09-05
864
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.0...v3.1.1)
865
+
866
+ Bug Fixes:
867
+
868
+ * Fix a regression in rake task pattern handling, so that `rake_task.pattern = array`
869
+ works again. While we never intended to support array values (or even knew that worked!),
870
+ the implementation from 3.0 and earlier used `FileList` internally, which allows arrays.
871
+ The fix restores the old behavior. (Myron Marston, rspec/rspec-core#1694)
872
+
873
+ ### 3.1.0 / 2014-09-04
874
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.4...v3.1.0)
875
+
876
+ Enhancements:
877
+
878
+ * Update files generated by `rspec --init` so that warnings are enabled
879
+ in commented out section of `spec_helper` rather than `.rspec` so users
880
+ have to consciously opt-in to the setting. (Andrew Hooker, rspec/rspec-core#1572)
881
+ * Update `spec_helper` generated by `rspec --init` so that it sets the new
882
+ rspec-expectations `include_chain_clauses_in_custom_matcher_descriptions`
883
+ config option (which will be on by default in RSpec 4) and also sets the
884
+ rspec-mocks `verify_partial_doubles` option (which will also default
885
+ to on in RSpec 4). (Myron Marston, rspec/rspec-core#1647)
886
+ * Provide an `inspect` output for example procsy objects (used in around
887
+ hooks) that doesn't make them look like procs. (Jon Rowe, rspec/rspec-core#1620)
888
+ * Remove a few unneeded `require` statements from
889
+ `rspec/core/rake_task.rb`, making it even more lighterweight.
890
+ (Myron Marston, rspec/rspec-core#1640)
891
+ * Allow rspec-core to be used when neither rspec-mocks or
892
+ rspec-expectations are installed, without requiring any
893
+ user configuration. (Sam Phippen, Myron Marston, rspec/rspec-core#1615)
894
+ * Don't filter out gems from backtraces by default. (The RSpec
895
+ gems will still be filtered). User feedback has indicated
896
+ that including gems in default backtraces will be useful.
897
+ (Myron Marston, rspec/rspec-core#1641)
898
+ * Add new `config.filter_gems_from_backtrace "rack", "rake"` API
899
+ to easily filter the named gems from backtraces. (Myron Marston, rspec/rspec-core#1682)
900
+ * Fix default backtrace filters so that the RSpec binary is
901
+ excluded when installing RSpec as a bundler `:git` dependency.
902
+ (Myron Marston, rspec/rspec-core#1648)
903
+ * Simplify command generated by the rake task so that it no longer
904
+ includes unnecessary `-S`. (Myron Marston, rspec/rspec-core#1559)
905
+ * Add `--exclude-pattern` CLI option, `config.exclude_pattern =` config
906
+ option and `task.exclude_pattern =` rake task config option. Matching
907
+ files will be excluded. (John Gesimondo, Myron Marston, rspec/rspec-core#1651, rspec/rspec-core#1671)
908
+ * When an around hook fails to execute the example, mark it as
909
+ pending (rather than passing) so the user is made aware of the
910
+ fact that the example did not actually run. (Myron Marston, rspec/rspec-core#1660)
911
+ * Remove dependency on `FileUtils` from the standard library so that users do
912
+ not get false positives where their code relies on it but they are not
913
+ requiring it. (Sam Phippen, rspec/rspec-core#1565)
914
+
915
+ Bug Fixes:
916
+
917
+ * Fix rake task `t.pattern =` option so that it does not run all specs
918
+ when it matches no files, by passing along a `--pattern` option to
919
+ the `rspec` command, rather than resolving the file list and passing
920
+ along the files individually. (Evgeny Zislis, rspec/rspec-core#1653)
921
+ * Fix rake task default pattern so that it follows symlinks properly.
922
+ (Myron Marston, rspec/rspec-core#1672)
923
+ * Fix default pattern used with `rspec` command so that it follows
924
+ symlinks properly. (Myron Marston, rspec/rspec-core#1672)
925
+ * Change how we assign constant names to example group classes so that
926
+ it avoids a problem with `describe "Core"`. (Daniela Wellisz, rspec/rspec-core#1679)
927
+ * Handle rendering exceptions that have a different encoding than that
928
+ of their original source file. (Jon Rowe, rspec/rspec-core#1681)
929
+ * Allow access to message_lines without colour for failed examples even
930
+ when they're part of a shared example group. (tomykaira, rspec/rspec-core#1689)
931
+
932
+ ### 3.0.4 / 2014-08-14
933
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.3...v3.0.4)
934
+
935
+ Bug Fixes:
936
+
937
+ * Fix processing order of CLI options so that if `config.files_to_run`
938
+ is accessed from a file loaded by `--require`, `--pattern` is still
939
+ applied. (Myron Marston, rspec/rspec-core#1652)
940
+ * Fix `config.pattern=` so that it still takes affect even if
941
+ `config.files_to_run` has already been accessed. (Myron Marston, rspec/rspec-core#1652)
942
+
943
+ ### 3.0.3 / 2014-07-21
944
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.2...v3.0.3)
945
+
946
+ Bug Fixes:
947
+
948
+ * Properly convert both parts of a description into strings before
949
+ concatenation. (@nicklink483, rspec/rspec-core#1636)
950
+ * Exclude the working directory when figuring out folders to ignore.
951
+ (Jon Rowe, Myron Marston, rspec/rspec-core#1616)
952
+ * Allow `::RSpec::Core::Notifications::FailedExampleNotification#message_lines`
953
+ to be accessed without a colouriser. (@tomykaira, rspec/rspec-core#1637)
954
+
955
+ ### 3.0.2 / 2014-06-19
956
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.1...v3.0.2)
957
+
958
+ Bug Fixes:
959
+
960
+ * Fix regression in CLI option handling that prevented `--tag slow`
961
+ passed at the command line from overriding `--tag ~slow` in `.rspec`.
962
+ (Colin Jones, rspec/rspec-core#1602)
963
+ * Fix metadata `:example_group` deprecation warning so that it gets
964
+ issued at the call site of the configuration that specified it as
965
+ a filter rather than later when an example group is defined.
966
+ (Myron Marston, rspec/rspec-core#1562)
967
+ * Make the line that is printed when a shared example group fails indicating
968
+ where the concrete example group is white, separating it from the stack trace
969
+ that is produced for the failure. (Sam Phippen, Jon Rowe, rspec/rspec-core#1606)
970
+
971
+ ### 3.0.1 / 2014-06-12
972
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
973
+
974
+ Bug Fixes:
975
+
976
+ * Fix a couple ruby warnings caused by rspec-core when loaded.
977
+ (Prem Sichanugrist, rspec/rspec-core#1584)
978
+ * Example groups named `Config` will no longer cause a Ruby warning to be
979
+ issued. (Jimmy Cuadra, rspec/rspec-core#1580)
980
+
981
+ ### 3.0.0 / 2014-06-01
982
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
983
+
984
+ Bug Fixes:
985
+
986
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
987
+ stream. (Myron Marston)
988
+ * Fix regression in metadata that caused the metadata hash of a top-level
989
+ example group to have a `:parent_example_group` key even though it has
990
+ no parent example group. (Myron Marston)
991
+
992
+ Enhancements:
993
+
994
+ * Alter the default `spec_helper.rb` to no longer recommend
995
+ `config.full_backtrace = true` see rspec/rspec-core#1536 for discussion. (Jon Rowe)
996
+
997
+ ### 3.0.0.rc1 / 2014-05-18
998
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
999
+
1000
+ Breaking Changes for 3.0.0:
1001
+
1002
+ * Change `described_class` so that in a nested group like `describe
1003
+ MyClass`, it returns `MyClass` rather than the outer group's described
1004
+ class. (Myron Marston)
1005
+ * Refactor filter manager so that it no longer subclasses Hash and has a
1006
+ tighter, more domain-specific interface. (Sergey Pchelincev)
1007
+ * Remove legacy colours definitions from `BaseTextFormatter`. (Jon Rowe)
1008
+ * Remove console color definitions from `BaseTextFormatter`. (Jon Rowe)
1009
+ * Restructure example group metadata so that the computed keys are
1010
+ exposed directly off of the metadata hash rather than being on
1011
+ a nested `:example_group` subhash. In addition, the parent example
1012
+ group metadata is now available as `[:parent_example_group]` rather
1013
+ than `[:example_group][:example_group]`. Deprecated access via the
1014
+ old key structure is still provided. (Myron Marston)
1015
+ * Remove `:describes` metadata key. It duplicates `:described_class`
1016
+ for no good reason. Deprecated access via `:describes` is still
1017
+ provided. (Myron Marston)
1018
+ * Rename `:example_group_block` metadata key to `:block`.
1019
+ (Myron Marston)
1020
+ * Remove deprecated `RSpec::Core::Example#options`. (Myron Marston)
1021
+ * Move `BaseTextFormatter#colorize_summary` to `SummaryNotification#colorize_with`
1022
+ (Jon Rowe).
1023
+ * `describe some_hash` treated `some_hash` as metadata in RSpec 2.x but
1024
+ will treat it as the described object in RSpec 3.0. Metadata must
1025
+ always come after the description args. (Myron Marston)
1026
+ * Remove deprecated `display_name` alias of `ExampleGroup.description`.
1027
+ (Myron Marston)
1028
+ * Remove deprecated `describes` alias of `ExampleGroup.described_class`.
1029
+ (Myron Marston)
1030
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_it_behaves_like_to`.
1031
+ Use `RSpec::Core::Configuration#alias_it_behaves_like_to` instead.
1032
+ (Myron Marston)
1033
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_example_to`.
1034
+ Use `RSpec::Core::Configuration#alias_example_to` instead.
1035
+ (Myron Marston)
1036
+ * Removed `focused` example alias and change example/group aliases
1037
+ `fit`, `focus`, `fcontext` and `fdescribe` to no longer include
1038
+ `:focused => true` metadata. They only contain `:focus => true`
1039
+ metadata now. This means that you will need to filter them with
1040
+ `filter_run :focus`, not `filter_run :focused`. (Myron Marston)
1041
+ * Remove `--line-number` filtering. It's semantically dubious since it's
1042
+ a global filter (potentially applied to multiple files) but there's no
1043
+ meaningful connection between the same line number in multiple files.
1044
+ Instead use the `rspec path/to/spec.rb:23:46` form, which is terser
1045
+ and makes more sense as it is scoped to a file. (Myron Marston)
1046
+ * Remove `--default_path` as an alias for `--default-path`. (Jon Rowe)
1047
+ * Remove deprecated `share_examples_for`. There's still
1048
+ `shared_examples` and `shared_examples_for`. (Myron Marston)
1049
+ * Rename `RSpec::Core::Configuration#warnings` to
1050
+ `RSpec::Core::Configuration#warnings?` since it's a boolean flag.
1051
+ (Myron Marston)
1052
+ * RSpec's global state is no longer reset after a spec run. This gives
1053
+ more flexibility to alternate runners to decide when and if they
1054
+ want the state reset. Alternate runners are now responsible for
1055
+ calling this (or doing a similar reset) if they are going to run
1056
+ the spec suite multiple times in the same process. (Sam Phippen)
1057
+ * Merge `RSpec::Core::CommandLine` (never formally declared public)
1058
+ into `RSpec::Core::Runner`. (Myron Marston)
1059
+ * Remove `color_enabled` as an alias of `color`. (Jon Rowe)
1060
+ * Remove `backtrace_cleaner` as an alias of `backtrace_formatter`. (Jon Rowe)
1061
+ * Remove `filename_pattern` as an alias of `pattern`. (Jon Rowe)
1062
+ * Extract support for legacy formatters to `rspec-legacy_formatters`. (Jon Rowe)
1063
+ * `RSpec::Configuration#formatters` now returns a dup to prevent mutation. (Jon Rowe)
1064
+ * Replace `stdlib` as an available expectation framework with `test_unit` and
1065
+ `minitest`. (Aaron Kromer)
1066
+ * Remove backtrace formatting helpers from `BaseTextFormatter`. (Jon Rowe)
1067
+ * Extract profiler support to `ProfileFormatter` and `ProfileNotification`.
1068
+ Formatters should implement `dump_profile` if they wish to respond to `--profile`.
1069
+ (Jon Rowe)
1070
+ * Extract remaining formatter state to reporter and notifications. Introduce
1071
+ `ExamplesNotification` to share information about examples that was previously
1072
+ held in `BaseFormatter`. (Jon Rowe)
1073
+
1074
+ Enhancements:
1075
+
1076
+ * Add `config.default_formatter` attribute, which can be used to set a
1077
+ formatter which will only be used if no other formatter is set
1078
+ (e.g. via `--formatter`). (Myron Marston)
1079
+ * Support legacy colour definitions in `LegacyFormatterAdaptor`. (Jon Rowe)
1080
+ * Migrate `execution_result` (exposed by metadata) from a hash to a
1081
+ first-class object with appropriate attributes. `status` is now
1082
+ stored and returned as a symbol rather than a string. It retains
1083
+ deprecated hash behavior for backwards compatibility. (Myron Marston)
1084
+ * Provide console code helper for formatters. (Jon Rowe)
1085
+ * Use raw ruby hashes for the metadata hashes rather than a subclass of
1086
+ a hash. Computed metadata entries are now computed in advance rather
1087
+ than being done lazily on first access. (Myron Marston)
1088
+ * Add `:block` metadata entry to the example metadata, bringing
1089
+ parity with `:block` in the example group metadata. (Myron Marston)
1090
+ * Add `fspecify` and `fexample` as aliases of `specify` and `example`
1091
+ with `:focus => true` metadata for parity with `fit`. (Myron Marston)
1092
+ * Add legacy support for `colorize_summary`. (Jon Rowe)
1093
+ * Restructure runner so it can be more easily customized in a subclass
1094
+ for an alternate runner. (Ben Hoskings)
1095
+ * Document `RSpec::Core::ConfigurationOptions` as an officially
1096
+ supported public API. (Myron Marston)
1097
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
1098
+ to the named file. (Myron Marston)
1099
+ * Minitest 5 compatability for `expect_with :stdlib` (now available as
1100
+ `expect_with :minitest`). (Xavier Shay)
1101
+ * Reporter now notifies formatters of the load time of RSpec and your
1102
+ specs via `StartNotification` and `SummaryNotification`. (Jon Rowe)
1103
+ * Add `disable_monkey_patching!` config option that disables all monkey
1104
+ patching from whatever pieces of RSpec you use. (Alexey Fedorov)
1105
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
1106
+ * Add `config.define_derived_metadata`, which can be used to apply
1107
+ additional metadata to all groups or examples that match a given
1108
+ filter. (Myron Marston)
1109
+ * Provide formatted and colorized backtraces via `FailedExampleNotification`
1110
+ and send `PendingExampleFixedNotifications` when the error is due to a
1111
+ passing spec you expect to fail. (Jon Rowe)
1112
+ * Add `dump_profile` to formatter API to allow formatters to implement
1113
+ support for `--profile`. (Jon Rowe)
1114
+ * Allow colourising text via `ConsoleCodes` with RSpec 'states'
1115
+ (e.g. `:success`, `:failure`) rather than direct colour codes. (Jon Rowe)
1116
+ * Expose `fully_formatted` methods off the formatter notification objects
1117
+ that make it easy for a custom formatter to produce formatted output
1118
+ like rspec-core's. (Myron Marston)
1119
+
1120
+ Bug Fixes:
1121
+
1122
+ * Fix `spec_helper.rb` file generated by `rspec --init` so that the
1123
+ recommended settings correctly use the documentation formatter
1124
+ when running one file. (Myron Marston)
1125
+ * Fix ordering problem where descriptions were generated after
1126
+ tearing down mocks, which resulted in unexpected exceptions.
1127
+ (Bradley Schaefer, Aaron Kromer, Andrey Savchenko)
1128
+ * Allow a symbol to be used as an implicit subject (e.g. `describe
1129
+ :foo`). (Myron Marston)
1130
+ * Prevent creating an isolated context (i.e. using `RSpec.describe`) when
1131
+ already inside a context. There is no reason to do this, and it could
1132
+ potentially cause unexpected bugs. (Xavier Shay)
1133
+ * Fix shared example group scoping so that when two shared example
1134
+ groups share the same name at different levels of nested contexts,
1135
+ the one in the nearest context is used. (Myron Marston)
1136
+ * Fix `--warnings` option so that it enables warnings immediately so
1137
+ that it applies to files loaded by `--require`. (Myron Marston)
1138
+ * Issue a warning when you set `config.deprecation_stream` too late for
1139
+ it to take effect because the reporter has already been setup. (Myron Marston)
1140
+ * Add the full `RSpec::Core::Example` interface to the argument yielded
1141
+ to `around` hooks. (Myron Marston)
1142
+ * Line number always takes precendence when running specs with filters.
1143
+ (Xavier Shay)
1144
+ * Ensure :if and :unless metadata filters are treated as a special case
1145
+ and are always in-effect. (Bradley Schaefer)
1146
+ * Ensure the currently running installation of RSpec is used when
1147
+ the rake task shells out to `rspec`, even if a newer version is also
1148
+ installed. (Postmodern)
1149
+ * Using a legacy formatter as default no longer causes an infinite loop.
1150
+ (Xavier Shay)
1151
+
1152
+ ### 3.0.0.beta2 / 2014-02-17
1153
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta1...v3.0.0.beta2)
1154
+
1155
+ Breaking Changes for 3.0.0:
1156
+
1157
+ * Make `mock_with` option more strict. Strings are no longer supported
1158
+ (e.g. `mock_with "mocha"`) -- use a symbol instead. Also, unrecognized
1159
+ values will now result in an error rather than falling back to the
1160
+ null mocking adapter. If you want to use the null mocking adapter,
1161
+ use `mock_with :nothing` (as has been documented for a long time).
1162
+ (Myron Marston)
1163
+ * Remove support for overriding RSpec's built-in `:if` and `:unless`
1164
+ filters. (Ashish Dixit)
1165
+ * Custom formatters are now required to call
1166
+ `RSpec::Core::Formatters.register(formatter_class, *notifications)`
1167
+ where `notifications` is the list of events the formatter wishes to
1168
+ be notified about. Notifications are handled by methods matching the
1169
+ names on formatters. This allows us to add or remove notifications
1170
+ without breaking existing formatters. (Jon Rowe)
1171
+ * Change arguments passed to formatters. Rather than passing multiple
1172
+ arguments (which limits are ability to add additional arguments as
1173
+ doing so would break existing formatters), we now pass a notification
1174
+ value object that exposes the same data via attributes. This will
1175
+ allow us to add new bits of data to a notification event without
1176
+ breaking existing formatters. (Jon Rowe)
1177
+ * Remove support for deprecated `:alias` option for
1178
+ `RSpec.configuration.add_setting`. (Myron Marston)
1179
+ * Remove support for deprecated `RSpec.configuration.requires = [...]`.
1180
+ (Myron Marston)
1181
+ * Remove support for deprecated `--formatter` CLI option. (Myron Marston)
1182
+ * Remove support for deprecated `--configure` CLI option. (Myron Marston)
1183
+ * Remove support for deprecated `RSpec::Core::RakeTask#spec_opts=`.
1184
+ (Myron Marston)
1185
+ * An example group level `pending` block or `:pending` metadata now executes
1186
+ the example and cause a failure if it passes, otherwise it will be pending if
1187
+ it fails. The old "never run" behaviour is still used for `xexample`, `xit`,
1188
+ and `xspecify`, or via a new `skip` method or `:skip` metadata option.
1189
+ (Xavier Shay)
1190
+ * After calling `pending` inside an example, the remainder of the example will
1191
+ now be run. If it passes a failure is raised, otherwise the example is marked
1192
+ pending. The old "never run" behaviour is provided a by a new `skip` method.
1193
+ (Xavier Shay)
1194
+ * Pending blocks inside an example have been removed as a feature with no
1195
+ direct replacement. Use `skip` or `pending` without a block. (Xavier Shay)
1196
+ * Pending statement is no longer allowed in `before(:all)` hooks. Use `skip`
1197
+ instead. (Xavier Shay)
1198
+ * Remove `show_failures_in_pending_blocks` configuration option. (Xavier Shay)
1199
+ * Remove support for specifying the documentation formatter using
1200
+ 's', 'n', 'spec' or 'nested'. (Jon Rowe)
1201
+
1202
+ Enhancements:
1203
+
1204
+ * Add example run time to JSON formatter output. (Karthik Kastury)
1205
+ * Add more suggested settings to the files generated by
1206
+ `rspec --init`. (Myron Marston)
1207
+ * Add `config.alias_example_group_to`, which can be used to define a
1208
+ new method that defines an example group with the provided metadata.
1209
+ (Michi Huber)
1210
+ * Add `xdescribe` and `xcontext` as shortcuts to skip an example group.
1211
+ (Myron Marston)
1212
+ * Add `fdescribe` and `fcontext` as shortcuts to focus an example group.
1213
+ (Myron Marston)
1214
+ * Don't autorun specs via `#at_exit` by default. `require 'rspec/autorun'`
1215
+ is only needed when running specs via `ruby`, as it always has been.
1216
+ Running specs via `rake` or `rspec` are both unaffected. (Ben Hoskings)
1217
+ * Add `expose_dsl_globally` config option, defaulting to true. When disabled
1218
+ it will remove the monkey patches rspec-core adds to `main` and `Module`
1219
+ (e.g. `describe`, `shared_examples_for`, etc). (Jon Rowe)
1220
+ * Expose RSpec DSL entry point methods (`describe`,
1221
+ `shared_examples_for`, etc) on the `RSpec` constant. Intended for use
1222
+ when `expose_dsl_globally` is set to `false`. (Jon Rowe)
1223
+ * For consistency, expose all example group aliases (including
1224
+ `context`) on the `RSpec` constant. If `expose_dsl_globally` is set to
1225
+ `true`, also expose them on `main` and `Module`. Historically, only `describe`
1226
+ was exposed. (Jon Rowe, Michi Huber)
1227
+ * Add hook scope `:example` as an alias for `:each`, and `:context` as an alias
1228
+ for `:all`. (John Feminella)
1229
+
1230
+ Bug Fixes:
1231
+
1232
+ * Fix failure (undefined method `path`) in end-of-run summary
1233
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
1234
+ * Issue error when attempting to use `-i` or `--I` on command line,
1235
+ too close to `-I` to be considered short hand for `--init`. (Jon Rowe)
1236
+ * Prevent adding formatters to an output target if the same
1237
+ formatter has already been added to that output. (Alex Peattie)
1238
+ * Allow a matcher-generated example description to be used when
1239
+ the example is pending. (Myron Marston)
1240
+ * Ensure the configured `failure_exit_code` is used by the rake
1241
+ task when there is a failure. (Jon Rowe)
1242
+ * Restore behaviour whereby system exclusion filters take priority over working
1243
+ directory (was broken in beta1). (Jon Rowe)
1244
+ * Prevent RSpec mangling file names that have substrings containing `line_number`
1245
+ or `default_path`. (Matijs van Zuijlen)
1246
+ * Fix failure line detection so that it handles relative file paths
1247
+ (which can happen when running specs through `ruby` using `rspec/autorun`).
1248
+ (Myron Marston, rspec/rspec-core#1829)
1249
+
1250
+ ### 3.0.0.beta1 / 2013-11-07
1251
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v3.0.0.beta1)
1252
+
1253
+ Breaking Changes for 3.0.0:
1254
+
1255
+ * Remove explicit support for 1.8.6. (Jon Rowe)
1256
+ * Remove `RSpec::Core::ExampleGroup#example` and
1257
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
1258
+ access to the example (e.g. to get its metadata), use a block arg
1259
+ instead. (David Chelimsky)
1260
+ * Remove `TextMateFormatter`, it has been moved to `rspec-tmbundle`.
1261
+ (Aaron Kromer)
1262
+ * Remove RCov integration. (Jon Rowe)
1263
+ * Remove deprecated support for RSpec 1 constructs (Myron Marston):
1264
+ * The `Spec` and `Rspec` constants (rather than `RSpec`).
1265
+ * `Spec::Runner.configure` rather than `RSpec.configure`.
1266
+ * `Rake::SpecTask` rather than `RSpec::Core::RakeTask`.
1267
+ * Remove deprecated support for `share_as`. (Myron Marston)
1268
+ * Remove `--debug` option (and corresponding option on
1269
+ `RSpec::Core::Configuration`). Instead, use `-r<debugger gem name>` to
1270
+ load whichever debugger gem you wish to use (e.g. `ruby-debug`,
1271
+ `debugger`, or `pry`). (Myron Marston)
1272
+ * Extract Autotest support to a seperate gem. (Jon Rowe)
1273
+ * Raise an error when a `let` or `subject` declaration is
1274
+ accessed in a `before(:all)` or `after(:all)` hook. (Myron Marston)
1275
+ * Extract `its` support to a separate gem. (Peter Alfvin)
1276
+ * Disallow use of a shared example group from sibling contexts, making them
1277
+ fully isolated. 2.14 and 2.99 allowed this but printed a deprecation warning.
1278
+ (Jon Rowe)
1279
+ * Remove `RSpec::Core::Configuration#output` and
1280
+ `RSpec::Core::Configuration#out` aliases of
1281
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
1282
+ * Remove legacy ordering APIs deprecated in 2.99.0.beta1. (Myron
1283
+ Marston)
1284
+
1285
+ Enhancements:
1286
+
1287
+ * Replace unmaintained syntax gem with coderay gem. (Xavier Shay)
1288
+ * Times in profile output are now bold instead of `failure_color`.
1289
+ (Matthew Boedicker)
1290
+ * Add `--no-fail-fast` command line option. (Gonzalo Rodríguez-Baltanás Díaz)
1291
+ * Runner now considers the local system ip address when running under Drb.
1292
+ (Adrian CB)
1293
+ * JsonFormatter now includes `--profile` information. (Alex / @MasterLambaster)
1294
+ * Always treat symbols passed as metadata args as hash
1295
+ keys with true values. RSpec 2 supported this with the
1296
+ `treat_symbols_as_metadata_keys_with_true_values` but
1297
+ now this behavior is always enabled. (Myron Marston)
1298
+ * Add `--dry-run` option, which prints the formatter output
1299
+ of your suite without running any examples or hooks.
1300
+ (Thomas Stratmann, Myron Marston)
1301
+ * Document the configuration options and default values in the `spec_helper.rb`
1302
+ file that is generated by RSpec. (Parker Selbert)
1303
+ * Give generated example group classes a friendly name derived
1304
+ from the docstring, rather than something like "Nested_2".
1305
+ (Myron Marston)
1306
+ * Avoid affecting randomization of user code when shuffling
1307
+ examples so that users can count on their own seeds
1308
+ working. (Travis Herrick)
1309
+ * Ordering is no longer a single global property of the test suite.
1310
+ Each group can pick an ordering using `:order` metadata. (Andy
1311
+ Lindeman, Sam Phippen, Myron Marston)
1312
+ * Allow named custom ordering strategies to be registered, which can
1313
+ then be used on individual example groups. (Andy Lindeman, Sam
1314
+ Phippen, Myron Marston)
1315
+
1316
+ Deprecations:
1317
+
1318
+ * `treat_symbols_as_metadata_keys_with_true_values` is deprecated and no
1319
+ longer has an affect now that the behavior it enabled is always
1320
+ enabled. (Myron Marston)
1321
+
1322
+ ### 2.99.2 / 2014-08-19
1323
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v2.99.2)
1324
+
1325
+ Enhancements:
1326
+
1327
+ * Improve deprecation warning for RSpec 3 change in `describe <a symbol>`
1328
+ behavior. (Jon Rowe, rspec/rspec-core#1667)
1329
+
1330
+ ### 2.99.1 / 2014-06-19
1331
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0...v2.99.1)
1332
+
1333
+ Bug Fixes:
1334
+
1335
+ * Add missing deprecation warning for when `RSpec::Core::Runner` is used
1336
+ multiple times in the same process. In 2.x RSpec's global state was
1337
+ automatically cleared between runs but in 3.0 you need to call `RSpec.reset`
1338
+ manually in these situations. (Sam Phippen, rspec/rspec-core#1587)
1339
+ * Prevent deprecation being accidentally issues when doubles used with `be_`
1340
+ matchers due to automatically generated descriptions. (Jon Rowe, rspec/rspec-core#1573)
1341
+ * Load `rspec/core` when loading `rspec/core/rake_task` to ensure we can
1342
+ issue deprecations correctly. (Jon Rowe, rspec/rspec-core#1612)
1343
+
1344
+ ### 2.99.0 / 2014-06-01
1345
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v2.99.0)
1346
+
1347
+ Bug Fixes:
1348
+
1349
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
1350
+ stream. (Myron Marston)
1351
+ * Use `RSpec::Configuration#backtrace_exclusion_patterns` rather than the
1352
+ deprecated `RSpec::Configuration#backtrace_clean_patterns` when mocking
1353
+ with rr. (David Dollar)
1354
+
1355
+ ### 2.99.0.rc1 / 2014-05-18
1356
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
1357
+
1358
+ Enhancements:
1359
+
1360
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
1361
+ to the named file. (Myron Marston)
1362
+ * Backport support for `skip` in metadata to skip execution of an example.
1363
+ (Xavier Shay, rspec/rspec-core#1472)
1364
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
1365
+ * Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
1366
+
1367
+ Deprecations:
1368
+
1369
+ * Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
1370
+ `SkipDeclaredInExample` instead. (Xavier Shay)
1371
+ * Issue a deprecation when `described_class` is accessed from within
1372
+ a nested `describe <SomeClass>` example group, since `described_class`
1373
+ will return the innermost described class in RSpec 3 rather than the
1374
+ outermost described class, as it behaved in RSpec 2. (Myron Marston)
1375
+ * Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
1376
+ `RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
1377
+ `#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
1378
+ * Deprecate `RSpec::Core::Example#options` in favor of
1379
+ `RSpec::Core::Example#metadata`. (Myron Marston)
1380
+ * Issue warning when passing a symbol or hash to `describe` or `context`
1381
+ as the first argument. In RSpec 2.x this would be treated as metadata
1382
+ but in RSpec 3 it'll be treated as the described object. To continue
1383
+ having it treated as metadata, pass a description before the symbol or
1384
+ hash. (Myron Marston)
1385
+ * Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
1386
+ `RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
1387
+ of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
1388
+ `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
1389
+ (Jon Rowe)
1390
+ * Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
1391
+ `RSpec::Core::ExampleGroup.description`. (Myron Marston)
1392
+ * Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
1393
+ `RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
1394
+ * Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
1395
+ `RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
1396
+ * Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
1397
+ of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
1398
+ * Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
1399
+ `RSpec::Core::ExampleGroup.focus`. (Myron Marston)
1400
+ * Add deprecation warning for `config.filter_run :focused` since
1401
+ example aliases `fit` and `focus` will no longer include
1402
+ `:focused` metadata but will continue to include `:focus`. (Myron Marston)
1403
+ * Deprecate filtering by `:line_number` (e.g. `--line-number` from the
1404
+ CLI). Use location filtering instead. (Myron Marston)
1405
+ * Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
1406
+ * Deprecate `RSpec::Core::Configuration#warnings` in favor of
1407
+ `RSpec::Core::Configuration#warnings?`. (Myron Marston)
1408
+ * Deprecate `share_examples_for` in favor of `shared_examples_for` or
1409
+ just `shared_examples`. (Myron Marston)
1410
+ * Deprecate `RSpec::Core::CommandLine` in favor of
1411
+ `RSpec::Core::Runner`. (Myron Marston)
1412
+ * Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
1413
+ `#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
1414
+ * Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
1415
+ * Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
1416
+ * Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
1417
+ * Deprecate `stdlib` as an available expectation framework in favour of
1418
+ `test_unit` and `minitest`. (Aaron Kromer)
1419
+
1420
+ Bug Fixes:
1421
+
1422
+ * Issue a warning when you set `config.deprecation_stream` too late for
1423
+ it to take effect because the reporter has already been setup. (Myron Marston)
1424
+ * `skip` with a block should not execute the block. (Xavier Shay)
1425
+
1426
+ ### 2.99.0.beta2 / 2014-02-17
1427
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
1428
+
1429
+ Enhancements:
1430
+
1431
+ * Add `is_expected` for one-liners that read well with the
1432
+ `expect`-based syntax. `is_expected` is simply defined as
1433
+ `expect(subject)` and can be used in an expression like:
1434
+ `it { is_expected.to read_well }`. (Myron Marston)
1435
+ * Backport `skip` from RSpec 3, which acts like `pending` did in RSpec 2
1436
+ when not given a block, since the behavior of `pending` is changing in
1437
+ RSpec 3. (Xavier Shay)
1438
+
1439
+ Deprecations:
1440
+
1441
+ * Deprecate inexact `mock_with` config options. RSpec 3 will only support
1442
+ the exact symbols `:rspec`, `:mocha`, `:flexmock`, `:rr` or `:nothing`
1443
+ (or any module that implements the adapter interface). RSpec 2 did
1444
+ fuzzy matching but this will not be supported going forward.
1445
+ (Myron Marston)
1446
+ * Deprecate `show_failures_in_pending_blocks` config option. To achieve
1447
+ the same behavior as the option enabled, you can use a custom
1448
+ formatter instead. (Xavier Shay)
1449
+ * Add a deprecation warning for the fact that the behavior of `pending`
1450
+ is changing in RSpec 3 -- rather than skipping the example (as it did
1451
+ in 2.x when no block was provided), it will run the example and mark
1452
+ it as failed if no exception is raised. Use `skip` instead to preserve
1453
+ the old behavior. (Xavier Shay)
1454
+ * Deprecate 's', 'n', 'spec' and 'nested' as aliases for documentation
1455
+ formatter. (Jon Rowe)
1456
+ * Deprecate `RSpec::Core::Reporter#abort` in favor of
1457
+ `RSpec::Core::Reporter#finish`. (Jon Rowe)
1458
+
1459
+ Bug Fixes:
1460
+
1461
+ * Fix failure (undefined method `path`) in end-of-run summary
1462
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
1463
+ * Fix issue were overridding spec ordering from the command line wasn't
1464
+ fully recognised interally. (Jon Rowe)
1465
+
1466
+ ### 2.99.0.beta1 / 2013-11-07
1467
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
1468
+
1469
+ Enhancements
1470
+
1471
+ * Block-based DSL methods that run in the context of an example
1472
+ (`it`, `before(:each)`, `after(:each)`, `let` and `subject`)
1473
+ now yield the example as a block argument. (David Chelimsky)
1474
+ * Warn when the name of more than one example group is submitted to
1475
+ `include_examples` and it's aliases. (David Chelimsky)
1476
+ * Add `expose_current_running_example_as` config option for
1477
+ use during the upgrade process when external gems use the
1478
+ deprecated `RSpec::Core::ExampleGroup#example` and
1479
+ `RSpec::Core::ExampleGroup#running_example` methods. (Myron Marston)
1480
+ * Limit spamminess of deprecation messages. (Bradley Schaefer, Loren Segal)
1481
+ * Add `config.raise_errors_for_deprecations!` option, which turns
1482
+ deprecations warnings into errors to surface the full backtrace
1483
+ of the call site. (Myron Marston)
1484
+
1485
+ Deprecations
1486
+
1487
+ * Deprecate `RSpec::Core::ExampleGroup#example` and
1488
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
1489
+ access to the example (e.g. to get its metadata), use a block argument
1490
+ instead. (David Chelimsky)
1491
+ * Deprecate use of `autotest/rspec2` in favour of `rspec-autotest`. (Jon Rowe)
1492
+ * Deprecate RSpec's built-in debugger support. Use a CLI option like
1493
+ `-rruby-debug` (for the ruby-debug gem) or `-rdebugger` (for the
1494
+ debugger gem) instead. (Myron Marston)
1495
+ * Deprecate `RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values = false`.
1496
+ RSpec 3 will not support having this option set to `false`. (Myron Marston)
1497
+ * Deprecate accessing a `let` or `subject` declaration in
1498
+ a `after(:all)` hook. (Myron Marston, Jon Rowe)
1499
+ * Deprecate built-in `its` usage in favor of `rspec-its` gem due to planned
1500
+ removal in RSpec 3. (Peter Alfvin)
1501
+ * Deprecate `RSpec::Core::PendingExampleFixedError` in favor of
1502
+ `RSpec::Core::Pending::PendingExampleFixedError`. (Myron Marston)
1503
+ * Deprecate `RSpec::Core::Configuration#out` and
1504
+ `RSpec::Core::Configuration#output` in favor of
1505
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
1506
+ * Deprecate legacy ordering APIs.
1507
+ * You should use `register_ordering(:global)` instead of these:
1508
+ * `RSpec::Core::Configuration#order_examples`
1509
+ * `RSpec::Core::Configuration#order_groups`
1510
+ * `RSpec::Core::Configuration#order_groups_and_examples`
1511
+ * These are deprecated with no replacement because in RSpec 3
1512
+ ordering is a property of individual example groups rather than
1513
+ just a global property of the entire test suite:
1514
+ * `RSpec::Core::Configuration#order`
1515
+ * `RSpec::Core::Configuration#randomize?`
1516
+ * `--order default` is deprecated in favor of `--order defined`
1517
+ (Myron Marston)
1518
+
1519
+ ### 2.14.8 / 2014-02-27
1520
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
1521
+
1522
+ Bug fixes:
1523
+
1524
+ * Fix regression with the `textmateformatter` that prevented backtrace links
1525
+ from being clickable. (Stefan Daschek)
1526
+
1527
+ ### 2.14.7 / 2013-10-29
1528
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
1529
+
1530
+ Bug fixes:
1531
+
1532
+ * Fix regression in 2.14.6 that broke the Fivemat formatter.
1533
+ It depended upon either
1534
+ `example.execution_result[:exception].pending_fixed?` (which
1535
+ was removed in 2.14.6 to fix an issue with frozen error objects)
1536
+ or `RSpec::Core::PendingExampleFixedError` (which was renamed
1537
+ to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
1538
+ This fix makes a constant alias for the old error name.
1539
+ (Myron Marston)
1540
+
1541
+ ### 2.14.6 / 2013-10-15
1542
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
1543
+
1544
+ Bug fixes:
1545
+
1546
+ * Format stringified numbers correctly when mathn library is loaded.
1547
+ (Jay Hayes)
1548
+ * Fix an issue that prevented the use of frozen error objects. (Lars
1549
+ Gierth)
1550
+
1551
+ ### 2.14.5 / 2013-08-13
1552
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
1553
+
1554
+ Bug fixes:
1555
+
1556
+ * Fix a `NoMethodError` that was being raised when there were no shared
1557
+ examples or contexts declared and `RSpec.world.reset` is invoked.
1558
+ (thepoho, Jon Rowe, Myron Marston)
1559
+ * Fix a deprecation warning that was being incorrectly displayed when
1560
+ `shared_examples` are declared at top level in a `module` scope.
1561
+ (Jon Rowe)
1562
+ * Fix after(:all) hooks so consecutive (same context) scopes will run even if
1563
+ one raises an error. (Jon Rowe, Trejkaz)
1564
+ * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
1565
+
1566
+ ### 2.14.4 / 2013-07-21
1567
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
1568
+
1569
+ Bug fixes
1570
+
1571
+ * Fix regression in 2.14: ensure configured requires (via `-r` option)
1572
+ are loaded before spec files are loaded. This allows the spec files
1573
+ to programatically change the file pattern (Jon Rowe).
1574
+ * Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if
1575
+ they are not already loaded (`RSpec::Matches` has been autoloaded
1576
+ for a while). In the `rspec` gem, we changed it recently to stop
1577
+ loading `rspec/mocks` and `rspec/expectations` by default, as some
1578
+ users reported problems where they were intending to use mocha,
1579
+ not rspec-mocks, but rspec-mocks was loaded and causing a conflict.
1580
+ rspec-core loads mocks and expectations at the appropriate time, so
1581
+ it seemed like a safe change -- but caused a problem for some authors
1582
+ of libraries that integrate with RSpec. This fixes that problem.
1583
+ (Myron Marston)
1584
+ * Gracefully handle a command like `rspec --profile path/to/spec.rb`:
1585
+ the `path/to/spec.rb` arg was being wrongly treated as the `profile`
1586
+ integer arg, which got cast `0` using `to_i`, causing no profiled
1587
+ examples to be printed. (Jon Rowe)
1588
+
1589
+ ### 2.14.3 / 2013-07-13
1590
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
1591
+
1592
+ Bug fixes
1593
+
1594
+ * Fix deprecation notices issued from `RSpec::Core::RakeTask` so
1595
+ that they work properly when all of rspec-core is not loaded.
1596
+ (This was a regression in 2.14) (Jon Rowe)
1597
+
1598
+ ### 2.14.2 / 2013-07-09
1599
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
1600
+
1601
+ Bug fixes
1602
+
1603
+ * Fix regression caused by 2.14.1 release: formatters that
1604
+ report that they `respond_to?` a notification, but had
1605
+ no corresponding method would raise an error when registered.
1606
+ The new fix is to just implement `start` on the deprecation
1607
+ formatter to fix the original JRuby/ruby-debug issue.
1608
+ (Jon Rowe)
1609
+
1610
+ ### 2.14.1 / 2013-07-08
1611
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
1612
+
1613
+ Bug fixes
1614
+
1615
+ * Address deprecation formatter failure when using `ruby-debug` on
1616
+ JRuby: fix `RSpec::Core::Reporter` to not send a notification
1617
+ when the formatter's implementation of the notification method
1618
+ comes from `Kernel` (Alex Portnov, Jon Rowe).
1619
+
1620
+ ### 2.14.0 / 2013-07-06
1621
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
1622
+
1623
+ Enhancements
1624
+
1625
+ * Apply focus to examples defined with `fit` (equivalent of
1626
+ `it "description", focus: true`) (Michael de Silva)
1627
+
1628
+ Bug fix
1629
+
1630
+ * Ensure methods defined by `let` take precedence over others
1631
+ when there is a name collision (e.g. from an included module).
1632
+ (Jon Rowe, Andy Lindeman and Myron Marston)
1633
+
1634
+ ### 2.14.0.rc1 / 2013-05-27
1635
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
1636
+
1637
+ Enhancements
1638
+
1639
+ * Improved Windows detection inside Git Bash, for better `--color` handling.
1640
+ * Add profiling of the slowest example groups to `--profile` option.
1641
+ The output is sorted by the slowest average example groups.
1642
+ * Don't show slow examples if there's a failure and both `--fail-fast`
1643
+ and `--profile` options are used (Paweł Gościcki).
1644
+ * Rather than always adding `spec` to the load path, add the configured
1645
+ `--default-path` to the load path (which defaults to `spec`). This
1646
+ better supports folks who choose to put their specs in a different
1647
+ directory (John Feminella).
1648
+ * Add some logic to test time duration precision. Make it a
1649
+ function of time, dropping precision as the time increases. (Aaron Kromer)
1650
+ * Add new `backtrace_inclusion_patterns` config option. Backtrace lines
1651
+ that match one of these patterns will _always_ be included in the
1652
+ backtrace, even if they match an exclusion pattern, too (Sam Phippen).
1653
+ * Support ERB trim mode using the `-` when parsing `.rspec` as ERB
1654
+ (Gabor Garami).
1655
+ * Give a better error message when let and subject are called without a block.
1656
+ (Sam Phippen).
1657
+ * List the precedence of `.rspec-local` in the configuration documentation
1658
+ (Sam Phippen)
1659
+ * Support `{a,b}` shell expansion syntax in `--pattern` option
1660
+ (Konstantin Haase).
1661
+ * Add cucumber documentation for --require command line option
1662
+ (Bradley Schaefer)
1663
+ * Expose configuration options via config:
1664
+ * `config.libs` returns the libs configured to be added onto the load path
1665
+ * `full_backtrace?` returns the state of the backtrace cleaner
1666
+ * `debug?` returns true when the debugger is loaded
1667
+ * `line_numbers` returns the line numbers we are filtering by (if any)
1668
+ * `full_description` returns the RegExp used to filter descriptions
1669
+ (Jon Rowe)
1670
+ * Add setters for RSpec.world and RSpec.configuration (Alex Soulim)
1671
+ * Configure ruby's warning behaviour with `--warnings` (Jon Rowe)
1672
+ * Fix an obscure issue on old versions of `1.8.7` where `Time.dup` wouldn't
1673
+ allow access to `Time.now` (Jon Rowe)
1674
+ * Make `shared_examples_for` context aware, so that keys may be safely reused
1675
+ in multiple contexts without colliding. (Jon Rowe)
1676
+ * Add a configurable `deprecation_stream` (Jon Rowe)
1677
+ * Publish deprecations through a formatter (David Chelimsky)
1678
+
1679
+ Bug fixes
1680
+
1681
+ * Make JSON formatter behave the same when it comes to `--profile` as
1682
+ the text formatter (Paweł Gościcki).
1683
+ * Fix named subjects so that if an inner group defines a method that
1684
+ overrides the named method, `subject` still retains the originally
1685
+ declared value (Myron Marston).
1686
+ * Fix random ordering so that it does not cause `rand` in examples in
1687
+ nested sibling contexts to return the same value (Max Shytikov).
1688
+ * Use the new `backtrace_inclusion_patterns` config option to ensure
1689
+ that folks who develop code in a directory matching one of the default
1690
+ exclusion patterns (e.g. `gems`) still get the normal backtrace
1691
+ filtering (Sam Phippen).
1692
+ * Fix ordering of `before` hooks so that `before` hooks declared in
1693
+ `RSpec.configure` run before `before` hooks declared in a shared
1694
+ context (Michi Huber and Tejas Dinkar).
1695
+ * Fix `Example#full_description` so that it gets filled in by the last
1696
+ matcher description (as `Example#description` already did) when no
1697
+ doc string has been provided (David Chelimsky).
1698
+ * Fix the memoized methods (`let` and `subject`) leaking `define_method`
1699
+ as a `public` method. (Thomas Holmes and Jon Rowe) (rspec/rspec-core#873)
1700
+ * Fix warnings coming from the test suite. (Pete Higgins)
1701
+
1702
+ Deprecations
1703
+
1704
+ * Deprecate `Configuration#backtrace_clean_patterns` in favor of
1705
+ `Configuration#backtrace_exclusion_patterns` for greater consistency
1706
+ and symmetry with new `backtrace_inclusion_patterns` config option
1707
+ (Sam Phippen).
1708
+ * Deprecate `Configuration#requires=` in favor of using ruby's
1709
+ `require`. Requires specified by the command line can still be
1710
+ accessed by the `Configuration#require` reader. (Bradley Schaefer)
1711
+ * Deprecate calling `SharedExampleGroups` defined across sibling contexts
1712
+ (Jon Rowe)
1713
+
1714
+ ### 2.13.1 / 2013-03-12
1715
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
1716
+
1717
+ Bug fixes
1718
+
1719
+ * Use hook classes as proxies rather than extending hook blocks to support
1720
+ lambdas for before/after/around hooks. (David Chelimsky)
1721
+ * Fix regression in 2.13.0 that caused confusing behavior when overriding
1722
+ a named subject with an unnamed subject in an inner group and then
1723
+ referencing the outer group subject's name. The fix for this required
1724
+ us to disallow using `super` in a named subject (which is confusing,
1725
+ anyway -- named subjects create 2 methods, so which method on the
1726
+ parent example group are you `super`ing to?) but `super` in an unnamed
1727
+ subject continues to work (Myron Marston).
1728
+ * Do not allow a referenced `let` or `subject` in `before(:all)` to cause
1729
+ other `let` declarations to leak across examples (Myron Marston).
1730
+ * Work around odd ruby 1.9 bug with `String#match` that was triggered
1731
+ by passing it a regex from a `let` declaration. For more info, see
1732
+ http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
1733
+ * Add missing `require 'set'` to `base_text_formatter.rb` (Tom
1734
+ Anderson).
1735
+
1736
+ Deprecations
1737
+
1738
+ * Deprecate accessing `let` or `subject` declarations in `before(:all)`.
1739
+ These were not intended to be called in a `before(:all)` hook, as
1740
+ they exist to define state that is reset between each example, while
1741
+ `before(:all)` exists to define state that is shared across examples
1742
+ in an example group (Myron Marston).
1743
+
1744
+ ### 2.13.0 / 2013-02-23
1745
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
1746
+
1747
+ Enhancements
1748
+
1749
+ * Allow `--profile` option to take a count argument that
1750
+ determines the number of slow examples to dump
1751
+ (Greggory Rothmeier).
1752
+ * Add `subject!` that is the analog to `let!`. It defines an
1753
+ explicit subject and sets a `before` hook that will invoke
1754
+ the subject (Zubin Henner).
1755
+ * Fix `let` and `subject` declaration so that `super`
1756
+ and `return` can be used in them, just like in a normal
1757
+ method. (Myron Marston)
1758
+ * Allow output colors to be configured individually.
1759
+ (Charlie Maffitt)
1760
+ * Always dump slow examples when `--profile` option is given,
1761
+ even when an example failed (Myron Marston).
1762
+
1763
+ Bug fixes
1764
+
1765
+ * Don't blow up when dumping error output for instances
1766
+ of anonymous error classes (Myron Marston).
1767
+ * Fix default backtrace filters so lines from projects
1768
+ containing "gems" in the name are not filtered, but
1769
+ lines from installed gems still are (Myron Marston).
1770
+ * Fix autotest command so that is uses double quotes
1771
+ rather than single quotes for windows compatibility
1772
+ (Jonas Tingeborn).
1773
+ * Fix `its` so that uses of `subject` in a `before` or `let`
1774
+ declaration in the parent group continue to reference the
1775
+ parent group's subject. (Olek Janiszewski)
1776
+
1777
+ ### 2.12.2 / 2012-12-13
1778
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
1779
+
1780
+ Bug fixes
1781
+
1782
+ * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7
1783
+ on ruby 1.8.7. We had accidentally broke it in the 2.12 release
1784
+ (Myron Marston).
1785
+ * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant
1786
+ for backwards compatibility (Patrick Van Stee)
1787
+
1788
+ ### 2.12.1 / 2012-12-01
1789
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
1790
+
1791
+ Bug fixes
1792
+
1793
+ * Specs are run even if another at\_exit hook calls `exit`. This allows
1794
+ Test::Unit and RSpec to run together. (Suraj N. Kurapati)
1795
+ * Fix full doc string concatenation so that it handles the case of a
1796
+ method string (e.g. "#foo") being nested under a context string
1797
+ (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo"
1798
+ rather than "when it is tuesday#foo". (Myron Marston)
1799
+ * Restore public API I unintentionally broke in 2.12.0:
1800
+ `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)`
1801
+ (Myron Marston).
1802
+
1803
+ ### 2.12.0 / 2012-11-12
1804
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
1805
+
1806
+ Enhancements
1807
+
1808
+ * Add support for custom ordering strategies for groups and examples.
1809
+ (Myron Marston)
1810
+ * JSON Formatter (Alex Chaffee)
1811
+ * Refactor rake task internals (Sam Phippen)
1812
+ * Refactor HtmlFormatter (Pete Hodgson)
1813
+ * Autotest supports a path to Ruby that contains spaces (dsisnero)
1814
+ * Provide a helpful warning when a shared example group is redefined.
1815
+ (Mark Burns).
1816
+ * `--default_path` can be specified as `--default-line`. `--line_number` can be
1817
+ specified as `--line-number`. Hyphens are more idiomatic command line argument
1818
+ separators (Sam Phippen).
1819
+ * A more useful error message is shown when an invalid command line option is
1820
+ used (Jordi Polo).
1821
+ * Add `format_docstrings { |str| }` config option. It can be used to
1822
+ apply formatting rules to example group and example docstrings.
1823
+ (Alex Tan)
1824
+ * Add support for an `.rspec-local` options file. This is intended to
1825
+ allow individual developers to set options in a git-ignored file that
1826
+ override the common project options in `.rspec`. (Sam Phippen)
1827
+ * Support for mocha 0.13.0. (Andy Lindeman)
1828
+
1829
+ Bug fixes
1830
+
1831
+ * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that
1832
+ RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron
1833
+ Marston)
1834
+ * Limit monkey patching of shared example/context declaration methods
1835
+ (`shared_examples_for`, etc.) to just the objects that need it rather than
1836
+ every object in the system (Myron Marston).
1837
+ * Fix Metadata#fetch to support computed values (Sam Goldman).
1838
+ * Named subject can now be referred to from within subject block in a nested
1839
+ group (tomykaira).
1840
+ * Fix `fail_fast` so that it properly exits when an error occurs in a
1841
+ `before(:all) hook` (Bradley Schaefer).
1842
+ * Make the order spec files are loaded consistent, regardless of the
1843
+ order of the files returned by the OS or the order passed at
1844
+ the command line (Jo Liss and Sam Phippen).
1845
+ * Ensure instance variables from `before(:all)` are always exposed
1846
+ from `after(:all)`, even if an error occurs in `before(:all)`
1847
+ (Sam Phippen).
1848
+ * `rspec --init` no longer generates an incorrect warning about `--configure`
1849
+ being deprecated (Sam Phippen).
1850
+ * Fix pluralization of `1 seconds` (Odin Dutton)
1851
+ * Fix ANSICON url (Jarmo Pertman)
1852
+ * Use dup of Time so reporting isn't clobbered by examples that modify Time
1853
+ without properly restoring it. (David Chelimsky)
1854
+
1855
+ Deprecations
1856
+
1857
+ * `share_as` is no longer needed. `shared_context` and/or
1858
+ `RSpec::SharedContext` provide better mechanisms (Sam Phippen).
1859
+ * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`).
1860
+
1861
+
1862
+ ### 2.11.1 / 2012-07-18
1863
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
1864
+
1865
+ Bug fixes
1866
+
1867
+ * Fix the way we autoload RSpec::Matchers so that custom matchers can be
1868
+ defined before rspec-core has been configured to definitely use
1869
+ rspec-expectations. (Myron Marston)
1870
+ * Fix typo in --help message printed for -e option. (Jo Liss)
1871
+ * Fix ruby warnings. (Myron Marston)
1872
+ * Ignore mock expectation failures when the example has already failed.
1873
+ Mock expectation failures have always been ignored in this situation,
1874
+ but due to my changes in 27059bf1 it was printing a confusing message.
1875
+ (Myron Marston).
1876
+
1877
+ ### 2.11.0 / 2012-07-07
1878
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
1879
+
1880
+ Enhancements
1881
+
1882
+ * Support multiple `--example` options. (Daniel Doubrovkine @dblock)
1883
+ * Named subject e.g. `subject(:article) { Article.new }`
1884
+ * see [http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/](http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/)
1885
+ for background.
1886
+ * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost
1887
+ suggesting it.
1888
+ * `config.mock_with` and `config.expect_with` yield custom config object to a
1889
+ block if given
1890
+ * aids decoupling from rspec-core's configuation
1891
+ * `include_context` and `include_examples` support a block, which gets eval'd
1892
+ in the current context (vs the nested context generated by `it_behaves_like`).
1893
+ * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec
1894
+ --init`.
1895
+ * Delay the loading of DRb (Myron Marston).
1896
+ * Limit monkey patching of `describe` onto just the objects that need it rather
1897
+ than every object in the system (Myron Marston).
1898
+
1899
+ Bug fixes
1900
+
1901
+ * Support alternative path separators. For example, on Windows, you can now do
1902
+ this: `rspec spec\subdir`. (Jarmo Pertman @jarmo)
1903
+ * When an example raises an error and an after or around hook does as
1904
+ well, print out the hook error. Previously, the error was silenced and
1905
+ the user got no feedback about what happened. (Myron Marston)
1906
+ * `--require` and `-I` are merged among different configuration sources (Andy
1907
+ Lindeman)
1908
+ * Delegate to mocha methods instead of aliasing them in mocha adapter.
1909
+
1910
+ ### 2.10.1 / 2012-05-19
1911
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
1912
+
1913
+ Bug fixes
1914
+
1915
+ * `RSpec.reset` properly reinits configuration and world
1916
+ * Call `to_s` before `split` on exception messages that might not always be
1917
+ Strings (slyphon)
1918
+
1919
+ ### 2.10.0 / 2012-05-03
1920
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
1921
+
1922
+ Enhancements
1923
+
1924
+ * Add `prepend_before` and `append_after` hooks (preethiramdev)
1925
+ * intended for extension libs
1926
+ * restores rspec-1 behavior
1927
+ * Reporting of profiled examples (moro)
1928
+ * Report the total amount of time taken for the top slowest examples.
1929
+ * Report what percentage the slowest examples took from the total runtime.
1930
+
1931
+ Bug fixes
1932
+
1933
+ * Properly parse `SPEC_OPTS` options.
1934
+ * `example.description` returns the location of the example if there is no
1935
+ explicit description or matcher-generated description.
1936
+ * RDoc fixes (Grzegorz Świrski)
1937
+ * Do not modify example ancestry when dumping errors (Michael Grosser)
1938
+
1939
+ ### 2.9.0 / 2012-03-17
1940
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
1941
+
1942
+ Enhancements
1943
+
1944
+ * Support for "X minutes X seconds" spec run duration in formatter. (uzzz)
1945
+ * Strip whitespace from group and example names in doc formatter.
1946
+ * Removed spork-0.9 shim. If you're using spork-0.8.x, you'll need to upgrade
1947
+ to 0.9.0.
1948
+
1949
+ Bug fixes
1950
+
1951
+ * Restore `--full_backtrace` option
1952
+ * Ensure that values passed to `config.filter_run` are respected when running
1953
+ over DRb (using spork).
1954
+ * Ensure shared example groups are reset after a run (as example groups are).
1955
+ * Remove `rescue false` from calls to filters represented as Procs
1956
+ * Ensure `described_class` gets the closest constant (pyromaniac)
1957
+ * In "autorun", don't run the specs in the `at_exit` hook if there was an
1958
+ exception (most likely due to a SyntaxError). (sunaku)
1959
+ * Don't extend groups with modules already used to extend ancestor groups.
1960
+ * `its` correctly memoizes nil or false values (Yamada Masaki)
1961
+
1962
+ ### 2.8.0 / 2012-01-04
1963
+
1964
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
1965
+
1966
+ Bug fixes
1967
+
1968
+ * For metadata filtering, restore passing the entire array to the proc, rather
1969
+ than each item in the array (weidenfreak)
1970
+ * Ensure each spec file is loaded only once
1971
+ * Fixes a bug that caused all the examples in a file to be run when
1972
+ referenced twice with line numbers in a command, e.g.
1973
+ * `rspec path/to/file:37 path/to/file:42`
1974
+
1975
+ ### 2.8.0.rc2 / 2011-12-19
1976
+
1977
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
1978
+
1979
+ Enhancments
1980
+
1981
+ * new `--init` command (Peter Schröder)
1982
+ * generates `spec/spec_helper.rb`
1983
+ * deletes obsolete files (on confirmation)
1984
+ * merged with and deprecates `--configure` command, which generated
1985
+ `.rspec`
1986
+ * use `require_relative` when available (Ian Leitch)
1987
+ * `include_context` and `include_examples` accept params (Calvin Bascom)
1988
+ * print the time for every example in the html formatter (Richie Vos)
1989
+ * several tasty refactoring niblets (Sasha)
1990
+ * `it "does something", :x => [:foo,'bar',/baz/] (Ivan Neverov)
1991
+ * supports matching n command line tag values with an example or group
1992
+
1993
+ ### 2.8.0.rc1 / 2011-11-06
1994
+
1995
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
1996
+
1997
+ Enhancements
1998
+
1999
+ * `--order` (Justin Ko)
2000
+ * run examples in random order: `--order rand`
2001
+ * specify the seed: `--order rand:123`
2002
+ * `--seed SEED`
2003
+ * equivalent of `--order rand:SEED`
2004
+ * SharedContext supports `let` (David Chelimsky)
2005
+ * Filter improvements (David Chelimsky)
2006
+ * override opposing tags from the command line
2007
+ * override RSpec.configure tags from the command line
2008
+ * `--line_number 37` overrides all other filters
2009
+ * `path/to/file.rb:37` overrides all other filters
2010
+ * refactor: consolidate filter management in a FilterManger object
2011
+ * Eliminate Ruby warnings (Matijs van Zuijlen)
2012
+ * Make reporter.report an API (David Chelimsky)
2013
+ * supports extension tools like interative_rspec
2014
+
2015
+ Changes
2016
+
2017
+ * change `config.color_enabled` (getter/setter/predicate) to `color` to align
2018
+ with `--[no]-color` CLI option.
2019
+ * `color_enabled` is still supported for now, but will likley be deprecated
2020
+ in a 2.x release so we can remove it in 3.0.
2021
+
2022
+ Bug fixes
2023
+
2024
+ * Make sure the `bar` in `--tag foo:bar` makes it to DRb (Aaron Gibralter)
2025
+ * Fix bug where full descriptions of groups nested 3 deep were repeated.
2026
+ * Restore report of time to run to start after files are loaded.
2027
+ * fixes bug where run times were cumalitive in spork
2028
+ * fixes compatibility with time-series metrics
2029
+ * Don't error out when `config.mock_with` or `expect_with` is re-specifying the
2030
+ current config (Myron Marston)
2031
+
2032
+ * Deprecations
2033
+ * :alias option on `configuration.add_setting`. Use `:alias_with` on the
2034
+ original setting declaration instead.
2035
+
2036
+ ### 2.7.1 / 2011-10-20
2037
+
2038
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
2039
+
2040
+ Bug fixes
2041
+
2042
+ * tell autotest the correct place to find the rspec executable
2043
+
2044
+ ### 2.7.0 / 2011-10-16
2045
+
2046
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
2047
+
2048
+ NOTE: RSpec's release policy dictates that there should not be any backward
2049
+ incompatible changes in minor releases, but we're making an exception to
2050
+ release a change to how RSpec interacts with other command line tools.
2051
+
2052
+ As of 2.7.0, you must explicity `require "rspec/autorun"` unless you use the
2053
+ `rspec` command (which already does this for you).
2054
+
2055
+ Enhancements
2056
+
2057
+ * Add `example.exception` (David Chelimsky)
2058
+ * `--default_path` command line option (Justin Ko)
2059
+ * support multiple `--line_number` options (David J. Hamilton)
2060
+ * also supports `path/to/file.rb:5:9` (runs examples on lines 5 and 9)
2061
+ * Allow classes/modules to be used as shared example group identifiers (Arthur
2062
+ Gunn)
2063
+ * Friendly error message when shared context cannot be found (Sławosz
2064
+ Sławiński)
2065
+ * Clear formatters when resetting config (John Bintz)
2066
+ * Add `xspecify` and xexample as temp-pending methods (David Chelimsky)
2067
+ * Add `--no-drb` option (Iain Hecker)
2068
+ * Provide more accurate run time by registering start time before code is
2069
+ loaded (David Chelimsky)
2070
+ * reverted in 2.8.0
2071
+ * Rake task default pattern finds specs in symlinked dirs (Kelly Felkins)
2072
+ * Rake task no longer does anything to invoke bundler since Bundler already
2073
+ handles it for us. Thanks to Andre Arko for the tip.
2074
+ * Add `--failure-exit-code` option (Chris Griego)
2075
+
2076
+ Bug fixes
2077
+
2078
+ * Include `Rake::DSL` to remove deprecation warnings in Rake > 0.8.7 (Pivotal
2079
+ Casebook)
2080
+ * Only eval `let` block once even if it returns `nil` (Adam Meehan)
2081
+ * Fix `--pattern` option (wasn't being recognized) (David Chelimsky)
2082
+ * Only implicitly `require "rspec/autorun"` with the `rspec` command (David
2083
+ Chelimsky)
2084
+ * Ensure that rspec's `at_exit` defines the exit code (Daniel Doubrovkine)
2085
+ * Show the correct snippet in the HTML and TextMate formatters (Brian Faherty)
2086
+
2087
+ ### 2.6.4 / 2011-06-06
2088
+
2089
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
2090
+
2091
+ NOTE: RSpec's release policy dictates that there should not be new
2092
+ functionality in patch releases, but this minor enhancement slipped in by
2093
+ accident. As it doesn't add a new API, we decided to leave it in rather than
2094
+ roll back this release.
2095
+
2096
+ Enhancements
2097
+
2098
+ * Add summary of commands to run individual failed examples.
2099
+
2100
+ Bug fixes
2101
+
2102
+ * Support exclusion filters in DRb. (Yann Lugrin)
2103
+ * Fix --example escaping when run over DRb. (Elliot Winkler)
2104
+ * Use standard ANSI codes for color formatting so colors work in a wider set of
2105
+ color schemes.
2106
+
2107
+ ### 2.6.3 / 2011-05-24
2108
+
2109
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
2110
+
2111
+ Bug fixes
2112
+
2113
+ * Explicitly convert exit code to integer, avoiding TypeError when return
2114
+ value of run is IO object proxied by `DRb::DRbObject` (Julian Scheid)
2115
+ * Clarify behavior of `--example` command line option
2116
+ * Build using a rubygems-1.6.2 to avoid downstream yaml parsing error
2117
+
2118
+ ### 2.6.2 / 2011-05-21
2119
+
2120
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
2121
+
2122
+ Bug fixes
2123
+
2124
+ * Warn rather than raise when HOME env var is not defined
2125
+ * Properly merge command-line exclusions with default :if and :unless (joshcooper)
2126
+
2127
+ ### 2.6.1 / 2011-05-19
2128
+
2129
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
2130
+
2131
+ Bug fixes
2132
+
2133
+ * Don't extend nil when filters are nil
2134
+ * `require 'rspec/autorun'` when running rcov.
2135
+
2136
+ ### 2.6.0 / 2011-05-12
2137
+
2138
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
2139
+
2140
+ Enhancements
2141
+
2142
+ * `shared_context` (Damian Nurzynski)
2143
+ * extend groups matching specific metadata with:
2144
+ * method definitions
2145
+ * subject declarations
2146
+ * let/let! declarations
2147
+ * etc (anything you can do in a group)
2148
+ * `its([:key])` works for any subject with #[]. (Peter Jaros)
2149
+ * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
2150
+ * Print a deprecation warning when you configure RSpec after defining an
2151
+ example. All configuration should happen before any examples are defined.
2152
+ (Myron Marston)
2153
+ * Pass the exit status of a DRb run to the invoking process. This causes specs
2154
+ run via DRb to not just return true or false. (Ilkka Laukkanen)
2155
+ * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
2156
+ * Report excluded filters in runner output (tip from andyl)
2157
+ * Clean up messages for filters/tags.
2158
+ * Restore --pattern/-P command line option from rspec-1
2159
+ * Support false as well as true in config.full_backtrace= (Andreas Tolf
2160
+ Tolfsen)
2161
+
2162
+ Bug fixes
2163
+
2164
+ * Don't stumble over an exception without a message (Hans Hasselberg)
2165
+ * Remove non-ascii characters from comments that were choking rcov (Geoffrey
2166
+ Byers)
2167
+ * Fixed backtrace so it doesn't include lines from before the autorun at_exit
2168
+ hook (Myron Marston)
2169
+ * Include RSpec::Matchers when first example group is defined, rather than just
2170
+ before running the examples. This works around an obscure bug in ruby 1.9
2171
+ that can cause infinite recursion. (Myron Marston)
2172
+ * Don't send `example_group_[started|finished]` to formatters for empty groups.
2173
+ * Get specs passing on jruby (Sidu Ponnappa)
2174
+ * Fix bug where mixing nested groups and outer-level examples gave
2175
+ unpredictable :line_number behavior (Artur Małecki)
2176
+ * Regexp.escape the argument to --example (tip from Elliot Winkler)
2177
+ * Correctly pass/fail pending block with message expectations
2178
+ * CommandLine returns exit status (0/1) instead of true/false
2179
+ * Create path to formatter output file if it doesn't exist (marekj).
2180
+
2181
+
2182
+ ### 2.5.1 / 2011-02-06
2183
+
2184
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
2185
+
2186
+ NOTE: this release breaks compatibility with rspec/autotest/bundler
2187
+ integration, but does so in order to greatly simplify it.
2188
+
2189
+ With this release, if you want the generated autotest command to include
2190
+ 'bundle exec', require Autotest's bundler plugin in a .autotest file in the
2191
+ project's root directory or in your home directory:
2192
+
2193
+ require "autotest/bundler"
2194
+
2195
+ Now you can just type 'autotest' on the command line and it will work as you expect.
2196
+
2197
+ If you don't want 'bundle exec', there is nothing you have to do.
2198
+
2199
+ ### 2.5.0 / 2011-02-05
2200
+
2201
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
2202
+
2203
+ Enhancements
2204
+
2205
+ * Autotest::Rspec2 parses command line args passed to autotest after '--'
2206
+ * --skip-bundler option for autotest command
2207
+ * Autotest regexp fixes (Jon Rowe)
2208
+ * Add filters to html and textmate formatters (Daniel Quimper)
2209
+ * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
2210
+
2211
+ Bug fixes
2212
+
2213
+ * fix dom IDs in HTML formatter (Brian Faherty)
2214
+ * fix bug with --drb + formatters when not running in drb
2215
+ * include --tag options in drb args (monocle)
2216
+ * fix regression so now SPEC_OPTS take precedence over CLI options again (Roman
2217
+ Chernyatchik)
2218
+ * only call its(:attribute) once (failing example from Brian Dunn)
2219
+ * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
2220
+ (Damian Nurzynski)
2221
+
2222
+ Deprecations
2223
+
2224
+ * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
2225
+ bundler plugin instead)
2226
+
2227
+ ### 2.4.0 / 2011-01-02
2228
+
2229
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
2230
+
2231
+ Enhancements
2232
+
2233
+ * start the debugger on -d so the stack trace is visible when it stops
2234
+ (Clifford Heath)
2235
+ * apply hook filtering to examples as well as groups (Myron Marston)
2236
+ * support multiple formatters, each with their own output
2237
+ * show exception classes in failure messages unless they come from RSpec
2238
+ matchers or message expectations
2239
+ * before(:all) { pending } sets all examples to pending
2240
+
2241
+ Bug fixes
2242
+
2243
+ * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota
2244
+ Fukumori)
2245
+ * fix bug when running in jruby: be explicit about passing block to super (John
2246
+ Firebaugh)
2247
+ * rake task doesn't choke on paths with quotes (Janmejay Singh)
2248
+ * restore --options option from rspec-1
2249
+ * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
2250
+ * --configure option generates .rspec file instead of autotest/discover.rb
2251
+
2252
+ ### 2.3.1 / 2010-12-16
2253
+
2254
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
2255
+
2256
+ Bug fixes
2257
+
2258
+ * send debugger warning message to $stdout if RSpec.configuration.error_stream
2259
+ has not been defined yet.
2260
+ * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
2261
+ * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
2262
+
2263
+ ### 2.3.0 / 2010-12-12
2264
+
2265
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
2266
+
2267
+ Enhancements
2268
+
2269
+ * tell autotest to use "rspec2" if it sees a .rspec file in the project's root
2270
+ directory
2271
+ * replaces the need for ./autotest/discover.rb, which will not work with
2272
+ all versions of ZenTest and/or autotest
2273
+ * config.expect_with
2274
+ * :rspec # => rspec/expectations
2275
+ * :stdlib # => test/unit/assertions
2276
+ * :rspec, :stdlib # => both
2277
+
2278
+ Bug fixes
2279
+
2280
+ * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
2281
+ * ensure explicit subject is only eval'd once (Laszlo Bacsi)
2282
+
2283
+ ### 2.2.1 / 2010-11-28
2284
+
2285
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
2286
+
2287
+ Bug fixes
2288
+
2289
+ * alias_method instead of override Kernel#method_missing (John Wilger)
2290
+ * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
2291
+ * revert change to debugger (had introduced conflict with Rails)
2292
+ * also restored --debugger/-debug option
2293
+
2294
+ ### 2.2.0 / 2010-11-28
2295
+
2296
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
2297
+
2298
+ Deprecations/changes
2299
+
2300
+ * --debug/-d on command line is deprecated and now has no effect
2301
+ * win32console is now ignored; Windows users must use ANSICON for color support
2302
+ (Bosko Ivanisevic)
2303
+
2304
+ Enhancements
2305
+
2306
+ * When developing locally rspec-core now works with the rspec-dev setup or your
2307
+ local gems
2308
+ * Raise exception with helpful message when rspec-1 is loaded alongside rspec-2
2309
+ (Justin Ko)
2310
+ * debugger statements _just work_ as long as ruby-debug is installed
2311
+ * otherwise you get warned, but not fired
2312
+ * Expose example.metadata in around hooks
2313
+ * Performance improvments (much faster now)
2314
+
2315
+ Bug fixes
2316
+
2317
+ * Make sure --fail-fast makes it across drb
2318
+ * Pass -Ilib:spec to rcov
2319
+
2320
+ ### 2.1.0 / 2010-11-07
2321
+
2322
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
2323
+
2324
+ Enhancments
2325
+
2326
+ * Add skip_bundler option to rake task to tell rake task to ignore the presence
2327
+ of a Gemfile (jfelchner)
2328
+ * Add gemfile option to rake task to tell rake task what Gemfile to look for
2329
+ (defaults to 'Gemfile')
2330
+ * Allow passing caller trace into Metadata to support extensions (Glenn
2331
+ Vanderburg)
2332
+ * Add deprecation warning for Spec::Runner.configure to aid upgrade from
2333
+ RSpec-1
2334
+ * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
2335
+ * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
2336
+ * Add support for filtering with tags on CLI (Lailson Bandeira)
2337
+ * Add a helpful message about RUBYOPT when require fails in bin/rspec (slyphon)
2338
+ * Add "-Ilib" to the default rcov options (Tianyi Cui)
2339
+ * Make the expectation framework configurable (default rspec, of course)
2340
+ (Justin Ko)
2341
+ * Add 'pending' to be conditional (Myron Marston)
2342
+ * Add explicit support for :if and :unless as metadata keys for conditional run
2343
+ of examples (Myron Marston)
2344
+ * Add --fail-fast command line option (Jeff Kreeftmeijer)
2345
+
2346
+ Bug fixes
2347
+
2348
+ * Eliminate stack overflow with "subject { self }"
2349
+ * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
2350
+
2351
+ ### 2.0.1 / 2010-10-18
2352
+
2353
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
2354
+
2355
+ Bug fixes
2356
+
2357
+ * Restore color when using spork + autotest
2358
+ * Pending examples without docstrings render the correct message (Josep M.
2359
+ Bach)
2360
+ * Fixed bug where a failure in a spec file ending in anything but _spec.rb
2361
+ would fail in a confusing way.
2362
+ * Support backtrace lines from erb templates in html formatter (Alex Crichton)
2363
+
2364
+ ### 2.0.0 / 2010-10-10
2365
+
2366
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
2367
+
2368
+ RSpec-1 compatibility
2369
+
2370
+ * Rake task uses ENV["SPEC"] as file list if present
2371
+
2372
+ Bug fixes
2373
+
2374
+ * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
2375
+ * Suppress color codes for non-tty output (except autotest)
2376
+
2377
+ ### 2.0.0.rc / 2010-10-05
2378
+
2379
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
2380
+
2381
+ Enhancements
2382
+
2383
+ * implicitly require unknown formatters so you don't have to require the file
2384
+ explicitly on the command line (Michael Grosser)
2385
+ * add --out/-o option to assign output target
2386
+ * added fail_fast configuration option to abort on first failure
2387
+ * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
2388
+
2389
+ Bug fixes
2390
+
2391
+ * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
2392
+ * Ignore backtrace lines that come from other languages, like Java or
2393
+ Javascript (Charles Lowell)
2394
+ * Rake task now does what is expected when setting (or not setting)
2395
+ fail_on_error and verbose
2396
+ * Fix bug in which before/after(:all) hooks were running on excluded nested
2397
+ groups (Myron Marston)
2398
+ * Fix before(:all) error handling so that it fails examples in nested groups,
2399
+ too (Myron Marston)
2400
+
2401
+ ### 2.0.0.beta.22 / 2010-09-12
2402
+
2403
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
2404
+
2405
+ Enhancements
2406
+
2407
+ * removed at_exit hook
2408
+ * CTRL-C stops the run (almost) immediately
2409
+ * first it cleans things up by running the appropriate after(:all) and
2410
+ after(:suite) hooks
2411
+ * then it reports on any examples that have already run
2412
+ * cleaned up rake task
2413
+ * generate correct task under variety of conditions
2414
+ * options are more consistent
2415
+ * deprecated redundant options
2416
+ * run 'bundle exec autotest' when Gemfile is present
2417
+ * support ERB in .rspec options files (Justin Ko)
2418
+ * depend on bundler for development tasks (Myron Marston)
2419
+ * add example_group_finished to formatters and reporter (Roman Chernyatchik)
2420
+
2421
+ Bug fixes
2422
+
2423
+ * support paths with spaces when using autotest (Andreas Neuhaus)
2424
+ * fix module_exec with ruby 1.8.6 (Myron Marston)
2425
+ * remove context method from top-level
2426
+ * was conflicting with irb, for example
2427
+ * errors in before(:all) are now reported correctly (Chad Humphries)
2428
+
2429
+ Removals
2430
+
2431
+ * removed -o --options-file command line option
2432
+ * use ./.rspec and ~/.rspec