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
@@ -1,1404 +0,0 @@
|
|
1
|
-
#include "ruby.h"
|
2
|
-
#include "ruby/encoding.h"
|
3
|
-
|
4
|
-
/* shims */
|
5
|
-
/* This is the fallback definition from Ruby 3.4 */
|
6
|
-
|
7
|
-
#ifndef RBIMPL_STDBOOL_H
|
8
|
-
#if defined(__cplusplus)
|
9
|
-
# if defined(HAVE_STDBOOL_H) && (__cplusplus >= 201103L)
|
10
|
-
# include <cstdbool>
|
11
|
-
# endif
|
12
|
-
#elif defined(HAVE_STDBOOL_H)
|
13
|
-
# include <stdbool.h>
|
14
|
-
#elif !defined(HAVE__BOOL)
|
15
|
-
typedef unsigned char _Bool;
|
16
|
-
# define bool _Bool
|
17
|
-
# define true ((_Bool)+1)
|
18
|
-
# define false ((_Bool)+0)
|
19
|
-
# define __bool_true_false_are_defined
|
20
|
-
#endif
|
21
|
-
#endif
|
22
|
-
|
23
|
-
#ifndef RB_UNLIKELY
|
24
|
-
#define RB_UNLIKELY(expr) expr
|
25
|
-
#endif
|
26
|
-
|
27
|
-
#ifndef RB_LIKELY
|
28
|
-
#define RB_LIKELY(expr) expr
|
29
|
-
#endif
|
30
|
-
|
31
|
-
static VALUE mJSON, eNestingError, Encoding_UTF_8;
|
32
|
-
static VALUE CNaN, CInfinity, CMinusInfinity;
|
33
|
-
|
34
|
-
static ID i_chr, i_aset, i_aref,
|
35
|
-
i_leftshift, i_new, i_try_convert, i_uminus, i_encode;
|
36
|
-
|
37
|
-
static VALUE sym_max_nesting, sym_allow_nan, sym_allow_trailing_comma, sym_symbolize_names, sym_freeze,
|
38
|
-
sym_decimal_class, sym_on_load;
|
39
|
-
|
40
|
-
static int binary_encindex;
|
41
|
-
static int utf8_encindex;
|
42
|
-
|
43
|
-
#ifndef HAVE_RB_HASH_BULK_INSERT
|
44
|
-
// For TruffleRuby
|
45
|
-
void
|
46
|
-
rb_hash_bulk_insert(long count, const VALUE *pairs, VALUE hash)
|
47
|
-
{
|
48
|
-
long index = 0;
|
49
|
-
while (index < count) {
|
50
|
-
VALUE name = pairs[index++];
|
51
|
-
VALUE value = pairs[index++];
|
52
|
-
rb_hash_aset(hash, name, value);
|
53
|
-
}
|
54
|
-
RB_GC_GUARD(hash);
|
55
|
-
}
|
56
|
-
#endif
|
57
|
-
|
58
|
-
#ifndef HAVE_RB_HASH_NEW_CAPA
|
59
|
-
#define rb_hash_new_capa(n) rb_hash_new()
|
60
|
-
#endif
|
61
|
-
|
62
|
-
|
63
|
-
/* name cache */
|
64
|
-
|
65
|
-
#include <string.h>
|
66
|
-
#include <ctype.h>
|
67
|
-
|
68
|
-
// Object names are likely to be repeated, and are frozen.
|
69
|
-
// As such we can re-use them if we keep a cache of the ones we've seen so far,
|
70
|
-
// and save much more expensive lookups into the global fstring table.
|
71
|
-
// This cache implementation is deliberately simple, as we're optimizing for compactness,
|
72
|
-
// to be able to fit safely on the stack.
|
73
|
-
// As such, binary search into a sorted array gives a good tradeoff between compactness and
|
74
|
-
// performance.
|
75
|
-
#define JSON_RVALUE_CACHE_CAPA 63
|
76
|
-
typedef struct rvalue_cache_struct {
|
77
|
-
int length;
|
78
|
-
VALUE entries[JSON_RVALUE_CACHE_CAPA];
|
79
|
-
} rvalue_cache;
|
80
|
-
|
81
|
-
static rb_encoding *enc_utf8;
|
82
|
-
|
83
|
-
#define JSON_RVALUE_CACHE_MAX_ENTRY_LENGTH 55
|
84
|
-
|
85
|
-
static inline VALUE build_interned_string(const char *str, const long length)
|
86
|
-
{
|
87
|
-
# ifdef HAVE_RB_ENC_INTERNED_STR
|
88
|
-
return rb_enc_interned_str(str, length, enc_utf8);
|
89
|
-
# else
|
90
|
-
VALUE rstring = rb_utf8_str_new(str, length);
|
91
|
-
return rb_funcall(rb_str_freeze(rstring), i_uminus, 0);
|
92
|
-
# endif
|
93
|
-
}
|
94
|
-
|
95
|
-
static inline VALUE build_symbol(const char *str, const long length)
|
96
|
-
{
|
97
|
-
return rb_str_intern(build_interned_string(str, length));
|
98
|
-
}
|
99
|
-
|
100
|
-
static void rvalue_cache_insert_at(rvalue_cache *cache, int index, VALUE rstring)
|
101
|
-
{
|
102
|
-
MEMMOVE(&cache->entries[index + 1], &cache->entries[index], VALUE, cache->length - index);
|
103
|
-
cache->length++;
|
104
|
-
cache->entries[index] = rstring;
|
105
|
-
}
|
106
|
-
|
107
|
-
static inline int rstring_cache_cmp(const char *str, const long length, VALUE rstring)
|
108
|
-
{
|
109
|
-
long rstring_length = RSTRING_LEN(rstring);
|
110
|
-
if (length == rstring_length) {
|
111
|
-
return memcmp(str, RSTRING_PTR(rstring), length);
|
112
|
-
} else {
|
113
|
-
return (int)(length - rstring_length);
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
static VALUE rstring_cache_fetch(rvalue_cache *cache, const char *str, const long length)
|
118
|
-
{
|
119
|
-
if (RB_UNLIKELY(length > JSON_RVALUE_CACHE_MAX_ENTRY_LENGTH)) {
|
120
|
-
// Common names aren't likely to be very long. So we just don't
|
121
|
-
// cache names above an arbitrary threshold.
|
122
|
-
return Qfalse;
|
123
|
-
}
|
124
|
-
|
125
|
-
if (RB_UNLIKELY(!isalpha((unsigned char)str[0]))) {
|
126
|
-
// Simple heuristic, if the first character isn't a letter,
|
127
|
-
// we're much less likely to see this string again.
|
128
|
-
// We mostly want to cache strings that are likely to be repeated.
|
129
|
-
return Qfalse;
|
130
|
-
}
|
131
|
-
|
132
|
-
int low = 0;
|
133
|
-
int high = cache->length - 1;
|
134
|
-
int mid = 0;
|
135
|
-
int last_cmp = 0;
|
136
|
-
|
137
|
-
while (low <= high) {
|
138
|
-
mid = (high + low) >> 1;
|
139
|
-
VALUE entry = cache->entries[mid];
|
140
|
-
last_cmp = rstring_cache_cmp(str, length, entry);
|
141
|
-
|
142
|
-
if (last_cmp == 0) {
|
143
|
-
return entry;
|
144
|
-
} else if (last_cmp > 0) {
|
145
|
-
low = mid + 1;
|
146
|
-
} else {
|
147
|
-
high = mid - 1;
|
148
|
-
}
|
149
|
-
}
|
150
|
-
|
151
|
-
if (RB_UNLIKELY(memchr(str, '\\', length))) {
|
152
|
-
// We assume the overwhelming majority of names don't need to be escaped.
|
153
|
-
// But if they do, we have to fallback to the slow path.
|
154
|
-
return Qfalse;
|
155
|
-
}
|
156
|
-
|
157
|
-
VALUE rstring = build_interned_string(str, length);
|
158
|
-
|
159
|
-
if (cache->length < JSON_RVALUE_CACHE_CAPA) {
|
160
|
-
if (last_cmp > 0) {
|
161
|
-
mid += 1;
|
162
|
-
}
|
163
|
-
|
164
|
-
rvalue_cache_insert_at(cache, mid, rstring);
|
165
|
-
}
|
166
|
-
return rstring;
|
167
|
-
}
|
168
|
-
|
169
|
-
static VALUE rsymbol_cache_fetch(rvalue_cache *cache, const char *str, const long length)
|
170
|
-
{
|
171
|
-
if (RB_UNLIKELY(length > JSON_RVALUE_CACHE_MAX_ENTRY_LENGTH)) {
|
172
|
-
// Common names aren't likely to be very long. So we just don't
|
173
|
-
// cache names above an arbitrary threshold.
|
174
|
-
return Qfalse;
|
175
|
-
}
|
176
|
-
|
177
|
-
if (RB_UNLIKELY(!isalpha((unsigned char)str[0]))) {
|
178
|
-
// Simple heuristic, if the first character isn't a letter,
|
179
|
-
// we're much less likely to see this string again.
|
180
|
-
// We mostly want to cache strings that are likely to be repeated.
|
181
|
-
return Qfalse;
|
182
|
-
}
|
183
|
-
|
184
|
-
int low = 0;
|
185
|
-
int high = cache->length - 1;
|
186
|
-
int mid = 0;
|
187
|
-
int last_cmp = 0;
|
188
|
-
|
189
|
-
while (low <= high) {
|
190
|
-
mid = (high + low) >> 1;
|
191
|
-
VALUE entry = cache->entries[mid];
|
192
|
-
last_cmp = rstring_cache_cmp(str, length, rb_sym2str(entry));
|
193
|
-
|
194
|
-
if (last_cmp == 0) {
|
195
|
-
return entry;
|
196
|
-
} else if (last_cmp > 0) {
|
197
|
-
low = mid + 1;
|
198
|
-
} else {
|
199
|
-
high = mid - 1;
|
200
|
-
}
|
201
|
-
}
|
202
|
-
|
203
|
-
if (RB_UNLIKELY(memchr(str, '\\', length))) {
|
204
|
-
// We assume the overwhelming majority of names don't need to be escaped.
|
205
|
-
// But if they do, we have to fallback to the slow path.
|
206
|
-
return Qfalse;
|
207
|
-
}
|
208
|
-
|
209
|
-
VALUE rsymbol = build_symbol(str, length);
|
210
|
-
|
211
|
-
if (cache->length < JSON_RVALUE_CACHE_CAPA) {
|
212
|
-
if (last_cmp > 0) {
|
213
|
-
mid += 1;
|
214
|
-
}
|
215
|
-
|
216
|
-
rvalue_cache_insert_at(cache, mid, rsymbol);
|
217
|
-
}
|
218
|
-
return rsymbol;
|
219
|
-
}
|
220
|
-
|
221
|
-
/* rvalue stack */
|
222
|
-
|
223
|
-
#define RVALUE_STACK_INITIAL_CAPA 128
|
224
|
-
|
225
|
-
enum rvalue_stack_type {
|
226
|
-
RVALUE_STACK_HEAP_ALLOCATED = 0,
|
227
|
-
RVALUE_STACK_STACK_ALLOCATED = 1,
|
228
|
-
};
|
229
|
-
|
230
|
-
typedef struct rvalue_stack_struct {
|
231
|
-
enum rvalue_stack_type type;
|
232
|
-
long capa;
|
233
|
-
long head;
|
234
|
-
VALUE *ptr;
|
235
|
-
} rvalue_stack;
|
236
|
-
|
237
|
-
static rvalue_stack *rvalue_stack_spill(rvalue_stack *old_stack, VALUE *handle, rvalue_stack **stack_ref);
|
238
|
-
|
239
|
-
static rvalue_stack *rvalue_stack_grow(rvalue_stack *stack, VALUE *handle, rvalue_stack **stack_ref)
|
240
|
-
{
|
241
|
-
long required = stack->capa * 2;
|
242
|
-
|
243
|
-
if (stack->type == RVALUE_STACK_STACK_ALLOCATED) {
|
244
|
-
stack = rvalue_stack_spill(stack, handle, stack_ref);
|
245
|
-
} else {
|
246
|
-
REALLOC_N(stack->ptr, VALUE, required);
|
247
|
-
stack->capa = required;
|
248
|
-
}
|
249
|
-
return stack;
|
250
|
-
}
|
251
|
-
|
252
|
-
static VALUE rvalue_stack_push(rvalue_stack *stack, VALUE value, VALUE *handle, rvalue_stack **stack_ref)
|
253
|
-
{
|
254
|
-
if (RB_UNLIKELY(stack->head >= stack->capa)) {
|
255
|
-
stack = rvalue_stack_grow(stack, handle, stack_ref);
|
256
|
-
}
|
257
|
-
stack->ptr[stack->head] = value;
|
258
|
-
stack->head++;
|
259
|
-
return value;
|
260
|
-
}
|
261
|
-
|
262
|
-
static inline VALUE *rvalue_stack_peek(rvalue_stack *stack, long count)
|
263
|
-
{
|
264
|
-
return stack->ptr + (stack->head - count);
|
265
|
-
}
|
266
|
-
|
267
|
-
static inline void rvalue_stack_pop(rvalue_stack *stack, long count)
|
268
|
-
{
|
269
|
-
stack->head -= count;
|
270
|
-
}
|
271
|
-
|
272
|
-
static void rvalue_stack_mark(void *ptr)
|
273
|
-
{
|
274
|
-
rvalue_stack *stack = (rvalue_stack *)ptr;
|
275
|
-
long index;
|
276
|
-
for (index = 0; index < stack->head; index++) {
|
277
|
-
rb_gc_mark(stack->ptr[index]);
|
278
|
-
}
|
279
|
-
}
|
280
|
-
|
281
|
-
static void rvalue_stack_free(void *ptr)
|
282
|
-
{
|
283
|
-
rvalue_stack *stack = (rvalue_stack *)ptr;
|
284
|
-
if (stack) {
|
285
|
-
ruby_xfree(stack->ptr);
|
286
|
-
ruby_xfree(stack);
|
287
|
-
}
|
288
|
-
}
|
289
|
-
|
290
|
-
static size_t rvalue_stack_memsize(const void *ptr)
|
291
|
-
{
|
292
|
-
const rvalue_stack *stack = (const rvalue_stack *)ptr;
|
293
|
-
return sizeof(rvalue_stack) + sizeof(VALUE) * stack->capa;
|
294
|
-
}
|
295
|
-
|
296
|
-
static const rb_data_type_t JSON_Parser_rvalue_stack_type = {
|
297
|
-
"JSON::Ext::Parser/rvalue_stack",
|
298
|
-
{
|
299
|
-
.dmark = rvalue_stack_mark,
|
300
|
-
.dfree = rvalue_stack_free,
|
301
|
-
.dsize = rvalue_stack_memsize,
|
302
|
-
},
|
303
|
-
0, 0,
|
304
|
-
RUBY_TYPED_FREE_IMMEDIATELY,
|
305
|
-
};
|
306
|
-
|
307
|
-
static rvalue_stack *rvalue_stack_spill(rvalue_stack *old_stack, VALUE *handle, rvalue_stack **stack_ref)
|
308
|
-
{
|
309
|
-
rvalue_stack *stack;
|
310
|
-
*handle = TypedData_Make_Struct(0, rvalue_stack, &JSON_Parser_rvalue_stack_type, stack);
|
311
|
-
*stack_ref = stack;
|
312
|
-
MEMCPY(stack, old_stack, rvalue_stack, 1);
|
313
|
-
|
314
|
-
stack->capa = old_stack->capa << 1;
|
315
|
-
stack->ptr = ALLOC_N(VALUE, stack->capa);
|
316
|
-
stack->type = RVALUE_STACK_HEAP_ALLOCATED;
|
317
|
-
MEMCPY(stack->ptr, old_stack->ptr, VALUE, old_stack->head);
|
318
|
-
return stack;
|
319
|
-
}
|
320
|
-
|
321
|
-
static void rvalue_stack_eagerly_release(VALUE handle)
|
322
|
-
{
|
323
|
-
if (handle) {
|
324
|
-
rvalue_stack *stack;
|
325
|
-
TypedData_Get_Struct(handle, rvalue_stack, &JSON_Parser_rvalue_stack_type, stack);
|
326
|
-
RTYPEDDATA_DATA(handle) = NULL;
|
327
|
-
rvalue_stack_free(stack);
|
328
|
-
}
|
329
|
-
}
|
330
|
-
|
331
|
-
|
332
|
-
#ifndef HAVE_STRNLEN
|
333
|
-
static size_t strnlen(const char *s, size_t maxlen)
|
334
|
-
{
|
335
|
-
char *p;
|
336
|
-
return ((p = memchr(s, '\0', maxlen)) ? p - s : maxlen);
|
337
|
-
}
|
338
|
-
#endif
|
339
|
-
|
340
|
-
static int convert_UTF32_to_UTF8(char *buf, uint32_t ch)
|
341
|
-
{
|
342
|
-
int len = 1;
|
343
|
-
if (ch <= 0x7F) {
|
344
|
-
buf[0] = (char) ch;
|
345
|
-
} else if (ch <= 0x07FF) {
|
346
|
-
buf[0] = (char) ((ch >> 6) | 0xC0);
|
347
|
-
buf[1] = (char) ((ch & 0x3F) | 0x80);
|
348
|
-
len++;
|
349
|
-
} else if (ch <= 0xFFFF) {
|
350
|
-
buf[0] = (char) ((ch >> 12) | 0xE0);
|
351
|
-
buf[1] = (char) (((ch >> 6) & 0x3F) | 0x80);
|
352
|
-
buf[2] = (char) ((ch & 0x3F) | 0x80);
|
353
|
-
len += 2;
|
354
|
-
} else if (ch <= 0x1fffff) {
|
355
|
-
buf[0] =(char) ((ch >> 18) | 0xF0);
|
356
|
-
buf[1] =(char) (((ch >> 12) & 0x3F) | 0x80);
|
357
|
-
buf[2] =(char) (((ch >> 6) & 0x3F) | 0x80);
|
358
|
-
buf[3] =(char) ((ch & 0x3F) | 0x80);
|
359
|
-
len += 3;
|
360
|
-
} else {
|
361
|
-
buf[0] = '?';
|
362
|
-
}
|
363
|
-
return len;
|
364
|
-
}
|
365
|
-
|
366
|
-
typedef struct JSON_ParserStruct {
|
367
|
-
VALUE on_load_proc;
|
368
|
-
VALUE decimal_class;
|
369
|
-
ID decimal_method_id;
|
370
|
-
int max_nesting;
|
371
|
-
bool allow_nan;
|
372
|
-
bool allow_trailing_comma;
|
373
|
-
bool parsing_name;
|
374
|
-
bool symbolize_names;
|
375
|
-
bool freeze;
|
376
|
-
} JSON_ParserConfig;
|
377
|
-
|
378
|
-
typedef struct JSON_ParserStateStruct {
|
379
|
-
VALUE stack_handle;
|
380
|
-
const char *start;
|
381
|
-
const char *cursor;
|
382
|
-
const char *end;
|
383
|
-
rvalue_stack *stack;
|
384
|
-
rvalue_cache name_cache;
|
385
|
-
int in_array;
|
386
|
-
int current_nesting;
|
387
|
-
} JSON_ParserState;
|
388
|
-
|
389
|
-
|
390
|
-
#define PARSE_ERROR_FRAGMENT_LEN 32
|
391
|
-
#ifdef RBIMPL_ATTR_NORETURN
|
392
|
-
RBIMPL_ATTR_NORETURN()
|
393
|
-
#endif
|
394
|
-
static void raise_parse_error(const char *format, JSON_ParserState *state)
|
395
|
-
{
|
396
|
-
unsigned char buffer[PARSE_ERROR_FRAGMENT_LEN + 1];
|
397
|
-
|
398
|
-
const char *cursor = state->cursor;
|
399
|
-
long column = 0;
|
400
|
-
long line = 1;
|
401
|
-
|
402
|
-
while (cursor >= state->start) {
|
403
|
-
if (*cursor-- == '\n') {
|
404
|
-
break;
|
405
|
-
}
|
406
|
-
column++;
|
407
|
-
}
|
408
|
-
|
409
|
-
while (cursor >= state->start) {
|
410
|
-
if (*cursor-- == '\n') {
|
411
|
-
line++;
|
412
|
-
}
|
413
|
-
}
|
414
|
-
|
415
|
-
const char *ptr = state->cursor;
|
416
|
-
size_t len = ptr ? strnlen(ptr, PARSE_ERROR_FRAGMENT_LEN) : 0;
|
417
|
-
|
418
|
-
if (len == PARSE_ERROR_FRAGMENT_LEN) {
|
419
|
-
MEMCPY(buffer, ptr, char, PARSE_ERROR_FRAGMENT_LEN);
|
420
|
-
|
421
|
-
while (buffer[len - 1] >= 0x80 && buffer[len - 1] < 0xC0) { // Is continuation byte
|
422
|
-
len--;
|
423
|
-
}
|
424
|
-
|
425
|
-
if (buffer[len - 1] >= 0xC0) { // multibyte character start
|
426
|
-
len--;
|
427
|
-
}
|
428
|
-
|
429
|
-
buffer[len] = '\0';
|
430
|
-
ptr = (const char *)buffer;
|
431
|
-
}
|
432
|
-
|
433
|
-
VALUE msg = rb_sprintf(format, ptr);
|
434
|
-
VALUE message = rb_enc_sprintf(enc_utf8, "%s at line %ld column %ld", RSTRING_PTR(msg), line, column);
|
435
|
-
RB_GC_GUARD(msg);
|
436
|
-
|
437
|
-
VALUE exc = rb_exc_new_str(rb_path2class("JSON::ParserError"), message);
|
438
|
-
rb_ivar_set(exc, rb_intern("@line"), LONG2NUM(line));
|
439
|
-
rb_ivar_set(exc, rb_intern("@column"), LONG2NUM(column));
|
440
|
-
rb_exc_raise(exc);
|
441
|
-
}
|
442
|
-
|
443
|
-
#ifdef RBIMPL_ATTR_NORETURN
|
444
|
-
RBIMPL_ATTR_NORETURN()
|
445
|
-
#endif
|
446
|
-
static void raise_parse_error_at(const char *format, JSON_ParserState *state, const char *at)
|
447
|
-
{
|
448
|
-
state->cursor = at;
|
449
|
-
raise_parse_error(format, state);
|
450
|
-
}
|
451
|
-
|
452
|
-
/* unicode */
|
453
|
-
|
454
|
-
static const signed char digit_values[256] = {
|
455
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
456
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
457
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1,
|
458
|
-
-1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
|
459
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
460
|
-
10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
461
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
462
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
463
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
464
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
465
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
466
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
467
|
-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
468
|
-
-1, -1, -1, -1, -1, -1, -1
|
469
|
-
};
|
470
|
-
|
471
|
-
static uint32_t unescape_unicode(JSON_ParserState *state, const unsigned char *p)
|
472
|
-
{
|
473
|
-
signed char b;
|
474
|
-
uint32_t result = 0;
|
475
|
-
b = digit_values[p[0]];
|
476
|
-
if (b < 0) raise_parse_error_at("incomplete unicode character escape sequence at '%s'", state, (char *)p - 2);
|
477
|
-
result = (result << 4) | (unsigned char)b;
|
478
|
-
b = digit_values[p[1]];
|
479
|
-
if (b < 0) raise_parse_error_at("incomplete unicode character escape sequence at '%s'", state, (char *)p - 2);
|
480
|
-
result = (result << 4) | (unsigned char)b;
|
481
|
-
b = digit_values[p[2]];
|
482
|
-
if (b < 0) raise_parse_error_at("incomplete unicode character escape sequence at '%s'", state, (char *)p - 2);
|
483
|
-
result = (result << 4) | (unsigned char)b;
|
484
|
-
b = digit_values[p[3]];
|
485
|
-
if (b < 0) raise_parse_error_at("incomplete unicode character escape sequence at '%s'", state, (char *)p - 2);
|
486
|
-
result = (result << 4) | (unsigned char)b;
|
487
|
-
return result;
|
488
|
-
}
|
489
|
-
|
490
|
-
#define GET_PARSER_CONFIG \
|
491
|
-
JSON_ParserConfig *config; \
|
492
|
-
TypedData_Get_Struct(self, JSON_ParserConfig, &JSON_ParserConfig_type, config)
|
493
|
-
|
494
|
-
static const rb_data_type_t JSON_ParserConfig_type;
|
495
|
-
|
496
|
-
static const bool whitespace[256] = {
|
497
|
-
[' '] = 1,
|
498
|
-
['\t'] = 1,
|
499
|
-
['\n'] = 1,
|
500
|
-
['\r'] = 1,
|
501
|
-
['/'] = 1,
|
502
|
-
};
|
503
|
-
|
504
|
-
static void
|
505
|
-
json_eat_comments(JSON_ParserState *state)
|
506
|
-
{
|
507
|
-
if (state->cursor + 1 < state->end) {
|
508
|
-
switch(state->cursor[1]) {
|
509
|
-
case '/': {
|
510
|
-
state->cursor = memchr(state->cursor, '\n', state->end - state->cursor);
|
511
|
-
if (!state->cursor) {
|
512
|
-
state->cursor = state->end;
|
513
|
-
} else {
|
514
|
-
state->cursor++;
|
515
|
-
}
|
516
|
-
break;
|
517
|
-
}
|
518
|
-
case '*': {
|
519
|
-
state->cursor += 2;
|
520
|
-
while (true) {
|
521
|
-
state->cursor = memchr(state->cursor, '*', state->end - state->cursor);
|
522
|
-
if (!state->cursor) {
|
523
|
-
raise_parse_error_at("unexpected end of input, expected closing '*/'", state, state->end);
|
524
|
-
} else {
|
525
|
-
state->cursor++;
|
526
|
-
if (state->cursor < state->end && *state->cursor == '/') {
|
527
|
-
state->cursor++;
|
528
|
-
break;
|
529
|
-
}
|
530
|
-
}
|
531
|
-
}
|
532
|
-
break;
|
533
|
-
}
|
534
|
-
default:
|
535
|
-
raise_parse_error("unexpected token '%s'", state);
|
536
|
-
break;
|
537
|
-
}
|
538
|
-
} else {
|
539
|
-
raise_parse_error("unexpected token '%s'", state);
|
540
|
-
}
|
541
|
-
}
|
542
|
-
|
543
|
-
static inline void
|
544
|
-
json_eat_whitespace(JSON_ParserState *state)
|
545
|
-
{
|
546
|
-
while (state->cursor < state->end && RB_UNLIKELY(whitespace[(unsigned char)*state->cursor])) {
|
547
|
-
if (RB_LIKELY(*state->cursor != '/')) {
|
548
|
-
state->cursor++;
|
549
|
-
} else {
|
550
|
-
json_eat_comments(state);
|
551
|
-
}
|
552
|
-
}
|
553
|
-
}
|
554
|
-
|
555
|
-
static inline VALUE build_string(const char *start, const char *end, bool intern, bool symbolize)
|
556
|
-
{
|
557
|
-
if (symbolize) {
|
558
|
-
intern = true;
|
559
|
-
}
|
560
|
-
VALUE result;
|
561
|
-
# ifdef HAVE_RB_ENC_INTERNED_STR
|
562
|
-
if (intern) {
|
563
|
-
result = rb_enc_interned_str(start, (long)(end - start), enc_utf8);
|
564
|
-
} else {
|
565
|
-
result = rb_utf8_str_new(start, (long)(end - start));
|
566
|
-
}
|
567
|
-
# else
|
568
|
-
result = rb_utf8_str_new(start, (long)(end - start));
|
569
|
-
if (intern) {
|
570
|
-
result = rb_funcall(rb_str_freeze(result), i_uminus, 0);
|
571
|
-
}
|
572
|
-
# endif
|
573
|
-
|
574
|
-
if (symbolize) {
|
575
|
-
result = rb_str_intern(result);
|
576
|
-
}
|
577
|
-
|
578
|
-
return result;
|
579
|
-
}
|
580
|
-
|
581
|
-
static inline VALUE json_string_fastpath(JSON_ParserState *state, const char *string, const char *stringEnd, bool is_name, bool intern, bool symbolize)
|
582
|
-
{
|
583
|
-
size_t bufferSize = stringEnd - string;
|
584
|
-
|
585
|
-
if (is_name && state->in_array) {
|
586
|
-
VALUE cached_key;
|
587
|
-
if (RB_UNLIKELY(symbolize)) {
|
588
|
-
cached_key = rsymbol_cache_fetch(&state->name_cache, string, bufferSize);
|
589
|
-
} else {
|
590
|
-
cached_key = rstring_cache_fetch(&state->name_cache, string, bufferSize);
|
591
|
-
}
|
592
|
-
|
593
|
-
if (RB_LIKELY(cached_key)) {
|
594
|
-
return cached_key;
|
595
|
-
}
|
596
|
-
}
|
597
|
-
|
598
|
-
return build_string(string, stringEnd, intern, symbolize);
|
599
|
-
}
|
600
|
-
|
601
|
-
static VALUE json_string_unescape(JSON_ParserState *state, const char *string, const char *stringEnd, bool is_name, bool intern, bool symbolize)
|
602
|
-
{
|
603
|
-
size_t bufferSize = stringEnd - string;
|
604
|
-
const char *p = string, *pe = string, *unescape, *bufferStart;
|
605
|
-
char *buffer;
|
606
|
-
int unescape_len;
|
607
|
-
char buf[4];
|
608
|
-
|
609
|
-
if (is_name && state->in_array) {
|
610
|
-
VALUE cached_key;
|
611
|
-
if (RB_UNLIKELY(symbolize)) {
|
612
|
-
cached_key = rsymbol_cache_fetch(&state->name_cache, string, bufferSize);
|
613
|
-
} else {
|
614
|
-
cached_key = rstring_cache_fetch(&state->name_cache, string, bufferSize);
|
615
|
-
}
|
616
|
-
|
617
|
-
if (RB_LIKELY(cached_key)) {
|
618
|
-
return cached_key;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
VALUE result = rb_str_buf_new(bufferSize);
|
623
|
-
rb_enc_associate_index(result, utf8_encindex);
|
624
|
-
buffer = RSTRING_PTR(result);
|
625
|
-
bufferStart = buffer;
|
626
|
-
|
627
|
-
while (pe < stringEnd && (pe = memchr(pe, '\\', stringEnd - pe))) {
|
628
|
-
unescape = (char *) "?";
|
629
|
-
unescape_len = 1;
|
630
|
-
if (pe > p) {
|
631
|
-
MEMCPY(buffer, p, char, pe - p);
|
632
|
-
buffer += pe - p;
|
633
|
-
}
|
634
|
-
switch (*++pe) {
|
635
|
-
case 'n':
|
636
|
-
unescape = (char *) "\n";
|
637
|
-
break;
|
638
|
-
case 'r':
|
639
|
-
unescape = (char *) "\r";
|
640
|
-
break;
|
641
|
-
case 't':
|
642
|
-
unescape = (char *) "\t";
|
643
|
-
break;
|
644
|
-
case '"':
|
645
|
-
unescape = (char *) "\"";
|
646
|
-
break;
|
647
|
-
case '\\':
|
648
|
-
unescape = (char *) "\\";
|
649
|
-
break;
|
650
|
-
case 'b':
|
651
|
-
unescape = (char *) "\b";
|
652
|
-
break;
|
653
|
-
case 'f':
|
654
|
-
unescape = (char *) "\f";
|
655
|
-
break;
|
656
|
-
case 'u':
|
657
|
-
if (pe > stringEnd - 5) {
|
658
|
-
raise_parse_error_at("incomplete unicode character escape sequence at '%s'", state, p);
|
659
|
-
} else {
|
660
|
-
uint32_t ch = unescape_unicode(state, (unsigned char *) ++pe);
|
661
|
-
pe += 3;
|
662
|
-
/* To handle values above U+FFFF, we take a sequence of
|
663
|
-
* \uXXXX escapes in the U+D800..U+DBFF then
|
664
|
-
* U+DC00..U+DFFF ranges, take the low 10 bits from each
|
665
|
-
* to make a 20-bit number, then add 0x10000 to get the
|
666
|
-
* final codepoint.
|
667
|
-
*
|
668
|
-
* See Unicode 15: 3.8 "Surrogates", 5.3 "Handling
|
669
|
-
* Surrogate Pairs in UTF-16", and 23.6 "Surrogates
|
670
|
-
* Area".
|
671
|
-
*/
|
672
|
-
if ((ch & 0xFC00) == 0xD800) {
|
673
|
-
pe++;
|
674
|
-
if (pe > stringEnd - 6) {
|
675
|
-
raise_parse_error_at("incomplete surrogate pair at '%s'", state, p);
|
676
|
-
}
|
677
|
-
if (pe[0] == '\\' && pe[1] == 'u') {
|
678
|
-
uint32_t sur = unescape_unicode(state, (unsigned char *) pe + 2);
|
679
|
-
ch = (((ch & 0x3F) << 10) | ((((ch >> 6) & 0xF) + 1) << 16)
|
680
|
-
| (sur & 0x3FF));
|
681
|
-
pe += 5;
|
682
|
-
} else {
|
683
|
-
unescape = (char *) "?";
|
684
|
-
break;
|
685
|
-
}
|
686
|
-
}
|
687
|
-
unescape_len = convert_UTF32_to_UTF8(buf, ch);
|
688
|
-
unescape = buf;
|
689
|
-
}
|
690
|
-
break;
|
691
|
-
default:
|
692
|
-
p = pe;
|
693
|
-
continue;
|
694
|
-
}
|
695
|
-
MEMCPY(buffer, unescape, char, unescape_len);
|
696
|
-
buffer += unescape_len;
|
697
|
-
p = ++pe;
|
698
|
-
}
|
699
|
-
|
700
|
-
if (stringEnd > p) {
|
701
|
-
MEMCPY(buffer, p, char, stringEnd - p);
|
702
|
-
buffer += stringEnd - p;
|
703
|
-
}
|
704
|
-
rb_str_set_len(result, buffer - bufferStart);
|
705
|
-
|
706
|
-
if (symbolize) {
|
707
|
-
result = rb_str_intern(result);
|
708
|
-
} else if (intern) {
|
709
|
-
result = rb_funcall(rb_str_freeze(result), i_uminus, 0);
|
710
|
-
}
|
711
|
-
|
712
|
-
return result;
|
713
|
-
}
|
714
|
-
|
715
|
-
#define MAX_FAST_INTEGER_SIZE 18
|
716
|
-
static inline VALUE fast_decode_integer(const char *p, const char *pe)
|
717
|
-
{
|
718
|
-
bool negative = false;
|
719
|
-
if (*p == '-') {
|
720
|
-
negative = true;
|
721
|
-
p++;
|
722
|
-
}
|
723
|
-
|
724
|
-
long long memo = 0;
|
725
|
-
while (p < pe) {
|
726
|
-
memo *= 10;
|
727
|
-
memo += *p - '0';
|
728
|
-
p++;
|
729
|
-
}
|
730
|
-
|
731
|
-
if (negative) {
|
732
|
-
memo = -memo;
|
733
|
-
}
|
734
|
-
return LL2NUM(memo);
|
735
|
-
}
|
736
|
-
|
737
|
-
static VALUE json_decode_large_integer(const char *start, long len)
|
738
|
-
{
|
739
|
-
VALUE buffer_v;
|
740
|
-
char *buffer = RB_ALLOCV_N(char, buffer_v, len + 1);
|
741
|
-
MEMCPY(buffer, start, char, len);
|
742
|
-
buffer[len] = '\0';
|
743
|
-
VALUE number = rb_cstr2inum(buffer, 10);
|
744
|
-
RB_ALLOCV_END(buffer_v);
|
745
|
-
return number;
|
746
|
-
}
|
747
|
-
|
748
|
-
static inline VALUE
|
749
|
-
json_decode_integer(const char *start, const char *end)
|
750
|
-
{
|
751
|
-
long len = end - start;
|
752
|
-
if (RB_LIKELY(len < MAX_FAST_INTEGER_SIZE)) {
|
753
|
-
return fast_decode_integer(start, end);
|
754
|
-
}
|
755
|
-
return json_decode_large_integer(start, len);
|
756
|
-
}
|
757
|
-
|
758
|
-
static VALUE json_decode_large_float(const char *start, long len)
|
759
|
-
{
|
760
|
-
VALUE buffer_v;
|
761
|
-
char *buffer = RB_ALLOCV_N(char, buffer_v, len + 1);
|
762
|
-
MEMCPY(buffer, start, char, len);
|
763
|
-
buffer[len] = '\0';
|
764
|
-
VALUE number = DBL2NUM(rb_cstr_to_dbl(buffer, 1));
|
765
|
-
RB_ALLOCV_END(buffer_v);
|
766
|
-
return number;
|
767
|
-
}
|
768
|
-
|
769
|
-
static VALUE json_decode_float(JSON_ParserConfig *config, const char *start, const char *end)
|
770
|
-
{
|
771
|
-
long len = end - start;
|
772
|
-
|
773
|
-
if (RB_UNLIKELY(config->decimal_class)) {
|
774
|
-
VALUE text = rb_str_new(start, len);
|
775
|
-
return rb_funcallv(config->decimal_class, config->decimal_method_id, 1, &text);
|
776
|
-
} else if (RB_LIKELY(len < 64)) {
|
777
|
-
char buffer[64];
|
778
|
-
MEMCPY(buffer, start, char, len);
|
779
|
-
buffer[len] = '\0';
|
780
|
-
return DBL2NUM(rb_cstr_to_dbl(buffer, 1));
|
781
|
-
} else {
|
782
|
-
return json_decode_large_float(start, len);
|
783
|
-
}
|
784
|
-
}
|
785
|
-
|
786
|
-
static inline VALUE json_decode_array(JSON_ParserState *state, JSON_ParserConfig *config, long count)
|
787
|
-
{
|
788
|
-
VALUE array = rb_ary_new_from_values(count, rvalue_stack_peek(state->stack, count));
|
789
|
-
rvalue_stack_pop(state->stack, count);
|
790
|
-
|
791
|
-
if (config->freeze) {
|
792
|
-
RB_OBJ_FREEZE(array);
|
793
|
-
}
|
794
|
-
|
795
|
-
return array;
|
796
|
-
}
|
797
|
-
|
798
|
-
static inline VALUE json_decode_object(JSON_ParserState *state, JSON_ParserConfig *config, long count)
|
799
|
-
{
|
800
|
-
VALUE object = rb_hash_new_capa(count);
|
801
|
-
rb_hash_bulk_insert(count, rvalue_stack_peek(state->stack, count), object);
|
802
|
-
|
803
|
-
rvalue_stack_pop(state->stack, count);
|
804
|
-
|
805
|
-
if (config->freeze) {
|
806
|
-
RB_OBJ_FREEZE(object);
|
807
|
-
}
|
808
|
-
|
809
|
-
return object;
|
810
|
-
}
|
811
|
-
|
812
|
-
static inline VALUE json_decode_string(JSON_ParserState *state, JSON_ParserConfig *config, const char *start, const char *end, bool escaped, bool is_name)
|
813
|
-
{
|
814
|
-
VALUE string;
|
815
|
-
bool intern = is_name || config->freeze;
|
816
|
-
bool symbolize = is_name && config->symbolize_names;
|
817
|
-
if (escaped) {
|
818
|
-
string = json_string_unescape(state, start, end, is_name, intern, symbolize);
|
819
|
-
} else {
|
820
|
-
string = json_string_fastpath(state, start, end, is_name, intern, symbolize);
|
821
|
-
}
|
822
|
-
|
823
|
-
return string;
|
824
|
-
}
|
825
|
-
|
826
|
-
static inline VALUE json_push_value(JSON_ParserState *state, JSON_ParserConfig *config, VALUE value)
|
827
|
-
{
|
828
|
-
if (RB_UNLIKELY(config->on_load_proc)) {
|
829
|
-
value = rb_proc_call_with_block(config->on_load_proc, 1, &value, Qnil);
|
830
|
-
}
|
831
|
-
rvalue_stack_push(state->stack, value, &state->stack_handle, &state->stack);
|
832
|
-
return value;
|
833
|
-
}
|
834
|
-
|
835
|
-
static const bool string_scan[256] = {
|
836
|
-
// ASCII Control Characters
|
837
|
-
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
838
|
-
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
839
|
-
// ASCII Characters
|
840
|
-
0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // '"'
|
841
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
842
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
843
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, // '\\'
|
844
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
845
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
846
|
-
};
|
847
|
-
|
848
|
-
static inline VALUE json_parse_string(JSON_ParserState *state, JSON_ParserConfig *config, bool is_name)
|
849
|
-
{
|
850
|
-
state->cursor++;
|
851
|
-
const char *start = state->cursor;
|
852
|
-
bool escaped = false;
|
853
|
-
|
854
|
-
while (state->cursor < state->end) {
|
855
|
-
if (RB_UNLIKELY(string_scan[(unsigned char)*state->cursor])) {
|
856
|
-
switch (*state->cursor) {
|
857
|
-
case '"': {
|
858
|
-
VALUE string = json_decode_string(state, config, start, state->cursor, escaped, is_name);
|
859
|
-
state->cursor++;
|
860
|
-
return json_push_value(state, config, string);
|
861
|
-
}
|
862
|
-
case '\\': {
|
863
|
-
state->cursor++;
|
864
|
-
escaped = true;
|
865
|
-
if ((unsigned char)*state->cursor < 0x20) {
|
866
|
-
raise_parse_error("invalid ASCII control character in string: %s", state);
|
867
|
-
}
|
868
|
-
break;
|
869
|
-
}
|
870
|
-
default:
|
871
|
-
raise_parse_error("invalid ASCII control character in string: %s", state);
|
872
|
-
break;
|
873
|
-
}
|
874
|
-
}
|
875
|
-
|
876
|
-
state->cursor++;
|
877
|
-
}
|
878
|
-
|
879
|
-
raise_parse_error("unexpected end of input, expected closing \"", state);
|
880
|
-
return Qfalse;
|
881
|
-
}
|
882
|
-
|
883
|
-
static VALUE json_parse_any(JSON_ParserState *state, JSON_ParserConfig *config)
|
884
|
-
{
|
885
|
-
json_eat_whitespace(state);
|
886
|
-
if (state->cursor >= state->end) {
|
887
|
-
raise_parse_error("unexpected end of input", state);
|
888
|
-
}
|
889
|
-
|
890
|
-
switch (*state->cursor) {
|
891
|
-
case 'n':
|
892
|
-
if ((state->end - state->cursor >= 4) && (memcmp(state->cursor, "null", 4) == 0)) {
|
893
|
-
state->cursor += 4;
|
894
|
-
return json_push_value(state, config, Qnil);
|
895
|
-
}
|
896
|
-
|
897
|
-
raise_parse_error("unexpected token '%s'", state);
|
898
|
-
break;
|
899
|
-
case 't':
|
900
|
-
if ((state->end - state->cursor >= 4) && (memcmp(state->cursor, "true", 4) == 0)) {
|
901
|
-
state->cursor += 4;
|
902
|
-
return json_push_value(state, config, Qtrue);
|
903
|
-
}
|
904
|
-
|
905
|
-
raise_parse_error("unexpected token '%s'", state);
|
906
|
-
break;
|
907
|
-
case 'f':
|
908
|
-
// Note: memcmp with a small power of two compile to an integer comparison
|
909
|
-
if ((state->end - state->cursor >= 5) && (memcmp(state->cursor + 1, "alse", 4) == 0)) {
|
910
|
-
state->cursor += 5;
|
911
|
-
return json_push_value(state, config, Qfalse);
|
912
|
-
}
|
913
|
-
|
914
|
-
raise_parse_error("unexpected token '%s'", state);
|
915
|
-
break;
|
916
|
-
case 'N':
|
917
|
-
// Note: memcmp with a small power of two compile to an integer comparison
|
918
|
-
if (config->allow_nan && (state->end - state->cursor >= 3) && (memcmp(state->cursor + 1, "aN", 2) == 0)) {
|
919
|
-
state->cursor += 3;
|
920
|
-
return json_push_value(state, config, CNaN);
|
921
|
-
}
|
922
|
-
|
923
|
-
raise_parse_error("unexpected token '%s'", state);
|
924
|
-
break;
|
925
|
-
case 'I':
|
926
|
-
if (config->allow_nan && (state->end - state->cursor >= 8) && (memcmp(state->cursor, "Infinity", 8) == 0)) {
|
927
|
-
state->cursor += 8;
|
928
|
-
return json_push_value(state, config, CInfinity);
|
929
|
-
}
|
930
|
-
|
931
|
-
raise_parse_error("unexpected token '%s'", state);
|
932
|
-
break;
|
933
|
-
case '-':
|
934
|
-
// Note: memcmp with a small power of two compile to an integer comparison
|
935
|
-
if ((state->end - state->cursor >= 9) && (memcmp(state->cursor + 1, "Infinity", 8) == 0)) {
|
936
|
-
if (config->allow_nan) {
|
937
|
-
state->cursor += 9;
|
938
|
-
return json_push_value(state, config, CMinusInfinity);
|
939
|
-
} else {
|
940
|
-
raise_parse_error("unexpected token '%s'", state);
|
941
|
-
}
|
942
|
-
}
|
943
|
-
// Fallthrough
|
944
|
-
case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': {
|
945
|
-
bool integer = true;
|
946
|
-
|
947
|
-
// /\A-?(0|[1-9]\d*)(\.\d+)?([Ee][-+]?\d+)?/
|
948
|
-
const char *start = state->cursor;
|
949
|
-
state->cursor++;
|
950
|
-
|
951
|
-
while ((state->cursor < state->end) && (*state->cursor >= '0') && (*state->cursor <= '9')) {
|
952
|
-
state->cursor++;
|
953
|
-
}
|
954
|
-
|
955
|
-
long integer_length = state->cursor - start;
|
956
|
-
|
957
|
-
if (RB_UNLIKELY(start[0] == '0' && integer_length > 1)) {
|
958
|
-
raise_parse_error_at("invalid number: %s", state, start);
|
959
|
-
} else if (RB_UNLIKELY(integer_length > 2 && start[0] == '-' && start[1] == '0')) {
|
960
|
-
raise_parse_error_at("invalid number: %s", state, start);
|
961
|
-
} else if (RB_UNLIKELY(integer_length == 1 && start[0] == '-')) {
|
962
|
-
raise_parse_error_at("invalid number: %s", state, start);
|
963
|
-
}
|
964
|
-
|
965
|
-
if ((state->cursor < state->end) && (*state->cursor == '.')) {
|
966
|
-
integer = false;
|
967
|
-
state->cursor++;
|
968
|
-
|
969
|
-
if (state->cursor == state->end || *state->cursor < '0' || *state->cursor > '9') {
|
970
|
-
raise_parse_error("invalid number: %s", state);
|
971
|
-
}
|
972
|
-
|
973
|
-
while ((state->cursor < state->end) && (*state->cursor >= '0') && (*state->cursor <= '9')) {
|
974
|
-
state->cursor++;
|
975
|
-
}
|
976
|
-
}
|
977
|
-
|
978
|
-
if ((state->cursor < state->end) && ((*state->cursor == 'e') || (*state->cursor == 'E'))) {
|
979
|
-
integer = false;
|
980
|
-
state->cursor++;
|
981
|
-
if ((state->cursor < state->end) && ((*state->cursor == '+') || (*state->cursor == '-'))) {
|
982
|
-
state->cursor++;
|
983
|
-
}
|
984
|
-
|
985
|
-
if (state->cursor == state->end || *state->cursor < '0' || *state->cursor > '9') {
|
986
|
-
raise_parse_error("invalid number: %s", state);
|
987
|
-
}
|
988
|
-
|
989
|
-
while ((state->cursor < state->end) && (*state->cursor >= '0') && (*state->cursor <= '9')) {
|
990
|
-
state->cursor++;
|
991
|
-
}
|
992
|
-
}
|
993
|
-
|
994
|
-
if (integer) {
|
995
|
-
return json_push_value(state, config, json_decode_integer(start, state->cursor));
|
996
|
-
}
|
997
|
-
return json_push_value(state, config, json_decode_float(config, start, state->cursor));
|
998
|
-
}
|
999
|
-
case '"': {
|
1000
|
-
// %r{\A"[^"\\\t\n\x00]*(?:\\[bfnrtu\\/"][^"\\]*)*"}
|
1001
|
-
return json_parse_string(state, config, false);
|
1002
|
-
break;
|
1003
|
-
}
|
1004
|
-
case '[': {
|
1005
|
-
state->cursor++;
|
1006
|
-
json_eat_whitespace(state);
|
1007
|
-
long stack_head = state->stack->head;
|
1008
|
-
|
1009
|
-
if ((state->cursor < state->end) && (*state->cursor == ']')) {
|
1010
|
-
state->cursor++;
|
1011
|
-
return json_push_value(state, config, json_decode_array(state, config, 0));
|
1012
|
-
} else {
|
1013
|
-
state->current_nesting++;
|
1014
|
-
if (RB_UNLIKELY(config->max_nesting && (config->max_nesting < state->current_nesting))) {
|
1015
|
-
rb_raise(eNestingError, "nesting of %d is too deep", state->current_nesting);
|
1016
|
-
}
|
1017
|
-
state->in_array++;
|
1018
|
-
json_parse_any(state, config);
|
1019
|
-
}
|
1020
|
-
|
1021
|
-
while (true) {
|
1022
|
-
json_eat_whitespace(state);
|
1023
|
-
|
1024
|
-
if (state->cursor < state->end) {
|
1025
|
-
if (*state->cursor == ']') {
|
1026
|
-
state->cursor++;
|
1027
|
-
long count = state->stack->head - stack_head;
|
1028
|
-
state->current_nesting--;
|
1029
|
-
state->in_array--;
|
1030
|
-
return json_push_value(state, config, json_decode_array(state, config, count));
|
1031
|
-
}
|
1032
|
-
|
1033
|
-
if (*state->cursor == ',') {
|
1034
|
-
state->cursor++;
|
1035
|
-
if (config->allow_trailing_comma) {
|
1036
|
-
json_eat_whitespace(state);
|
1037
|
-
if ((state->cursor < state->end) && (*state->cursor == ']')) {
|
1038
|
-
continue;
|
1039
|
-
}
|
1040
|
-
}
|
1041
|
-
json_parse_any(state, config);
|
1042
|
-
continue;
|
1043
|
-
}
|
1044
|
-
}
|
1045
|
-
|
1046
|
-
raise_parse_error("expected ',' or ']' after array value", state);
|
1047
|
-
}
|
1048
|
-
break;
|
1049
|
-
}
|
1050
|
-
case '{': {
|
1051
|
-
state->cursor++;
|
1052
|
-
json_eat_whitespace(state);
|
1053
|
-
long stack_head = state->stack->head;
|
1054
|
-
|
1055
|
-
if ((state->cursor < state->end) && (*state->cursor == '}')) {
|
1056
|
-
state->cursor++;
|
1057
|
-
return json_push_value(state, config, json_decode_object(state, config, 0));
|
1058
|
-
} else {
|
1059
|
-
state->current_nesting++;
|
1060
|
-
if (RB_UNLIKELY(config->max_nesting && (config->max_nesting < state->current_nesting))) {
|
1061
|
-
rb_raise(eNestingError, "nesting of %d is too deep", state->current_nesting);
|
1062
|
-
}
|
1063
|
-
|
1064
|
-
if (*state->cursor != '"') {
|
1065
|
-
raise_parse_error("expected object key, got '%s", state);
|
1066
|
-
}
|
1067
|
-
json_parse_string(state, config, true);
|
1068
|
-
|
1069
|
-
json_eat_whitespace(state);
|
1070
|
-
if ((state->cursor >= state->end) || (*state->cursor != ':')) {
|
1071
|
-
raise_parse_error("expected ':' after object key", state);
|
1072
|
-
}
|
1073
|
-
state->cursor++;
|
1074
|
-
|
1075
|
-
json_parse_any(state, config);
|
1076
|
-
}
|
1077
|
-
|
1078
|
-
while (true) {
|
1079
|
-
json_eat_whitespace(state);
|
1080
|
-
|
1081
|
-
if (state->cursor < state->end) {
|
1082
|
-
if (*state->cursor == '}') {
|
1083
|
-
state->cursor++;
|
1084
|
-
state->current_nesting--;
|
1085
|
-
long count = state->stack->head - stack_head;
|
1086
|
-
return json_push_value(state, config, json_decode_object(state, config, count));
|
1087
|
-
}
|
1088
|
-
|
1089
|
-
if (*state->cursor == ',') {
|
1090
|
-
state->cursor++;
|
1091
|
-
json_eat_whitespace(state);
|
1092
|
-
|
1093
|
-
if (config->allow_trailing_comma) {
|
1094
|
-
if ((state->cursor < state->end) && (*state->cursor == '}')) {
|
1095
|
-
continue;
|
1096
|
-
}
|
1097
|
-
}
|
1098
|
-
|
1099
|
-
if (*state->cursor != '"') {
|
1100
|
-
raise_parse_error("expected object key, got: '%s'", state);
|
1101
|
-
}
|
1102
|
-
json_parse_string(state, config, true);
|
1103
|
-
|
1104
|
-
json_eat_whitespace(state);
|
1105
|
-
if ((state->cursor >= state->end) || (*state->cursor != ':')) {
|
1106
|
-
raise_parse_error("expected ':' after object key, got: '%s", state);
|
1107
|
-
}
|
1108
|
-
state->cursor++;
|
1109
|
-
|
1110
|
-
json_parse_any(state, config);
|
1111
|
-
|
1112
|
-
continue;
|
1113
|
-
}
|
1114
|
-
}
|
1115
|
-
|
1116
|
-
raise_parse_error("expected ',' or '}' after object value, got: '%s'", state);
|
1117
|
-
}
|
1118
|
-
break;
|
1119
|
-
}
|
1120
|
-
|
1121
|
-
default:
|
1122
|
-
raise_parse_error("unexpected character: '%s'", state);
|
1123
|
-
break;
|
1124
|
-
}
|
1125
|
-
|
1126
|
-
raise_parse_error("unreacheable: '%s'", state);
|
1127
|
-
}
|
1128
|
-
|
1129
|
-
static void json_ensure_eof(JSON_ParserState *state)
|
1130
|
-
{
|
1131
|
-
json_eat_whitespace(state);
|
1132
|
-
if (state->cursor != state->end) {
|
1133
|
-
raise_parse_error("unexpected token at end of stream '%s'", state);
|
1134
|
-
}
|
1135
|
-
}
|
1136
|
-
|
1137
|
-
/*
|
1138
|
-
* Document-class: JSON::Ext::Parser
|
1139
|
-
*
|
1140
|
-
* This is the JSON parser implemented as a C extension. It can be configured
|
1141
|
-
* to be used by setting
|
1142
|
-
*
|
1143
|
-
* JSON.parser = JSON::Ext::Parser
|
1144
|
-
*
|
1145
|
-
* with the method parser= in JSON.
|
1146
|
-
*
|
1147
|
-
*/
|
1148
|
-
|
1149
|
-
static VALUE convert_encoding(VALUE source)
|
1150
|
-
{
|
1151
|
-
int encindex = RB_ENCODING_GET(source);
|
1152
|
-
|
1153
|
-
if (RB_LIKELY(encindex == utf8_encindex)) {
|
1154
|
-
return source;
|
1155
|
-
}
|
1156
|
-
|
1157
|
-
if (encindex == binary_encindex) {
|
1158
|
-
// For historical reason, we silently reinterpret binary strings as UTF-8
|
1159
|
-
return rb_enc_associate_index(rb_str_dup(source), utf8_encindex);
|
1160
|
-
}
|
1161
|
-
|
1162
|
-
return rb_funcall(source, i_encode, 1, Encoding_UTF_8);
|
1163
|
-
}
|
1164
|
-
|
1165
|
-
static int parser_config_init_i(VALUE key, VALUE val, VALUE data)
|
1166
|
-
{
|
1167
|
-
JSON_ParserConfig *config = (JSON_ParserConfig *)data;
|
1168
|
-
|
1169
|
-
if (key == sym_max_nesting) { config->max_nesting = RTEST(val) ? FIX2INT(val) : 0; }
|
1170
|
-
else if (key == sym_allow_nan) { config->allow_nan = RTEST(val); }
|
1171
|
-
else if (key == sym_allow_trailing_comma) { config->allow_trailing_comma = RTEST(val); }
|
1172
|
-
else if (key == sym_symbolize_names) { config->symbolize_names = RTEST(val); }
|
1173
|
-
else if (key == sym_freeze) { config->freeze = RTEST(val); }
|
1174
|
-
else if (key == sym_on_load) { config->on_load_proc = RTEST(val) ? val : Qfalse; }
|
1175
|
-
else if (key == sym_decimal_class) {
|
1176
|
-
if (RTEST(val)) {
|
1177
|
-
if (rb_respond_to(val, i_try_convert)) {
|
1178
|
-
config->decimal_class = val;
|
1179
|
-
config->decimal_method_id = i_try_convert;
|
1180
|
-
} else if (rb_respond_to(val, i_new)) {
|
1181
|
-
config->decimal_class = val;
|
1182
|
-
config->decimal_method_id = i_new;
|
1183
|
-
} else if (RB_TYPE_P(val, T_CLASS)) {
|
1184
|
-
VALUE name = rb_class_name(val);
|
1185
|
-
const char *name_cstr = RSTRING_PTR(name);
|
1186
|
-
const char *last_colon = strrchr(name_cstr, ':');
|
1187
|
-
if (last_colon) {
|
1188
|
-
const char *mod_path_end = last_colon - 1;
|
1189
|
-
VALUE mod_path = rb_str_substr(name, 0, mod_path_end - name_cstr);
|
1190
|
-
config->decimal_class = rb_path_to_class(mod_path);
|
1191
|
-
|
1192
|
-
const char *method_name_beg = last_colon + 1;
|
1193
|
-
long before_len = method_name_beg - name_cstr;
|
1194
|
-
long len = RSTRING_LEN(name) - before_len;
|
1195
|
-
VALUE method_name = rb_str_substr(name, before_len, len);
|
1196
|
-
config->decimal_method_id = SYM2ID(rb_str_intern(method_name));
|
1197
|
-
} else {
|
1198
|
-
config->decimal_class = rb_mKernel;
|
1199
|
-
config->decimal_method_id = SYM2ID(rb_str_intern(name));
|
1200
|
-
}
|
1201
|
-
}
|
1202
|
-
}
|
1203
|
-
}
|
1204
|
-
|
1205
|
-
return ST_CONTINUE;
|
1206
|
-
}
|
1207
|
-
|
1208
|
-
static void parser_config_init(JSON_ParserConfig *config, VALUE opts)
|
1209
|
-
{
|
1210
|
-
config->max_nesting = 100;
|
1211
|
-
|
1212
|
-
if (!NIL_P(opts)) {
|
1213
|
-
Check_Type(opts, T_HASH);
|
1214
|
-
if (RHASH_SIZE(opts) > 0) {
|
1215
|
-
// We assume in most cases few keys are set so it's faster to go over
|
1216
|
-
// the provided keys than to check all possible keys.
|
1217
|
-
rb_hash_foreach(opts, parser_config_init_i, (VALUE)config);
|
1218
|
-
}
|
1219
|
-
|
1220
|
-
}
|
1221
|
-
}
|
1222
|
-
|
1223
|
-
/*
|
1224
|
-
* call-seq: new(opts => {})
|
1225
|
-
*
|
1226
|
-
* Creates a new JSON::Ext::ParserConfig instance.
|
1227
|
-
*
|
1228
|
-
* It will be configured by the _opts_ hash. _opts_ can have the following
|
1229
|
-
* keys:
|
1230
|
-
*
|
1231
|
-
* _opts_ can have the following keys:
|
1232
|
-
* * *max_nesting*: The maximum depth of nesting allowed in the parsed data
|
1233
|
-
* structures. Disable depth checking with :max_nesting => false|nil|0, it
|
1234
|
-
* defaults to 100.
|
1235
|
-
* * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
|
1236
|
-
* defiance of RFC 4627 to be parsed by the Parser. This option defaults to
|
1237
|
-
* false.
|
1238
|
-
* * *symbolize_names*: If set to true, returns symbols for the names
|
1239
|
-
* (keys) in a JSON object. Otherwise strings are returned, which is
|
1240
|
-
* also the default. It's not possible to use this option in
|
1241
|
-
* conjunction with the *create_additions* option.
|
1242
|
-
* * *decimal_class*: Specifies which class to use instead of the default
|
1243
|
-
* (Float) when parsing decimal numbers. This class must accept a single
|
1244
|
-
* string argument in its constructor.
|
1245
|
-
*/
|
1246
|
-
static VALUE cParserConfig_initialize(VALUE self, VALUE opts)
|
1247
|
-
{
|
1248
|
-
GET_PARSER_CONFIG;
|
1249
|
-
|
1250
|
-
parser_config_init(config, opts);
|
1251
|
-
|
1252
|
-
RB_OBJ_WRITTEN(self, Qundef, config->decimal_class);
|
1253
|
-
|
1254
|
-
return self;
|
1255
|
-
}
|
1256
|
-
|
1257
|
-
static VALUE cParser_parse(JSON_ParserConfig *config, VALUE Vsource)
|
1258
|
-
{
|
1259
|
-
Vsource = convert_encoding(StringValue(Vsource));
|
1260
|
-
StringValue(Vsource);
|
1261
|
-
|
1262
|
-
VALUE rvalue_stack_buffer[RVALUE_STACK_INITIAL_CAPA];
|
1263
|
-
rvalue_stack stack = {
|
1264
|
-
.type = RVALUE_STACK_STACK_ALLOCATED,
|
1265
|
-
.ptr = rvalue_stack_buffer,
|
1266
|
-
.capa = RVALUE_STACK_INITIAL_CAPA,
|
1267
|
-
};
|
1268
|
-
|
1269
|
-
long len;
|
1270
|
-
const char *start;
|
1271
|
-
RSTRING_GETMEM(Vsource, start, len);
|
1272
|
-
|
1273
|
-
JSON_ParserState _state = {
|
1274
|
-
.start = start,
|
1275
|
-
.cursor = start,
|
1276
|
-
.end = start + len,
|
1277
|
-
.stack = &stack,
|
1278
|
-
};
|
1279
|
-
JSON_ParserState *state = &_state;
|
1280
|
-
|
1281
|
-
VALUE result = json_parse_any(state, config);
|
1282
|
-
|
1283
|
-
// This may be skipped in case of exception, but
|
1284
|
-
// it won't cause a leak.
|
1285
|
-
rvalue_stack_eagerly_release(state->stack_handle);
|
1286
|
-
|
1287
|
-
json_ensure_eof(state);
|
1288
|
-
|
1289
|
-
return result;
|
1290
|
-
}
|
1291
|
-
|
1292
|
-
/*
|
1293
|
-
* call-seq: parse(source)
|
1294
|
-
*
|
1295
|
-
* Parses the current JSON text _source_ and returns the complete data
|
1296
|
-
* structure as a result.
|
1297
|
-
* It raises JSON::ParserError if fail to parse.
|
1298
|
-
*/
|
1299
|
-
static VALUE cParserConfig_parse(VALUE self, VALUE Vsource)
|
1300
|
-
{
|
1301
|
-
GET_PARSER_CONFIG;
|
1302
|
-
return cParser_parse(config, Vsource);
|
1303
|
-
}
|
1304
|
-
|
1305
|
-
static VALUE cParser_m_parse(VALUE klass, VALUE Vsource, VALUE opts)
|
1306
|
-
{
|
1307
|
-
Vsource = convert_encoding(StringValue(Vsource));
|
1308
|
-
StringValue(Vsource);
|
1309
|
-
|
1310
|
-
JSON_ParserConfig _config = {0};
|
1311
|
-
JSON_ParserConfig *config = &_config;
|
1312
|
-
parser_config_init(config, opts);
|
1313
|
-
|
1314
|
-
return cParser_parse(config, Vsource);
|
1315
|
-
}
|
1316
|
-
|
1317
|
-
static void JSON_ParserConfig_mark(void *ptr)
|
1318
|
-
{
|
1319
|
-
JSON_ParserConfig *config = ptr;
|
1320
|
-
rb_gc_mark(config->on_load_proc);
|
1321
|
-
rb_gc_mark(config->decimal_class);
|
1322
|
-
}
|
1323
|
-
|
1324
|
-
static void JSON_ParserConfig_free(void *ptr)
|
1325
|
-
{
|
1326
|
-
JSON_ParserConfig *config = ptr;
|
1327
|
-
ruby_xfree(config);
|
1328
|
-
}
|
1329
|
-
|
1330
|
-
static size_t JSON_ParserConfig_memsize(const void *ptr)
|
1331
|
-
{
|
1332
|
-
return sizeof(JSON_ParserConfig);
|
1333
|
-
}
|
1334
|
-
|
1335
|
-
static const rb_data_type_t JSON_ParserConfig_type = {
|
1336
|
-
"JSON::Ext::Parser/ParserConfig",
|
1337
|
-
{
|
1338
|
-
JSON_ParserConfig_mark,
|
1339
|
-
JSON_ParserConfig_free,
|
1340
|
-
JSON_ParserConfig_memsize,
|
1341
|
-
},
|
1342
|
-
0, 0,
|
1343
|
-
RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED,
|
1344
|
-
};
|
1345
|
-
|
1346
|
-
static VALUE cJSON_parser_s_allocate(VALUE klass)
|
1347
|
-
{
|
1348
|
-
JSON_ParserConfig *config;
|
1349
|
-
return TypedData_Make_Struct(klass, JSON_ParserConfig, &JSON_ParserConfig_type, config);
|
1350
|
-
}
|
1351
|
-
|
1352
|
-
void Init_parser(void)
|
1353
|
-
{
|
1354
|
-
#ifdef HAVE_RB_EXT_RACTOR_SAFE
|
1355
|
-
rb_ext_ractor_safe(true);
|
1356
|
-
#endif
|
1357
|
-
|
1358
|
-
#undef rb_intern
|
1359
|
-
rb_require("json/common");
|
1360
|
-
mJSON = rb_define_module("JSON");
|
1361
|
-
VALUE mExt = rb_define_module_under(mJSON, "Ext");
|
1362
|
-
VALUE cParserConfig = rb_define_class_under(mExt, "ParserConfig", rb_cObject);
|
1363
|
-
eNestingError = rb_path2class("JSON::NestingError");
|
1364
|
-
rb_gc_register_mark_object(eNestingError);
|
1365
|
-
rb_define_alloc_func(cParserConfig, cJSON_parser_s_allocate);
|
1366
|
-
rb_define_method(cParserConfig, "initialize", cParserConfig_initialize, 1);
|
1367
|
-
rb_define_method(cParserConfig, "parse", cParserConfig_parse, 1);
|
1368
|
-
|
1369
|
-
VALUE cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
|
1370
|
-
rb_define_singleton_method(cParser, "parse", cParser_m_parse, 2);
|
1371
|
-
|
1372
|
-
CNaN = rb_const_get(mJSON, rb_intern("NaN"));
|
1373
|
-
rb_gc_register_mark_object(CNaN);
|
1374
|
-
|
1375
|
-
CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
|
1376
|
-
rb_gc_register_mark_object(CInfinity);
|
1377
|
-
|
1378
|
-
CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
|
1379
|
-
rb_gc_register_mark_object(CMinusInfinity);
|
1380
|
-
|
1381
|
-
rb_global_variable(&Encoding_UTF_8);
|
1382
|
-
Encoding_UTF_8 = rb_const_get(rb_path2class("Encoding"), rb_intern("UTF_8"));
|
1383
|
-
|
1384
|
-
sym_max_nesting = ID2SYM(rb_intern("max_nesting"));
|
1385
|
-
sym_allow_nan = ID2SYM(rb_intern("allow_nan"));
|
1386
|
-
sym_allow_trailing_comma = ID2SYM(rb_intern("allow_trailing_comma"));
|
1387
|
-
sym_symbolize_names = ID2SYM(rb_intern("symbolize_names"));
|
1388
|
-
sym_freeze = ID2SYM(rb_intern("freeze"));
|
1389
|
-
sym_on_load = ID2SYM(rb_intern("on_load"));
|
1390
|
-
sym_decimal_class = ID2SYM(rb_intern("decimal_class"));
|
1391
|
-
|
1392
|
-
i_chr = rb_intern("chr");
|
1393
|
-
i_aset = rb_intern("[]=");
|
1394
|
-
i_aref = rb_intern("[]");
|
1395
|
-
i_leftshift = rb_intern("<<");
|
1396
|
-
i_new = rb_intern("new");
|
1397
|
-
i_try_convert = rb_intern("try_convert");
|
1398
|
-
i_uminus = rb_intern("-@");
|
1399
|
-
i_encode = rb_intern("encode");
|
1400
|
-
|
1401
|
-
binary_encindex = rb_ascii8bit_encindex();
|
1402
|
-
utf8_encindex = rb_utf8_encindex();
|
1403
|
-
enc_utf8 = rb_utf8_encoding();
|
1404
|
-
}
|