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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +13 -13
- data/lib/siteimprove_api_client/version.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/cache/json-2.12.2.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rake-13.3.0.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-3.13.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.13.4.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.13.5.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.13.5.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.13.4.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.76.2.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.45.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/gem_make.out +23 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.2/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/CHANGES.md +646 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/README.md +281 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/fbuffer/fbuffer.h +270 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/generator/extconf.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/generator/generator.c +2188 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/parser/parser.c +1416 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/ext/json/ext/vendor/fpconv.c +479 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/common.rb +1104 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/ext.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.2/lib/json/version.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/History.rdoc +2454 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/README.rdoc +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/application.rb +854 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/cpu_counter.rb +122 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/dsl_definition.rb +196 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_task.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/file_utils_ext.rb +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/packagetask.rb +222 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task.rb +434 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task_arguments.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/task_manager.rb +331 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/testtask.rb +189 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/lib/rake.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.3.0/rake.gemspec +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.1/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/Changelog.md +2432 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/example_group.rb +912 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/Changelog.md +1366 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/Changelog.md +1329 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/lib/rspec/mocks/message_expectation.rb +856 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.5/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.4/Changelog.md +420 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.4/lib/rspec/support/version.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/README.md +257 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/config/default.yml +6036 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/config/obsoletion.yml +243 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/autocorrect_logic.rb +159 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/bundler/ordered_gems.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/gemspec/duplicated_assignment.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/gemspec/ordered_dependencies.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +231 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/class_structure.rb +381 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +241 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/first_argument_indentation.rb +282 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/layout/space_before_brackets.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/ambiguous_range.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/duplicate_methods.rb +325 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/empty_interpolation.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/identity_comparison.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/literal_as_condition.rb +265 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/safe_navigation_chain.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_access_modifier.rb +313 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_default_value_argument.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/lint/useless_or.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/metrics/abc_size.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/mixin/frozen_string_literal.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/mixin/ordered_gem_node.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/naming/predicate_method.rb +245 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/access_modifier_declarations.rb +365 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/command_literal.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/conditional_assignment.rb +676 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/def_with_parentheses.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/if_unless_modifier.rb +313 -0
- 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
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/it_block_parameter.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/map_to_hash.rb +92 -0
- 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
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/min_max_comparison.rb +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_array_flatten.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_format.rb +262 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_parentheses.rb +339 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/redundant_self.rb +212 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/regexp_literal.rb +231 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/safe_navigation.rb +408 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/team.rb +290 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/cop/variable_force/assignment.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/rspec/expect_offense.rb +354 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop/version.rb +160 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.76.2/lib/rubocop.rb +819 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/node.rb +755 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/node_pattern/compiler/debug.rb +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/processed_source.rb +412 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.45.1/lib/rubocop/ast/version.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/specifications/json-2.12.2.gemspec +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rake-13.3.0.gemspec +26 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.13.1.gemspec +31 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.13.4.gemspec +31 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.13.5.gemspec +29 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.13.5.gemspec +29 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.13.4.gemspec +29 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.76.2.gemspec +39 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.45.1.gemspec +29 -0
- metadata +1342 -1337
- data/vendor/bundle/ruby/3.2.0/cache/json-2.12.0.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rake-13.2.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-3.13.0.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.13.3.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.13.4.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.13.4.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.13.3.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.75.6.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.44.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/gem_make.out +0 -23
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.12.0/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/CHANGES.md +0 -637
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/README.md +0 -268
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/fbuffer/fbuffer.h +0 -236
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/generator/extconf.rb +0 -39
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/generator/generator.c +0 -2189
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/parser/parser.c +0 -1404
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/ext/json/ext/vendor/fpconv.c +0 -479
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/common.rb +0 -1104
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/ext.rb +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/json-2.12.0/lib/json/version.rb +0 -5
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/History.rdoc +0 -2403
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/README.rdoc +0 -155
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/application.rb +0 -861
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/clean.rb +0 -78
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/cpu_counter.rb +0 -107
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/dsl_definition.rb +0 -196
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/ext/string.rb +0 -176
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_creation_task.rb +0 -25
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_list.rb +0 -435
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_task.rb +0 -58
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/file_utils_ext.rb +0 -134
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/packagetask.rb +0 -222
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/phony.rb +0 -16
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/rake_test_loader.rb +0 -27
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task.rb +0 -434
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task_arguments.rb +0 -109
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/task_manager.rb +0 -331
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/tasklib.rb +0 -12
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/testtask.rb +0 -189
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/thread_history_display.rb +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/thread_pool.rb +0 -163
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake/version.rb +0 -10
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/lib/rake.rb +0 -70
- data/vendor/bundle/ruby/3.2.0/gems/rake-13.2.1/rake.gemspec +0 -101
- data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/Changelog.md +0 -2425
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/lib/rspec/core/example_group.rb +0 -905
- data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.3/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.4/Changelog.md +0 -1358
- data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.4/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/Changelog.md +0 -1320
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/lib/rspec/mocks/message_expectation.rb +0 -849
- data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.4/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.3/Changelog.md +0 -413
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.3/lib/rspec/support/version.rb +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/README.md +0 -251
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/config/default.yml +0 -5990
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/config/obsoletion.yml +0 -240
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/autocorrect_logic.rb +0 -151
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/bundler/ordered_gems.rb +0 -70
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -101
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -230
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/class_structure.rb +0 -346
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -237
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/layout/space_before_brackets.rb +0 -73
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/ambiguous_range.rb +0 -108
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/duplicate_methods.rb +0 -285
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/empty_interpolation.rb +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/float_comparison.rb +0 -109
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/identity_comparison.rb +0 -50
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/literal_as_condition.rb +0 -273
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -116
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -296
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/metrics/abc_size.rb +0 -56
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -99
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/naming/predicate_name.rb +0 -204
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -343
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/command_literal.rb +0 -181
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/conditional_assignment.rb +0 -674
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/def_with_parentheses.rb +0 -57
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/if_unless_modifier.rb +0 -315
- 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
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/it_block_parameter.rb +0 -100
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/map_to_hash.rb +0 -81
- 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
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/min_max_comparison.rb +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_format.rb +0 -257
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_parentheses.rb +0 -321
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/redundant_self.rb +0 -212
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/regexp_literal.rb +0 -231
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/safe_navigation.rb +0 -395
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -105
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/team.rb +0 -290
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/cop/variable_force/assignment.rb +0 -152
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/rspec/expect_offense.rb +0 -348
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop/version.rb +0 -160
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.75.6/lib/rubocop.rb +0 -814
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/node.rb +0 -748
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/node_pattern/compiler/debug.rb +0 -161
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/processed_source.rb +0 -410
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.44.1/lib/rubocop/ast/version.rb +0 -9
- data/vendor/bundle/ruby/3.2.0/specifications/json-2.12.0.gemspec +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rake-13.2.1.gemspec +0 -26
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.13.0.gemspec +0 -31
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.13.3.gemspec +0 -31
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.13.4.gemspec +0 -29
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.13.4.gemspec +0 -29
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.13.3.gemspec +0 -29
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.75.6.gemspec +0 -39
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.44.1.gemspec +0 -29
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/BSDL +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/COPYING +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/LEGAL +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/generator/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/generator/simd.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/parser/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/ext/json/ext/parser/extconf.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/json.gemspec +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/bigdecimal.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/complex.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/core.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/date.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/date_time.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/exception.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/ostruct.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/range.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/rational.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/set.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/struct.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/symbol.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/add/time.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/ext/generator/state.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/generic_object.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json/truffle_ruby/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{json-2.12.0 → json-2.12.2}/lib/json.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/MIT-LICENSE +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/command_line_usage.rdoc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/Rakefile1 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/Rakefile2 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/a.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/b.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/example/main.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/glossary.rdoc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/jamis.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/proto_rake.rdoc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rake.1 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rakefile.rdoc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/doc/rational.rdoc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/exe/rake +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/backtrace.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/cloneable.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/default_loader.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/early_time.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/ext/core.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/file_utils.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/invocation_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/invocation_exception_mixin.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/late_time.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/linked_list.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/loaders/makefile.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/multi_task.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/name_space.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/private_reader.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/promise.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/pseudo_status.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/rake_module.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/scope.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/task_argument_error.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/trace_output.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rake-13.2.1 → rake-13.3.0}/lib/rake/win32.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/README.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-3.13.0 → rspec-3.13.1}/lib/rspec.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/.document +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/.yardopts +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/README.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/exe/rspec +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/autorun.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-core-3.13.3 → rspec-core-3.13.4}/lib/rspec/core.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/.document +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/.yardopts +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/README.md +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/expectations.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-expectations-3.13.4 → rspec-expectations-3.13.5}/lib/rspec/matchers.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/.document +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/.yardopts +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/README.md +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-mocks-3.13.4 → rspec-mocks-3.13.5}/lib/rspec/mocks.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/README.md +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rspec-support-3.13.3 → rspec-support-3.13.4}/lib/rspec/support.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/logo.png +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/output.css.erb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/assets/output.html.erb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/config/internal_affairs.yml +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/exe/rubocop +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/arguments_env.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/arguments_file.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ast_aliases.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cache_config.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cached_data.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/base.rb +0 -0
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/lsp.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command/version.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/command.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli/environment.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cli.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/comment_config.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_loader.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_loader_resolver.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_obsoletion.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_regeneration.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_store.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/config_validator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/badge.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/base.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/commissioner.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/cop.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/corrector.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/documentation.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/force.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/ignored_node.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/loop.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/lint/void.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/message_annotator.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/offense.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/registry.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/eval.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/security/open.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/severity.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/alias.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/attr.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/copyright.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/dir.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/documentation.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/encoding.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/for.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/lambda.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/next.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/not.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/proc.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/sample.rb +0 -0
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/send.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/style/strip.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/util.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cop/variable_force.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/core_ext/string.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/directive_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/error.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/comment.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/processed_source.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/range.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/regexp_node.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/feature_loader.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/file_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/file_patterns.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/colorizable.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/formatter_set.rb +0 -0
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/tap_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter/text_util.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lockfile.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/logger.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/routes.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/runtime.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/server.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/severity.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp/stdin_runner.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/lsp.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/name_similarity.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/options.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/path_util.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/platform.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/load_error.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin/loader.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/plugin.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rake_task.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/remote_config.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/result_cache.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/shared_contexts.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/rspec/support.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/runner.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/cache.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/cli.rb +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/client_command.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/core.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/errors.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/helper.rb +0 -0
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/server_command.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server/socket_reader.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/server.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/string_interpreter.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/target_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/target_ruby.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/util.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/warning.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-1.75.6 → rubocop-1.76.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/README.md +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /data/vendor/bundle/ruby/3.2.0/gems/{rubocop-ast-1.44.1 → rubocop-ast-1.45.1}/lib/rubocop/ast.rb +0 -0
- /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,1104 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'json/version'
|
4
|
+
|
5
|
+
module JSON
|
6
|
+
autoload :GenericObject, 'json/generic_object'
|
7
|
+
|
8
|
+
module ParserOptions # :nodoc:
|
9
|
+
class << self
|
10
|
+
def prepare(opts)
|
11
|
+
if opts[:object_class] || opts[:array_class]
|
12
|
+
opts = opts.dup
|
13
|
+
on_load = opts[:on_load]
|
14
|
+
|
15
|
+
on_load = object_class_proc(opts[:object_class], on_load) if opts[:object_class]
|
16
|
+
on_load = array_class_proc(opts[:array_class], on_load) if opts[:array_class]
|
17
|
+
opts[:on_load] = on_load
|
18
|
+
end
|
19
|
+
|
20
|
+
if opts.fetch(:create_additions, false) != false
|
21
|
+
opts = create_additions_proc(opts)
|
22
|
+
end
|
23
|
+
|
24
|
+
opts
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def object_class_proc(object_class, on_load)
|
30
|
+
->(obj) do
|
31
|
+
if Hash === obj
|
32
|
+
object = object_class.new
|
33
|
+
obj.each { |k, v| object[k] = v }
|
34
|
+
obj = object
|
35
|
+
end
|
36
|
+
on_load.nil? ? obj : on_load.call(obj)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def array_class_proc(array_class, on_load)
|
41
|
+
->(obj) do
|
42
|
+
if Array === obj
|
43
|
+
array = array_class.new
|
44
|
+
obj.each { |v| array << v }
|
45
|
+
obj = array
|
46
|
+
end
|
47
|
+
on_load.nil? ? obj : on_load.call(obj)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# TODO: exctract :create_additions support to another gem for version 3.0
|
52
|
+
def create_additions_proc(opts)
|
53
|
+
if opts[:symbolize_names]
|
54
|
+
raise ArgumentError, "options :symbolize_names and :create_additions cannot be used in conjunction"
|
55
|
+
end
|
56
|
+
|
57
|
+
opts = opts.dup
|
58
|
+
create_additions = opts.fetch(:create_additions, false)
|
59
|
+
on_load = opts[:on_load]
|
60
|
+
object_class = opts[:object_class] || Hash
|
61
|
+
|
62
|
+
opts[:on_load] = ->(object) do
|
63
|
+
case object
|
64
|
+
when String
|
65
|
+
opts[:match_string]&.each do |pattern, klass|
|
66
|
+
if match = pattern.match(object)
|
67
|
+
create_additions_warning if create_additions.nil?
|
68
|
+
object = klass.json_create(object)
|
69
|
+
break
|
70
|
+
end
|
71
|
+
end
|
72
|
+
when object_class
|
73
|
+
if opts[:create_additions] != false
|
74
|
+
if class_name = object[JSON.create_id]
|
75
|
+
klass = JSON.deep_const_get(class_name)
|
76
|
+
if (klass.respond_to?(:json_creatable?) && klass.json_creatable?) || klass.respond_to?(:json_create)
|
77
|
+
create_additions_warning if create_additions.nil?
|
78
|
+
object = klass.json_create(object)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
on_load.nil? ? object : on_load.call(object)
|
85
|
+
end
|
86
|
+
|
87
|
+
opts
|
88
|
+
end
|
89
|
+
|
90
|
+
GEM_ROOT = File.expand_path("../../../", __FILE__) + "/"
|
91
|
+
def create_additions_warning
|
92
|
+
message = "JSON.load implicit support for `create_additions: true` is deprecated " \
|
93
|
+
"and will be removed in 3.0, use JSON.unsafe_load or explicitly " \
|
94
|
+
"pass `create_additions: true`"
|
95
|
+
|
96
|
+
uplevel = 4
|
97
|
+
caller_locations(uplevel, 10).each do |frame|
|
98
|
+
if frame.path.nil? || frame.path.start_with?(GEM_ROOT) || frame.path.end_with?("/truffle/cext_ruby.rb", ".c")
|
99
|
+
uplevel += 1
|
100
|
+
else
|
101
|
+
break
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
if RUBY_VERSION >= "3.0"
|
106
|
+
warn(message, uplevel: uplevel - 1, category: :deprecated)
|
107
|
+
else
|
108
|
+
warn(message, uplevel: uplevel - 1)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class << self
|
115
|
+
# :call-seq:
|
116
|
+
# JSON[object] -> new_array or new_string
|
117
|
+
#
|
118
|
+
# If +object+ is a \String,
|
119
|
+
# calls JSON.parse with +object+ and +opts+ (see method #parse):
|
120
|
+
# json = '[0, 1, null]'
|
121
|
+
# JSON[json]# => [0, 1, nil]
|
122
|
+
#
|
123
|
+
# Otherwise, calls JSON.generate with +object+ and +opts+ (see method #generate):
|
124
|
+
# ruby = [0, 1, nil]
|
125
|
+
# JSON[ruby] # => '[0,1,null]'
|
126
|
+
def [](object, opts = nil)
|
127
|
+
if object.is_a?(String)
|
128
|
+
return JSON.parse(object, opts)
|
129
|
+
elsif object.respond_to?(:to_str)
|
130
|
+
str = object.to_str
|
131
|
+
if str.is_a?(String)
|
132
|
+
return JSON.parse(str, opts)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
JSON.generate(object, opts)
|
137
|
+
end
|
138
|
+
|
139
|
+
# Returns the JSON parser class that is used by JSON.
|
140
|
+
attr_reader :parser
|
141
|
+
|
142
|
+
# Set the JSON parser class _parser_ to be used by JSON.
|
143
|
+
def parser=(parser) # :nodoc:
|
144
|
+
@parser = parser
|
145
|
+
remove_const :Parser if const_defined?(:Parser, false)
|
146
|
+
const_set :Parser, parser
|
147
|
+
end
|
148
|
+
|
149
|
+
# Return the constant located at _path_. The format of _path_ has to be
|
150
|
+
# either ::A::B::C or A::B::C. In any case, A has to be located at the top
|
151
|
+
# level (absolute namespace path?). If there doesn't exist a constant at
|
152
|
+
# the given path, an ArgumentError is raised.
|
153
|
+
def deep_const_get(path) # :nodoc:
|
154
|
+
Object.const_get(path)
|
155
|
+
rescue NameError => e
|
156
|
+
raise ArgumentError, "can't get const #{path}: #{e}"
|
157
|
+
end
|
158
|
+
|
159
|
+
# Set the module _generator_ to be used by JSON.
|
160
|
+
def generator=(generator) # :nodoc:
|
161
|
+
old, $VERBOSE = $VERBOSE, nil
|
162
|
+
@generator = generator
|
163
|
+
generator_methods = generator::GeneratorMethods
|
164
|
+
for const in generator_methods.constants
|
165
|
+
klass = const_get(const)
|
166
|
+
modul = generator_methods.const_get(const)
|
167
|
+
klass.class_eval do
|
168
|
+
instance_methods(false).each do |m|
|
169
|
+
m.to_s == 'to_json' and remove_method m
|
170
|
+
end
|
171
|
+
include modul
|
172
|
+
end
|
173
|
+
end
|
174
|
+
self.state = generator::State
|
175
|
+
const_set :State, state
|
176
|
+
ensure
|
177
|
+
$VERBOSE = old
|
178
|
+
end
|
179
|
+
|
180
|
+
# Returns the JSON generator module that is used by JSON.
|
181
|
+
attr_reader :generator
|
182
|
+
|
183
|
+
# Sets or Returns the JSON generator state class that is used by JSON.
|
184
|
+
attr_accessor :state
|
185
|
+
|
186
|
+
private
|
187
|
+
|
188
|
+
def deprecated_singleton_attr_accessor(*attrs)
|
189
|
+
args = RUBY_VERSION >= "3.0" ? ", category: :deprecated" : ""
|
190
|
+
attrs.each do |attr|
|
191
|
+
singleton_class.class_eval <<~RUBY
|
192
|
+
def #{attr}
|
193
|
+
warn "JSON.#{attr} is deprecated and will be removed in json 3.0.0", uplevel: 1 #{args}
|
194
|
+
@#{attr}
|
195
|
+
end
|
196
|
+
|
197
|
+
def #{attr}=(val)
|
198
|
+
warn "JSON.#{attr}= is deprecated and will be removed in json 3.0.0", uplevel: 1 #{args}
|
199
|
+
@#{attr} = val
|
200
|
+
end
|
201
|
+
|
202
|
+
def _#{attr}
|
203
|
+
@#{attr}
|
204
|
+
end
|
205
|
+
RUBY
|
206
|
+
end
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
# Sets create identifier, which is used to decide if the _json_create_
|
211
|
+
# hook of a class should be called; initial value is +json_class+:
|
212
|
+
# JSON.create_id # => 'json_class'
|
213
|
+
def self.create_id=(new_value)
|
214
|
+
Thread.current[:"JSON.create_id"] = new_value.dup.freeze
|
215
|
+
end
|
216
|
+
|
217
|
+
# Returns the current create identifier.
|
218
|
+
# See also JSON.create_id=.
|
219
|
+
def self.create_id
|
220
|
+
Thread.current[:"JSON.create_id"] || 'json_class'
|
221
|
+
end
|
222
|
+
|
223
|
+
NaN = Float::NAN
|
224
|
+
|
225
|
+
Infinity = Float::INFINITY
|
226
|
+
|
227
|
+
MinusInfinity = -Infinity
|
228
|
+
|
229
|
+
# The base exception for JSON errors.
|
230
|
+
class JSONError < StandardError; end
|
231
|
+
|
232
|
+
# This exception is raised if a parser error occurs.
|
233
|
+
class ParserError < JSONError
|
234
|
+
attr_reader :line, :column
|
235
|
+
end
|
236
|
+
|
237
|
+
# This exception is raised if the nesting of parsed data structures is too
|
238
|
+
# deep.
|
239
|
+
class NestingError < ParserError; end
|
240
|
+
|
241
|
+
# This exception is raised if a generator or unparser error occurs.
|
242
|
+
class GeneratorError < JSONError
|
243
|
+
attr_reader :invalid_object
|
244
|
+
|
245
|
+
def initialize(message, invalid_object = nil)
|
246
|
+
super(message)
|
247
|
+
@invalid_object = invalid_object
|
248
|
+
end
|
249
|
+
|
250
|
+
def detailed_message(...)
|
251
|
+
# Exception#detailed_message doesn't exist until Ruby 3.2
|
252
|
+
super_message = defined?(super) ? super : message
|
253
|
+
|
254
|
+
if @invalid_object.nil?
|
255
|
+
super_message
|
256
|
+
else
|
257
|
+
"#{super_message}\nInvalid object: #{@invalid_object.inspect}"
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
# Fragment of JSON document that is to be included as is:
|
263
|
+
# fragment = JSON::Fragment.new("[1, 2, 3]")
|
264
|
+
# JSON.generate({ count: 3, items: fragments })
|
265
|
+
#
|
266
|
+
# This allows to easily assemble multiple JSON fragments that have
|
267
|
+
# been persisted somewhere without having to parse them nor resorting
|
268
|
+
# to string interpolation.
|
269
|
+
#
|
270
|
+
# Note: no validation is performed on the provided string. It is the
|
271
|
+
# responsability of the caller to ensure the string contains valid JSON.
|
272
|
+
Fragment = Struct.new(:json) do
|
273
|
+
def initialize(json)
|
274
|
+
unless string = String.try_convert(json)
|
275
|
+
raise TypeError, " no implicit conversion of #{json.class} into String"
|
276
|
+
end
|
277
|
+
|
278
|
+
super(string)
|
279
|
+
end
|
280
|
+
|
281
|
+
def to_json(state = nil, *)
|
282
|
+
json
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
module_function
|
287
|
+
|
288
|
+
# :call-seq:
|
289
|
+
# JSON.parse(source, opts) -> object
|
290
|
+
#
|
291
|
+
# Returns the Ruby objects created by parsing the given +source+.
|
292
|
+
#
|
293
|
+
# Argument +source+ contains the \String to be parsed.
|
294
|
+
#
|
295
|
+
# Argument +opts+, if given, contains a \Hash of options for the parsing.
|
296
|
+
# See {Parsing Options}[#module-JSON-label-Parsing+Options].
|
297
|
+
#
|
298
|
+
# ---
|
299
|
+
#
|
300
|
+
# When +source+ is a \JSON array, returns a Ruby \Array:
|
301
|
+
# source = '["foo", 1.0, true, false, null]'
|
302
|
+
# ruby = JSON.parse(source)
|
303
|
+
# ruby # => ["foo", 1.0, true, false, nil]
|
304
|
+
# ruby.class # => Array
|
305
|
+
#
|
306
|
+
# When +source+ is a \JSON object, returns a Ruby \Hash:
|
307
|
+
# source = '{"a": "foo", "b": 1.0, "c": true, "d": false, "e": null}'
|
308
|
+
# ruby = JSON.parse(source)
|
309
|
+
# ruby # => {"a"=>"foo", "b"=>1.0, "c"=>true, "d"=>false, "e"=>nil}
|
310
|
+
# ruby.class # => Hash
|
311
|
+
#
|
312
|
+
# For examples of parsing for all \JSON data types, see
|
313
|
+
# {Parsing \JSON}[#module-JSON-label-Parsing+JSON].
|
314
|
+
#
|
315
|
+
# Parses nested JSON objects:
|
316
|
+
# source = <<~JSON
|
317
|
+
# {
|
318
|
+
# "name": "Dave",
|
319
|
+
# "age" :40,
|
320
|
+
# "hats": [
|
321
|
+
# "Cattleman's",
|
322
|
+
# "Panama",
|
323
|
+
# "Tophat"
|
324
|
+
# ]
|
325
|
+
# }
|
326
|
+
# JSON
|
327
|
+
# ruby = JSON.parse(source)
|
328
|
+
# ruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
329
|
+
#
|
330
|
+
# ---
|
331
|
+
#
|
332
|
+
# Raises an exception if +source+ is not valid JSON:
|
333
|
+
# # Raises JSON::ParserError (783: unexpected token at ''):
|
334
|
+
# JSON.parse('')
|
335
|
+
#
|
336
|
+
def parse(source, opts = nil)
|
337
|
+
opts = ParserOptions.prepare(opts) unless opts.nil?
|
338
|
+
Parser.parse(source, opts)
|
339
|
+
end
|
340
|
+
|
341
|
+
PARSE_L_OPTIONS = {
|
342
|
+
max_nesting: false,
|
343
|
+
allow_nan: true,
|
344
|
+
}.freeze
|
345
|
+
private_constant :PARSE_L_OPTIONS
|
346
|
+
|
347
|
+
# :call-seq:
|
348
|
+
# JSON.parse!(source, opts) -> object
|
349
|
+
#
|
350
|
+
# Calls
|
351
|
+
# parse(source, opts)
|
352
|
+
# with +source+ and possibly modified +opts+.
|
353
|
+
#
|
354
|
+
# Differences from JSON.parse:
|
355
|
+
# - Option +max_nesting+, if not provided, defaults to +false+,
|
356
|
+
# which disables checking for nesting depth.
|
357
|
+
# - Option +allow_nan+, if not provided, defaults to +true+.
|
358
|
+
def parse!(source, opts = nil)
|
359
|
+
if opts.nil?
|
360
|
+
parse(source, PARSE_L_OPTIONS)
|
361
|
+
else
|
362
|
+
parse(source, PARSE_L_OPTIONS.merge(opts))
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
# :call-seq:
|
367
|
+
# JSON.load_file(path, opts={}) -> object
|
368
|
+
#
|
369
|
+
# Calls:
|
370
|
+
# parse(File.read(path), opts)
|
371
|
+
#
|
372
|
+
# See method #parse.
|
373
|
+
def load_file(filespec, opts = nil)
|
374
|
+
parse(File.read(filespec, encoding: Encoding::UTF_8), opts)
|
375
|
+
end
|
376
|
+
|
377
|
+
# :call-seq:
|
378
|
+
# JSON.load_file!(path, opts = {})
|
379
|
+
#
|
380
|
+
# Calls:
|
381
|
+
# JSON.parse!(File.read(path, opts))
|
382
|
+
#
|
383
|
+
# See method #parse!
|
384
|
+
def load_file!(filespec, opts = nil)
|
385
|
+
parse!(File.read(filespec, encoding: Encoding::UTF_8), opts)
|
386
|
+
end
|
387
|
+
|
388
|
+
# :call-seq:
|
389
|
+
# JSON.generate(obj, opts = nil) -> new_string
|
390
|
+
#
|
391
|
+
# Returns a \String containing the generated \JSON data.
|
392
|
+
#
|
393
|
+
# See also JSON.fast_generate, JSON.pretty_generate.
|
394
|
+
#
|
395
|
+
# Argument +obj+ is the Ruby object to be converted to \JSON.
|
396
|
+
#
|
397
|
+
# Argument +opts+, if given, contains a \Hash of options for the generation.
|
398
|
+
# See {Generating Options}[#module-JSON-label-Generating+Options].
|
399
|
+
#
|
400
|
+
# ---
|
401
|
+
#
|
402
|
+
# When +obj+ is an \Array, returns a \String containing a \JSON array:
|
403
|
+
# obj = ["foo", 1.0, true, false, nil]
|
404
|
+
# json = JSON.generate(obj)
|
405
|
+
# json # => '["foo",1.0,true,false,null]'
|
406
|
+
#
|
407
|
+
# When +obj+ is a \Hash, returns a \String containing a \JSON object:
|
408
|
+
# obj = {foo: 0, bar: 's', baz: :bat}
|
409
|
+
# json = JSON.generate(obj)
|
410
|
+
# json # => '{"foo":0,"bar":"s","baz":"bat"}'
|
411
|
+
#
|
412
|
+
# For examples of generating from other Ruby objects, see
|
413
|
+
# {Generating \JSON from Other Objects}[#module-JSON-label-Generating+JSON+from+Other+Objects].
|
414
|
+
#
|
415
|
+
# ---
|
416
|
+
#
|
417
|
+
# Raises an exception if any formatting option is not a \String.
|
418
|
+
#
|
419
|
+
# Raises an exception if +obj+ contains circular references:
|
420
|
+
# a = []; b = []; a.push(b); b.push(a)
|
421
|
+
# # Raises JSON::NestingError (nesting of 100 is too deep):
|
422
|
+
# JSON.generate(a)
|
423
|
+
#
|
424
|
+
def generate(obj, opts = nil)
|
425
|
+
if State === opts
|
426
|
+
opts.generate(obj)
|
427
|
+
else
|
428
|
+
State.generate(obj, opts, nil)
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
# :call-seq:
|
433
|
+
# JSON.fast_generate(obj, opts) -> new_string
|
434
|
+
#
|
435
|
+
# Arguments +obj+ and +opts+ here are the same as
|
436
|
+
# arguments +obj+ and +opts+ in JSON.generate.
|
437
|
+
#
|
438
|
+
# By default, generates \JSON data without checking
|
439
|
+
# for circular references in +obj+ (option +max_nesting+ set to +false+, disabled).
|
440
|
+
#
|
441
|
+
# Raises an exception if +obj+ contains circular references:
|
442
|
+
# a = []; b = []; a.push(b); b.push(a)
|
443
|
+
# # Raises SystemStackError (stack level too deep):
|
444
|
+
# JSON.fast_generate(a)
|
445
|
+
def fast_generate(obj, opts = nil)
|
446
|
+
if RUBY_VERSION >= "3.0"
|
447
|
+
warn "JSON.fast_generate is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1, category: :deprecated
|
448
|
+
else
|
449
|
+
warn "JSON.fast_generate is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1
|
450
|
+
end
|
451
|
+
generate(obj, opts)
|
452
|
+
end
|
453
|
+
|
454
|
+
PRETTY_GENERATE_OPTIONS = {
|
455
|
+
indent: ' ',
|
456
|
+
space: ' ',
|
457
|
+
object_nl: "\n",
|
458
|
+
array_nl: "\n",
|
459
|
+
}.freeze
|
460
|
+
private_constant :PRETTY_GENERATE_OPTIONS
|
461
|
+
|
462
|
+
# :call-seq:
|
463
|
+
# JSON.pretty_generate(obj, opts = nil) -> new_string
|
464
|
+
#
|
465
|
+
# Arguments +obj+ and +opts+ here are the same as
|
466
|
+
# arguments +obj+ and +opts+ in JSON.generate.
|
467
|
+
#
|
468
|
+
# Default options are:
|
469
|
+
# {
|
470
|
+
# indent: ' ', # Two spaces
|
471
|
+
# space: ' ', # One space
|
472
|
+
# array_nl: "\n", # Newline
|
473
|
+
# object_nl: "\n" # Newline
|
474
|
+
# }
|
475
|
+
#
|
476
|
+
# Example:
|
477
|
+
# obj = {foo: [:bar, :baz], bat: {bam: 0, bad: 1}}
|
478
|
+
# json = JSON.pretty_generate(obj)
|
479
|
+
# puts json
|
480
|
+
# Output:
|
481
|
+
# {
|
482
|
+
# "foo": [
|
483
|
+
# "bar",
|
484
|
+
# "baz"
|
485
|
+
# ],
|
486
|
+
# "bat": {
|
487
|
+
# "bam": 0,
|
488
|
+
# "bad": 1
|
489
|
+
# }
|
490
|
+
# }
|
491
|
+
#
|
492
|
+
def pretty_generate(obj, opts = nil)
|
493
|
+
return opts.generate(obj) if State === opts
|
494
|
+
|
495
|
+
options = PRETTY_GENERATE_OPTIONS
|
496
|
+
|
497
|
+
if opts
|
498
|
+
unless opts.is_a?(Hash)
|
499
|
+
if opts.respond_to? :to_hash
|
500
|
+
opts = opts.to_hash
|
501
|
+
elsif opts.respond_to? :to_h
|
502
|
+
opts = opts.to_h
|
503
|
+
else
|
504
|
+
raise TypeError, "can't convert #{opts.class} into Hash"
|
505
|
+
end
|
506
|
+
end
|
507
|
+
options = options.merge(opts)
|
508
|
+
end
|
509
|
+
|
510
|
+
State.generate(obj, options, nil)
|
511
|
+
end
|
512
|
+
|
513
|
+
# Sets or returns default options for the JSON.unsafe_load method.
|
514
|
+
# Initially:
|
515
|
+
# opts = JSON.load_default_options
|
516
|
+
# opts # => {:max_nesting=>false, :allow_nan=>true, :allow_blank=>true, :create_additions=>true}
|
517
|
+
deprecated_singleton_attr_accessor :unsafe_load_default_options
|
518
|
+
|
519
|
+
@unsafe_load_default_options = {
|
520
|
+
:max_nesting => false,
|
521
|
+
:allow_nan => true,
|
522
|
+
:allow_blank => true,
|
523
|
+
:create_additions => true,
|
524
|
+
}
|
525
|
+
|
526
|
+
# Sets or returns default options for the JSON.load method.
|
527
|
+
# Initially:
|
528
|
+
# opts = JSON.load_default_options
|
529
|
+
# opts # => {:max_nesting=>false, :allow_nan=>true, :allow_blank=>true, :create_additions=>true}
|
530
|
+
deprecated_singleton_attr_accessor :load_default_options
|
531
|
+
|
532
|
+
@load_default_options = {
|
533
|
+
:allow_nan => true,
|
534
|
+
:allow_blank => true,
|
535
|
+
:create_additions => nil,
|
536
|
+
}
|
537
|
+
# :call-seq:
|
538
|
+
# JSON.unsafe_load(source, proc = nil, options = {}) -> object
|
539
|
+
#
|
540
|
+
# Returns the Ruby objects created by parsing the given +source+.
|
541
|
+
#
|
542
|
+
# BEWARE: This method is meant to serialise data from trusted user input,
|
543
|
+
# like from your own database server or clients under your control, it could
|
544
|
+
# be dangerous to allow untrusted users to pass JSON sources into it.
|
545
|
+
#
|
546
|
+
# - Argument +source+ must be, or be convertible to, a \String:
|
547
|
+
# - If +source+ responds to instance method +to_str+,
|
548
|
+
# <tt>source.to_str</tt> becomes the source.
|
549
|
+
# - If +source+ responds to instance method +to_io+,
|
550
|
+
# <tt>source.to_io.read</tt> becomes the source.
|
551
|
+
# - If +source+ responds to instance method +read+,
|
552
|
+
# <tt>source.read</tt> becomes the source.
|
553
|
+
# - If both of the following are true, source becomes the \String <tt>'null'</tt>:
|
554
|
+
# - Option +allow_blank+ specifies a truthy value.
|
555
|
+
# - The source, as defined above, is +nil+ or the empty \String <tt>''</tt>.
|
556
|
+
# - Otherwise, +source+ remains the source.
|
557
|
+
# - Argument +proc+, if given, must be a \Proc that accepts one argument.
|
558
|
+
# It will be called recursively with each result (depth-first order).
|
559
|
+
# See details below.
|
560
|
+
# - Argument +opts+, if given, contains a \Hash of options for the parsing.
|
561
|
+
# See {Parsing Options}[#module-JSON-label-Parsing+Options].
|
562
|
+
# The default options can be changed via method JSON.unsafe_load_default_options=.
|
563
|
+
#
|
564
|
+
# ---
|
565
|
+
#
|
566
|
+
# When no +proc+ is given, modifies +source+ as above and returns the result of
|
567
|
+
# <tt>parse(source, opts)</tt>; see #parse.
|
568
|
+
#
|
569
|
+
# Source for following examples:
|
570
|
+
# source = <<~JSON
|
571
|
+
# {
|
572
|
+
# "name": "Dave",
|
573
|
+
# "age" :40,
|
574
|
+
# "hats": [
|
575
|
+
# "Cattleman's",
|
576
|
+
# "Panama",
|
577
|
+
# "Tophat"
|
578
|
+
# ]
|
579
|
+
# }
|
580
|
+
# JSON
|
581
|
+
#
|
582
|
+
# Load a \String:
|
583
|
+
# ruby = JSON.unsafe_load(source)
|
584
|
+
# ruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
585
|
+
#
|
586
|
+
# Load an \IO object:
|
587
|
+
# require 'stringio'
|
588
|
+
# object = JSON.unsafe_load(StringIO.new(source))
|
589
|
+
# object # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
590
|
+
#
|
591
|
+
# Load a \File object:
|
592
|
+
# path = 't.json'
|
593
|
+
# File.write(path, source)
|
594
|
+
# File.open(path) do |file|
|
595
|
+
# JSON.unsafe_load(file)
|
596
|
+
# end # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
597
|
+
#
|
598
|
+
# ---
|
599
|
+
#
|
600
|
+
# When +proc+ is given:
|
601
|
+
# - Modifies +source+ as above.
|
602
|
+
# - Gets the +result+ from calling <tt>parse(source, opts)</tt>.
|
603
|
+
# - Recursively calls <tt>proc(result)</tt>.
|
604
|
+
# - Returns the final result.
|
605
|
+
#
|
606
|
+
# Example:
|
607
|
+
# require 'json'
|
608
|
+
#
|
609
|
+
# # Some classes for the example.
|
610
|
+
# class Base
|
611
|
+
# def initialize(attributes)
|
612
|
+
# @attributes = attributes
|
613
|
+
# end
|
614
|
+
# end
|
615
|
+
# class User < Base; end
|
616
|
+
# class Account < Base; end
|
617
|
+
# class Admin < Base; end
|
618
|
+
# # The JSON source.
|
619
|
+
# json = <<-EOF
|
620
|
+
# {
|
621
|
+
# "users": [
|
622
|
+
# {"type": "User", "username": "jane", "email": "jane@example.com"},
|
623
|
+
# {"type": "User", "username": "john", "email": "john@example.com"}
|
624
|
+
# ],
|
625
|
+
# "accounts": [
|
626
|
+
# {"account": {"type": "Account", "paid": true, "account_id": "1234"}},
|
627
|
+
# {"account": {"type": "Account", "paid": false, "account_id": "1235"}}
|
628
|
+
# ],
|
629
|
+
# "admins": {"type": "Admin", "password": "0wn3d"}
|
630
|
+
# }
|
631
|
+
# EOF
|
632
|
+
# # Deserializer method.
|
633
|
+
# def deserialize_obj(obj, safe_types = %w(User Account Admin))
|
634
|
+
# type = obj.is_a?(Hash) && obj["type"]
|
635
|
+
# safe_types.include?(type) ? Object.const_get(type).new(obj) : obj
|
636
|
+
# end
|
637
|
+
# # Call to JSON.unsafe_load
|
638
|
+
# ruby = JSON.unsafe_load(json, proc {|obj|
|
639
|
+
# case obj
|
640
|
+
# when Hash
|
641
|
+
# obj.each {|k, v| obj[k] = deserialize_obj v }
|
642
|
+
# when Array
|
643
|
+
# obj.map! {|v| deserialize_obj v }
|
644
|
+
# end
|
645
|
+
# })
|
646
|
+
# pp ruby
|
647
|
+
# Output:
|
648
|
+
# {"users"=>
|
649
|
+
# [#<User:0x00000000064c4c98
|
650
|
+
# @attributes=
|
651
|
+
# {"type"=>"User", "username"=>"jane", "email"=>"jane@example.com"}>,
|
652
|
+
# #<User:0x00000000064c4bd0
|
653
|
+
# @attributes=
|
654
|
+
# {"type"=>"User", "username"=>"john", "email"=>"john@example.com"}>],
|
655
|
+
# "accounts"=>
|
656
|
+
# [{"account"=>
|
657
|
+
# #<Account:0x00000000064c4928
|
658
|
+
# @attributes={"type"=>"Account", "paid"=>true, "account_id"=>"1234"}>},
|
659
|
+
# {"account"=>
|
660
|
+
# #<Account:0x00000000064c4680
|
661
|
+
# @attributes={"type"=>"Account", "paid"=>false, "account_id"=>"1235"}>}],
|
662
|
+
# "admins"=>
|
663
|
+
# #<Admin:0x00000000064c41f8
|
664
|
+
# @attributes={"type"=>"Admin", "password"=>"0wn3d"}>}
|
665
|
+
#
|
666
|
+
def unsafe_load(source, proc = nil, options = nil)
|
667
|
+
opts = if options.nil?
|
668
|
+
_unsafe_load_default_options
|
669
|
+
else
|
670
|
+
_unsafe_load_default_options.merge(options)
|
671
|
+
end
|
672
|
+
|
673
|
+
unless source.is_a?(String)
|
674
|
+
if source.respond_to? :to_str
|
675
|
+
source = source.to_str
|
676
|
+
elsif source.respond_to? :to_io
|
677
|
+
source = source.to_io.read
|
678
|
+
elsif source.respond_to?(:read)
|
679
|
+
source = source.read
|
680
|
+
end
|
681
|
+
end
|
682
|
+
|
683
|
+
if opts[:allow_blank] && (source.nil? || source.empty?)
|
684
|
+
source = 'null'
|
685
|
+
end
|
686
|
+
result = parse(source, opts)
|
687
|
+
recurse_proc(result, &proc) if proc
|
688
|
+
result
|
689
|
+
end
|
690
|
+
|
691
|
+
# :call-seq:
|
692
|
+
# JSON.load(source, proc = nil, options = {}) -> object
|
693
|
+
#
|
694
|
+
# Returns the Ruby objects created by parsing the given +source+.
|
695
|
+
#
|
696
|
+
# BEWARE: This method is meant to serialise data from trusted user input,
|
697
|
+
# like from your own database server or clients under your control, it could
|
698
|
+
# be dangerous to allow untrusted users to pass JSON sources into it.
|
699
|
+
# If you must use it, use JSON.unsafe_load instead to make it clear.
|
700
|
+
#
|
701
|
+
# Since JSON version 2.8.0, `load` emits a deprecation warning when a
|
702
|
+
# non native type is deserialized, without `create_additions` being explicitly
|
703
|
+
# enabled, and in JSON version 3.0, `load` will have `create_additions` disabled
|
704
|
+
# by default.
|
705
|
+
#
|
706
|
+
# - Argument +source+ must be, or be convertible to, a \String:
|
707
|
+
# - If +source+ responds to instance method +to_str+,
|
708
|
+
# <tt>source.to_str</tt> becomes the source.
|
709
|
+
# - If +source+ responds to instance method +to_io+,
|
710
|
+
# <tt>source.to_io.read</tt> becomes the source.
|
711
|
+
# - If +source+ responds to instance method +read+,
|
712
|
+
# <tt>source.read</tt> becomes the source.
|
713
|
+
# - If both of the following are true, source becomes the \String <tt>'null'</tt>:
|
714
|
+
# - Option +allow_blank+ specifies a truthy value.
|
715
|
+
# - The source, as defined above, is +nil+ or the empty \String <tt>''</tt>.
|
716
|
+
# - Otherwise, +source+ remains the source.
|
717
|
+
# - Argument +proc+, if given, must be a \Proc that accepts one argument.
|
718
|
+
# It will be called recursively with each result (depth-first order).
|
719
|
+
# See details below.
|
720
|
+
# - Argument +opts+, if given, contains a \Hash of options for the parsing.
|
721
|
+
# See {Parsing Options}[#module-JSON-label-Parsing+Options].
|
722
|
+
# The default options can be changed via method JSON.load_default_options=.
|
723
|
+
#
|
724
|
+
# ---
|
725
|
+
#
|
726
|
+
# When no +proc+ is given, modifies +source+ as above and returns the result of
|
727
|
+
# <tt>parse(source, opts)</tt>; see #parse.
|
728
|
+
#
|
729
|
+
# Source for following examples:
|
730
|
+
# source = <<~JSON
|
731
|
+
# {
|
732
|
+
# "name": "Dave",
|
733
|
+
# "age" :40,
|
734
|
+
# "hats": [
|
735
|
+
# "Cattleman's",
|
736
|
+
# "Panama",
|
737
|
+
# "Tophat"
|
738
|
+
# ]
|
739
|
+
# }
|
740
|
+
# JSON
|
741
|
+
#
|
742
|
+
# Load a \String:
|
743
|
+
# ruby = JSON.load(source)
|
744
|
+
# ruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
745
|
+
#
|
746
|
+
# Load an \IO object:
|
747
|
+
# require 'stringio'
|
748
|
+
# object = JSON.load(StringIO.new(source))
|
749
|
+
# object # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
750
|
+
#
|
751
|
+
# Load a \File object:
|
752
|
+
# path = 't.json'
|
753
|
+
# File.write(path, source)
|
754
|
+
# File.open(path) do |file|
|
755
|
+
# JSON.load(file)
|
756
|
+
# end # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]}
|
757
|
+
#
|
758
|
+
# ---
|
759
|
+
#
|
760
|
+
# When +proc+ is given:
|
761
|
+
# - Modifies +source+ as above.
|
762
|
+
# - Gets the +result+ from calling <tt>parse(source, opts)</tt>.
|
763
|
+
# - Recursively calls <tt>proc(result)</tt>.
|
764
|
+
# - Returns the final result.
|
765
|
+
#
|
766
|
+
# Example:
|
767
|
+
# require 'json'
|
768
|
+
#
|
769
|
+
# # Some classes for the example.
|
770
|
+
# class Base
|
771
|
+
# def initialize(attributes)
|
772
|
+
# @attributes = attributes
|
773
|
+
# end
|
774
|
+
# end
|
775
|
+
# class User < Base; end
|
776
|
+
# class Account < Base; end
|
777
|
+
# class Admin < Base; end
|
778
|
+
# # The JSON source.
|
779
|
+
# json = <<-EOF
|
780
|
+
# {
|
781
|
+
# "users": [
|
782
|
+
# {"type": "User", "username": "jane", "email": "jane@example.com"},
|
783
|
+
# {"type": "User", "username": "john", "email": "john@example.com"}
|
784
|
+
# ],
|
785
|
+
# "accounts": [
|
786
|
+
# {"account": {"type": "Account", "paid": true, "account_id": "1234"}},
|
787
|
+
# {"account": {"type": "Account", "paid": false, "account_id": "1235"}}
|
788
|
+
# ],
|
789
|
+
# "admins": {"type": "Admin", "password": "0wn3d"}
|
790
|
+
# }
|
791
|
+
# EOF
|
792
|
+
# # Deserializer method.
|
793
|
+
# def deserialize_obj(obj, safe_types = %w(User Account Admin))
|
794
|
+
# type = obj.is_a?(Hash) && obj["type"]
|
795
|
+
# safe_types.include?(type) ? Object.const_get(type).new(obj) : obj
|
796
|
+
# end
|
797
|
+
# # Call to JSON.load
|
798
|
+
# ruby = JSON.load(json, proc {|obj|
|
799
|
+
# case obj
|
800
|
+
# when Hash
|
801
|
+
# obj.each {|k, v| obj[k] = deserialize_obj v }
|
802
|
+
# when Array
|
803
|
+
# obj.map! {|v| deserialize_obj v }
|
804
|
+
# end
|
805
|
+
# })
|
806
|
+
# pp ruby
|
807
|
+
# Output:
|
808
|
+
# {"users"=>
|
809
|
+
# [#<User:0x00000000064c4c98
|
810
|
+
# @attributes=
|
811
|
+
# {"type"=>"User", "username"=>"jane", "email"=>"jane@example.com"}>,
|
812
|
+
# #<User:0x00000000064c4bd0
|
813
|
+
# @attributes=
|
814
|
+
# {"type"=>"User", "username"=>"john", "email"=>"john@example.com"}>],
|
815
|
+
# "accounts"=>
|
816
|
+
# [{"account"=>
|
817
|
+
# #<Account:0x00000000064c4928
|
818
|
+
# @attributes={"type"=>"Account", "paid"=>true, "account_id"=>"1234"}>},
|
819
|
+
# {"account"=>
|
820
|
+
# #<Account:0x00000000064c4680
|
821
|
+
# @attributes={"type"=>"Account", "paid"=>false, "account_id"=>"1235"}>}],
|
822
|
+
# "admins"=>
|
823
|
+
# #<Admin:0x00000000064c41f8
|
824
|
+
# @attributes={"type"=>"Admin", "password"=>"0wn3d"}>}
|
825
|
+
#
|
826
|
+
def load(source, proc = nil, options = nil)
|
827
|
+
opts = if options.nil?
|
828
|
+
_load_default_options
|
829
|
+
else
|
830
|
+
_load_default_options.merge(options)
|
831
|
+
end
|
832
|
+
|
833
|
+
unless source.is_a?(String)
|
834
|
+
if source.respond_to? :to_str
|
835
|
+
source = source.to_str
|
836
|
+
elsif source.respond_to? :to_io
|
837
|
+
source = source.to_io.read
|
838
|
+
elsif source.respond_to?(:read)
|
839
|
+
source = source.read
|
840
|
+
end
|
841
|
+
end
|
842
|
+
|
843
|
+
if opts[:allow_blank] && (source.nil? || source.empty?)
|
844
|
+
source = 'null'
|
845
|
+
end
|
846
|
+
|
847
|
+
if proc
|
848
|
+
opts = opts.dup
|
849
|
+
opts[:on_load] = proc.to_proc
|
850
|
+
end
|
851
|
+
|
852
|
+
parse(source, opts)
|
853
|
+
end
|
854
|
+
|
855
|
+
# Sets or returns the default options for the JSON.dump method.
|
856
|
+
# Initially:
|
857
|
+
# opts = JSON.dump_default_options
|
858
|
+
# opts # => {:max_nesting=>false, :allow_nan=>true}
|
859
|
+
deprecated_singleton_attr_accessor :dump_default_options
|
860
|
+
@dump_default_options = {
|
861
|
+
:max_nesting => false,
|
862
|
+
:allow_nan => true,
|
863
|
+
}
|
864
|
+
|
865
|
+
# :call-seq:
|
866
|
+
# JSON.dump(obj, io = nil, limit = nil)
|
867
|
+
#
|
868
|
+
# Dumps +obj+ as a \JSON string, i.e. calls generate on the object and returns the result.
|
869
|
+
#
|
870
|
+
# The default options can be changed via method JSON.dump_default_options.
|
871
|
+
#
|
872
|
+
# - Argument +io+, if given, should respond to method +write+;
|
873
|
+
# the \JSON \String is written to +io+, and +io+ is returned.
|
874
|
+
# If +io+ is not given, the \JSON \String is returned.
|
875
|
+
# - Argument +limit+, if given, is passed to JSON.generate as option +max_nesting+.
|
876
|
+
#
|
877
|
+
# ---
|
878
|
+
#
|
879
|
+
# When argument +io+ is not given, returns the \JSON \String generated from +obj+:
|
880
|
+
# obj = {foo: [0, 1], bar: {baz: 2, bat: 3}, bam: :bad}
|
881
|
+
# json = JSON.dump(obj)
|
882
|
+
# json # => "{\"foo\":[0,1],\"bar\":{\"baz\":2,\"bat\":3},\"bam\":\"bad\"}"
|
883
|
+
#
|
884
|
+
# When argument +io+ is given, writes the \JSON \String to +io+ and returns +io+:
|
885
|
+
# path = 't.json'
|
886
|
+
# File.open(path, 'w') do |file|
|
887
|
+
# JSON.dump(obj, file)
|
888
|
+
# end # => #<File:t.json (closed)>
|
889
|
+
# puts File.read(path)
|
890
|
+
# Output:
|
891
|
+
# {"foo":[0,1],"bar":{"baz":2,"bat":3},"bam":"bad"}
|
892
|
+
def dump(obj, anIO = nil, limit = nil, kwargs = nil)
|
893
|
+
if kwargs.nil?
|
894
|
+
if limit.nil?
|
895
|
+
if anIO.is_a?(Hash)
|
896
|
+
kwargs = anIO
|
897
|
+
anIO = nil
|
898
|
+
end
|
899
|
+
elsif limit.is_a?(Hash)
|
900
|
+
kwargs = limit
|
901
|
+
limit = nil
|
902
|
+
end
|
903
|
+
end
|
904
|
+
|
905
|
+
unless anIO.nil?
|
906
|
+
if anIO.respond_to?(:to_io)
|
907
|
+
anIO = anIO.to_io
|
908
|
+
elsif limit.nil? && !anIO.respond_to?(:write)
|
909
|
+
anIO, limit = nil, anIO
|
910
|
+
end
|
911
|
+
end
|
912
|
+
|
913
|
+
opts = JSON._dump_default_options
|
914
|
+
opts = opts.merge(:max_nesting => limit) if limit
|
915
|
+
opts = opts.merge(kwargs) if kwargs
|
916
|
+
|
917
|
+
begin
|
918
|
+
State.generate(obj, opts, anIO)
|
919
|
+
rescue JSON::NestingError
|
920
|
+
raise ArgumentError, "exceed depth limit"
|
921
|
+
end
|
922
|
+
end
|
923
|
+
|
924
|
+
# :stopdoc:
|
925
|
+
# All these were meant to be deprecated circa 2009, but were just set as undocumented
|
926
|
+
# so usage still exist in the wild.
|
927
|
+
def unparse(...)
|
928
|
+
if RUBY_VERSION >= "3.0"
|
929
|
+
warn "JSON.unparse is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1, category: :deprecated
|
930
|
+
else
|
931
|
+
warn "JSON.unparse is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1
|
932
|
+
end
|
933
|
+
generate(...)
|
934
|
+
end
|
935
|
+
module_function :unparse
|
936
|
+
|
937
|
+
def fast_unparse(...)
|
938
|
+
if RUBY_VERSION >= "3.0"
|
939
|
+
warn "JSON.fast_unparse is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1, category: :deprecated
|
940
|
+
else
|
941
|
+
warn "JSON.fast_unparse is deprecated and will be removed in json 3.0.0, just use JSON.generate", uplevel: 1
|
942
|
+
end
|
943
|
+
generate(...)
|
944
|
+
end
|
945
|
+
module_function :fast_unparse
|
946
|
+
|
947
|
+
def pretty_unparse(...)
|
948
|
+
if RUBY_VERSION >= "3.0"
|
949
|
+
warn "JSON.pretty_unparse is deprecated and will be removed in json 3.0.0, just use JSON.pretty_generate", uplevel: 1, category: :deprecated
|
950
|
+
else
|
951
|
+
warn "JSON.pretty_unparse is deprecated and will be removed in json 3.0.0, just use JSON.pretty_generate", uplevel: 1
|
952
|
+
end
|
953
|
+
pretty_generate(...)
|
954
|
+
end
|
955
|
+
module_function :fast_unparse
|
956
|
+
|
957
|
+
def restore(...)
|
958
|
+
if RUBY_VERSION >= "3.0"
|
959
|
+
warn "JSON.restore is deprecated and will be removed in json 3.0.0, just use JSON.load", uplevel: 1, category: :deprecated
|
960
|
+
else
|
961
|
+
warn "JSON.restore is deprecated and will be removed in json 3.0.0, just use JSON.load", uplevel: 1
|
962
|
+
end
|
963
|
+
load(...)
|
964
|
+
end
|
965
|
+
module_function :restore
|
966
|
+
|
967
|
+
class << self
|
968
|
+
private
|
969
|
+
|
970
|
+
def const_missing(const_name)
|
971
|
+
case const_name
|
972
|
+
when :PRETTY_STATE_PROTOTYPE
|
973
|
+
if RUBY_VERSION >= "3.0"
|
974
|
+
warn "JSON::PRETTY_STATE_PROTOTYPE is deprecated and will be removed in json 3.0.0, just use JSON.pretty_generate", uplevel: 1, category: :deprecated
|
975
|
+
else
|
976
|
+
warn "JSON::PRETTY_STATE_PROTOTYPE is deprecated and will be removed in json 3.0.0, just use JSON.pretty_generate", uplevel: 1
|
977
|
+
end
|
978
|
+
state.new(PRETTY_GENERATE_OPTIONS)
|
979
|
+
else
|
980
|
+
super
|
981
|
+
end
|
982
|
+
end
|
983
|
+
end
|
984
|
+
# :startdoc:
|
985
|
+
|
986
|
+
# JSON::Coder holds a parser and generator configuration.
|
987
|
+
#
|
988
|
+
# module MyApp
|
989
|
+
# JSONC_CODER = JSON::Coder.new(
|
990
|
+
# allow_trailing_comma: true
|
991
|
+
# )
|
992
|
+
# end
|
993
|
+
#
|
994
|
+
# MyApp::JSONC_CODER.load(document)
|
995
|
+
#
|
996
|
+
class Coder
|
997
|
+
# :call-seq:
|
998
|
+
# JSON.new(options = nil, &block)
|
999
|
+
#
|
1000
|
+
# Argument +options+, if given, contains a \Hash of options for both parsing and generating.
|
1001
|
+
# See {Parsing Options}[#module-JSON-label-Parsing+Options], and {Generating Options}[#module-JSON-label-Generating+Options].
|
1002
|
+
#
|
1003
|
+
# For generation, the <tt>strict: true</tt> option is always set. When a Ruby object with no native \JSON counterpart is
|
1004
|
+
# encoutered, the block provided to the initialize method is invoked, and must return a Ruby object that has a native
|
1005
|
+
# \JSON counterpart:
|
1006
|
+
#
|
1007
|
+
# module MyApp
|
1008
|
+
# API_JSON_CODER = JSON::Coder.new do |object|
|
1009
|
+
# case object
|
1010
|
+
# when Time
|
1011
|
+
# object.iso8601(3)
|
1012
|
+
# else
|
1013
|
+
# object # Unknown type, will raise
|
1014
|
+
# end
|
1015
|
+
# end
|
1016
|
+
# end
|
1017
|
+
#
|
1018
|
+
# puts MyApp::API_JSON_CODER.dump(Time.now.utc) # => "2025-01-21T08:41:44.286Z"
|
1019
|
+
#
|
1020
|
+
def initialize(options = nil, &as_json)
|
1021
|
+
if options.nil?
|
1022
|
+
options = { strict: true }
|
1023
|
+
else
|
1024
|
+
options = options.dup
|
1025
|
+
options[:strict] = true
|
1026
|
+
end
|
1027
|
+
options[:as_json] = as_json if as_json
|
1028
|
+
|
1029
|
+
@state = State.new(options).freeze
|
1030
|
+
@parser_config = Ext::Parser::Config.new(ParserOptions.prepare(options))
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
# call-seq:
|
1034
|
+
# dump(object) -> String
|
1035
|
+
# dump(object, io) -> io
|
1036
|
+
#
|
1037
|
+
# Serialize the given object into a \JSON document.
|
1038
|
+
def dump(object, io = nil)
|
1039
|
+
@state.generate_new(object, io)
|
1040
|
+
end
|
1041
|
+
alias_method :generate, :dump
|
1042
|
+
|
1043
|
+
# call-seq:
|
1044
|
+
# load(string) -> Object
|
1045
|
+
#
|
1046
|
+
# Parse the given \JSON document and return an equivalent Ruby object.
|
1047
|
+
def load(source)
|
1048
|
+
@parser_config.parse(source)
|
1049
|
+
end
|
1050
|
+
alias_method :parse, :load
|
1051
|
+
|
1052
|
+
# call-seq:
|
1053
|
+
# load(path) -> Object
|
1054
|
+
#
|
1055
|
+
# Parse the given \JSON document and return an equivalent Ruby object.
|
1056
|
+
def load_file(path)
|
1057
|
+
load(File.read(path, encoding: Encoding::UTF_8))
|
1058
|
+
end
|
1059
|
+
end
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
module ::Kernel
|
1063
|
+
private
|
1064
|
+
|
1065
|
+
# Outputs _objs_ to STDOUT as JSON strings in the shortest form, that is in
|
1066
|
+
# one line.
|
1067
|
+
def j(*objs)
|
1068
|
+
if RUBY_VERSION >= "3.0"
|
1069
|
+
warn "Kernel#j is deprecated and will be removed in json 3.0.0", uplevel: 1, category: :deprecated
|
1070
|
+
else
|
1071
|
+
warn "Kernel#j is deprecated and will be removed in json 3.0.0", uplevel: 1
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
objs.each do |obj|
|
1075
|
+
puts JSON.generate(obj, :allow_nan => true, :max_nesting => false)
|
1076
|
+
end
|
1077
|
+
nil
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
# Outputs _objs_ to STDOUT as JSON strings in a pretty format, with
|
1081
|
+
# indentation and over many lines.
|
1082
|
+
def jj(*objs)
|
1083
|
+
if RUBY_VERSION >= "3.0"
|
1084
|
+
warn "Kernel#jj is deprecated and will be removed in json 3.0.0", uplevel: 1, category: :deprecated
|
1085
|
+
else
|
1086
|
+
warn "Kernel#jj is deprecated and will be removed in json 3.0.0", uplevel: 1
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
objs.each do |obj|
|
1090
|
+
puts JSON.pretty_generate(obj, :allow_nan => true, :max_nesting => false)
|
1091
|
+
end
|
1092
|
+
nil
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# If _object_ is string-like, parse the string and return the parsed result as
|
1096
|
+
# a Ruby data structure. Otherwise, generate a JSON text from the Ruby data
|
1097
|
+
# structure object and return it.
|
1098
|
+
#
|
1099
|
+
# The _opts_ argument is passed through to generate/parse respectively. See
|
1100
|
+
# generate and parse for their documentation.
|
1101
|
+
def JSON(object, opts = nil)
|
1102
|
+
JSON[object, opts]
|
1103
|
+
end
|
1104
|
+
end
|