localizable_model 0.6.7 → 0.6.8
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/lib/localizable_model/active_record_extension.rb +3 -2
- data/lib/localizable_model/localizer.rb +7 -5
- data/lib/localizable_model/version.rb +1 -1
- data/vendor/bundle/ruby/4.0.0/cache/action_text-trix-2.1.19.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/concurrent-ruby-1.3.7.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/factory_bot-6.6.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/i18n-1.15.2.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/json-2.19.9.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/marcel-1.2.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/minitest-6.0.6.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/net-imap-0.6.4.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/nokogiri-1.19.4-x86_64-linux-gnu.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/pp-0.6.4.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/psych-5.4.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-1.88.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-rails-2.35.5.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-rspec-3.10.2.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/shoulda-matchers-8.0.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/websocket-driver-0.8.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/zeitwerk-2.8.2.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/gem_make.out +26 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.9/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.4.0/gem_make.out +29 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.4.0/psych.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.1/gem_make.out +26 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.1/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.19/app/assets/javascripts/trix.js +14001 -0
- data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.19/lib/action_text/trix/version.rb +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/CHANGELOG.md +615 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/Rakefile +343 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +140 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +142 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +268 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +386 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +66 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.7/lib/concurrent-ruby/concurrent/version.rb +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/GETTING_STARTED.md +2203 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/NEWS.md +607 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/README.md +99 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/definition_proxy.rb +269 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/factory_runner.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/linter.rb +121 -0
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.6.0/lib/factory_bot/version.rb +3 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/README.md +139 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/fallbacks.rb +127 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/simple.rb +113 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/backend/transliterator.rb +109 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/config.rb +199 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/middleware.rb +21 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.15.2/lib/i18n.rb +507 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/CHANGES.md +788 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/README.md +310 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/fbuffer/fbuffer.h +259 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/generator/generator.c +1993 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/ext/json/ext/parser/parser.c +1757 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/truffle_ruby/generator.rb +755 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.9/lib/json/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/magic.rb +156 -0
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/mime_type/definitions.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/tables.rb +2958 -0
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.2.1/lib/marcel/version.rb +5 -0
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/History.rdoc +1860 -0
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/lib/minitest/assertions.rb +821 -0
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.6/lib/minitest.rb +1232 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/command_data.rb +450 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/config.rb +674 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/data_encoding.rb +314 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/response_parser.rb +2297 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap/response_reader.rb +87 -0
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4.1/lib/net/imap.rb +4004 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/nokogiri.c +297 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/nokogiri.h +247 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_attr.c +108 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_document.c +796 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_node.c +2523 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_node_set.c +518 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xml_xpath_context.c +496 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +457 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/4.0/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +155 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +57 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +6 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/version/info.rb +234 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/document.rb +515 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/node.rb +1701 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +217 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +258 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +54 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.4-x86_64-linux-gnu/lib/nokogiri/xslt.rb +138 -0
- data/vendor/bundle/ruby/4.0.0/gems/pp-0.6.4/lib/pp.rb +738 -0
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/README.md +90 -0
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/ext/psych/psych_parser.c +575 -0
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/lib/psych/versions.rb +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.4.0/lib/psych.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/config/default.yml +6240 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/config/obsoletion.yml +272 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/auto_generate_config.rb +199 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/list_enabled_cops_for.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/show_docs_url.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli/command/suggest_extensions.rb +132 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cli.rb +249 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/comment_config.rb +258 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_loader.rb +284 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_loader_resolver.rb +322 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/config_store.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/autocorrect_logic.rb +164 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/base.rb +568 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +109 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors/parentheses_corrector.rb +120 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/correctors.rb +28 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/exclude_limit.rb +52 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/duplicated_assignment.rb +111 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/require_mfa.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +62 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +75 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/begin_end_alignment.rb +73 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/block_alignment.rb +296 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/class_structure.rb +388 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +233 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/end_alignment.rb +217 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/indentation_width.rb +505 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +132 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +453 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/redundant_line_break.rb +136 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/layout/space_before_brackets.rb +40 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_assignment.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_block_association.rb +105 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +102 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/circular_argument_reference.rb +104 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +52 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_reassignment.rb +230 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/debugger.rb +143 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/deprecated_constants.rb +82 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/empty_block.rb +94 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ensure_return.rb +69 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/erb_new_arguments.rb +164 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/float_comparison.rb +137 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/interpolation_check.rb +84 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/literal_in_interpolation.rb +207 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +120 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +73 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/non_deterministic_require_order.rb +185 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +86 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/number_conversion.rb +209 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +97 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/ordered_magic_comments.rb +81 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/raise_exception.rb +110 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/rand_one.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +347 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +129 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +73 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_safe_navigation.rb +283 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_splat_expansion.rb +220 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_type_conversion.rb +268 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_with_index.rb +87 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/redundant_with_object.rb +87 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/refinement_import_methods.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/regexp_as_condition.rb +44 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_parentheses.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_range_parentheses.rb +58 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/require_relative_self_path.rb +52 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/rescue_type.rb +82 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +134 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/script_permission.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/self_assignment.rb +171 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shadowed_exception.rb +165 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +130 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/shared_mutable_default.rb +78 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +123 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/symbol_conversion.rb +201 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/to_enum_arguments.rb +126 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/top_level_return_with_argument.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +59 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +90 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/unreachable_code.rb +146 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_assignment.rb +242 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +131 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_setter_call.rb +161 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/useless_times.rb +135 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +147 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/block_length.rb +88 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/collection_literal_length.rb +83 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/method_length.rb +80 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin/configurable_max.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin/project_index_help.rb +48 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/mixin.rb +86 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +294 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/predicate_method.rb +330 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +172 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/offense.rb +254 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/registry.rb +342 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/security/io_methods.rb +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/alias.rb +170 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/and_or.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_first_last.rb +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_intersect.rb +199 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/array_intersect_with_single_element.rb +50 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/block_delimiters.rb +510 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/case_equality.rb +122 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/character_literal.rb +57 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_and_module_children.rb +244 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_equality_comparison.rb +142 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/class_methods_definitions.rb +164 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/colon_method_call.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/combinable_loops.rb +136 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/comparable_clamp.rb +136 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/concat_array_literals.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/conditional_assignment.rb +671 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/constant_visibility.rb +105 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/copyright.rb +120 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/date_time.rb +94 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/dig_chain.rb +94 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +174 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/fetch_env_var.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/file_write.rb +138 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/format_string.rb +155 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_conversion.rb +151 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_lookup_method.rb +106 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/hash_slice.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/if_inside_else.rb +161 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/if_unless_modifier.rb +362 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/min_max_comparison.rb +91 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/module_member_existence_check.rb +110 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/mutable_constant.rb +340 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/parallel_assignment.rb +313 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/reduce_to_hash.rb +200 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_format.rb +284 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/redundant_self.rb +215 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/regexp_literal.rb +260 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/rescue_modifier.rb +112 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/self_assignment.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/semicolon.rb +205 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/sole_nested_conditional.rb +246 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/struct_inheritance.rb +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/symbol_proc.rb +283 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/top_level_method_definition.rb +86 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/while_until_do.rb +54 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/while_until_modifier.rb +67 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/word_array.rb +156 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/yoda_condition.rb +185 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/style/zero_length_predicate.rb +157 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/cop/team.rb +341 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/file_patterns.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/formatter/disabled_config_formatter.rb +307 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/lsp/runtime.rb +78 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/options.rb +693 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/project_index_loader.rb +66 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/rspec/shared_contexts.rb +305 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/runner.rb +600 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/server/core.rb +124 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/target_finder.rb +228 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop/version.rb +178 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.88.0/lib/rubocop.rb +756 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/config/default.yml +1349 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/mixin/database_type_resolvable.rb +66 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/mixin/target_rails_version.rb +31 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/action_filter.rb +110 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/env.rb +70 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/i18n_locale_texts.rb +136 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/not_null_column.rb +167 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/presence.rb +208 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/rake_environment.rb +128 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/redundant_active_record_all_method.rb +190 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/response_parsed_body.rb +108 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/save_bang.rb +359 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/select_map.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/strong_parameters_expect.rb +214 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/cop/rails/unknown_env.rb +125 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.35.5/lib/rubocop/rails/version.rb +14 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/CHANGELOG.md +1136 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/config/default.yml +1067 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/around_block.rb +117 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/contain_exactly.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/context_method.rb +57 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/context_wording.rb +128 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/described_class.rb +246 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/discarded_matcher.rb +113 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_example_group.rb +190 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_hook.rb +49 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_example.rb +82 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_example_group.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_final_let.rb +45 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_hook.rb +83 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/empty_line_after_subject.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_length.rb +76 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_without_description.rb +98 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/example_wording.rb +168 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_actual.rb +125 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_change.rb +135 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_in_hook.rb +51 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/expect_in_let.rb +42 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/hook_argument.rb +135 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/hooks_before_examples.rb +82 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/indexed_let.rb +115 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/instance_spy.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/iterated_expectation.rb +109 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/leading_subject.rb +86 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/let_before_examples.rb +101 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/let_setup.rb +104 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/match_with_simple_regex.rb +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/missing_example_group_argument.rb +35 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/inside_example.rb +16 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/metadata.rb +61 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/mixin/repeated_items.rb +36 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_expectations.rb +149 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_memoized_helpers.rb +147 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/multiple_subjects.rb +97 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/named_subject.rb +156 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/no_expectation_example.rb +103 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/overwriting_setup.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/predicate_matcher.rb +349 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/redundant_around.rb +66 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_description.rb +98 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example.rb +74 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example_group_body.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_example_group_description.rb +92 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/repeated_include_example.rb +102 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/return_from_stub.rb +170 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/scattered_let.rb +65 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/scattered_setup.rb +108 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/shared_context.rb +147 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/skip_block_inside_example.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/spec_file_path_format.rb +191 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/subject_declaration.rb +62 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/undescriptive_literals_description.rb +69 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/void_expect.rb +63 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec/yield.rb +82 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/cop/rspec_cops.rb +117 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/rspec/description_extractor.rb +77 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop/rspec/version.rb +10 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.10.2/lib/rubocop-rspec.rb +53 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/README.md +567 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +145 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/allow_value_matcher.rb +695 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/helpers.rb +37 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +180 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +128 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb +567 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +185 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +272 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +664 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +575 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +711 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +428 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validation_matcher.rb +195 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_model/validator.rb +127 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matcher.rb +2134 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +71 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +76 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +784 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/have_attached_matcher.rb +343 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +95 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/uniqueness/namespace.rb +39 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +55 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +1197 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/matcher_collection.rb +99 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/rails_shim.rb +190 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers/version.rb +6 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/lib/shoulda/matchers.rb +25 -0
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-8.0.1/shoulda-matchers.gemspec +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/CHANGELOG.md +177 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/LICENSE.md +12 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/driver/draft75.rb +103 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/driver/hybi.rb +430 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket/http/headers.rb +115 -0
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.1/lib/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/README.md +1531 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/core_ext/kernel.rb +64 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/cref/map.rb +159 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/cref.rb +76 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/error.rb +34 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/gem_inflector.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/gem_loader.rb +68 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/inflector.rb +46 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/callbacks.rb +96 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/config.rb +420 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/constant_path_validator.rb +17 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/eager_load.rb +226 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/file_system.rb +212 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader/helpers.rb +43 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/loader.rb +683 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/registry/loaders.rb +33 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/registry.rb +89 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk/version.rb +6 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.8.2/lib/zeitwerk.rb +29 -0
- data/vendor/bundle/ruby/4.0.0/specifications/action_text-trix-2.1.19.gemspec +23 -0
- data/vendor/bundle/ruby/4.0.0/specifications/concurrent-ruby-1.3.7.gemspec +24 -0
- data/vendor/bundle/ruby/4.0.0/specifications/factory_bot-6.6.0.gemspec +37 -0
- data/vendor/bundle/ruby/4.0.0/specifications/i18n-1.15.2.gemspec +26 -0
- data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.9.gemspec +0 -0
- data/vendor/bundle/ruby/4.0.0/specifications/marcel-1.2.1.gemspec +29 -0
- data/vendor/bundle/ruby/4.0.0/specifications/minitest-6.0.6.gemspec +35 -0
- data/vendor/bundle/ruby/4.0.0/specifications/net-imap-0.6.4.1.gemspec +28 -0
- data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.4-x86_64-linux-gnu.gemspec +31 -0
- data/vendor/bundle/ruby/4.0.0/specifications/pp-0.6.4.gemspec +27 -0
- data/vendor/bundle/ruby/4.0.0/specifications/psych-5.4.0.gemspec +32 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.88.0.gemspec +39 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rails-2.35.5.gemspec +32 -0
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rspec-3.10.2.gemspec +30 -0
- data/vendor/bundle/ruby/4.0.0/specifications/shoulda-matchers-8.0.1.gemspec +27 -0
- data/vendor/bundle/ruby/4.0.0/specifications/websocket-driver-0.8.1.gemspec +34 -0
- data/vendor/bundle/ruby/4.0.0/specifications/zeitwerk-2.8.2.gemspec +22 -0
- metadata +2142 -2131
- data/vendor/bundle/ruby/4.0.0/cache/action_text-trix-2.1.18.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/concurrent-ruby-1.3.6.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/factory_bot-6.5.6.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/i18n-1.14.8.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/json-2.19.4.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/marcel-1.1.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/minitest-6.0.5.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/net-imap-0.6.4.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/nokogiri-1.19.2-x86_64-linux-gnu.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/pp-0.6.3.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/psych-5.3.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-1.86.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-rails-2.34.3.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/rubocop-rspec-3.9.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/shoulda-matchers-7.0.1.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/websocket-driver-0.8.0.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/cache/zeitwerk-2.7.5.gem +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/gem_make.out +0 -26
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/json-2.19.4/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/gem_make.out +0 -29
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/psych-5.3.1/psych.so +0 -0
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.0/gem_make.out +0 -26
- data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.18/app/assets/javascripts/trix.js +0 -13886
- data/vendor/bundle/ruby/4.0.0/gems/action_text-trix-2.1.18/lib/action_text/trix/version.rb +0 -3
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/CHANGELOG.md +0 -609
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/Rakefile +0 -344
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +0 -175
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +0 -135
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +0 -255
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +0 -379
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +0 -67
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +0 -28
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/concurrent-ruby-1.3.6/lib/concurrent-ruby/concurrent/version.rb +0 -3
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/GETTING_STARTED.md +0 -2183
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/NEWS.md +0 -593
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/README.md +0 -101
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/definition_proxy.rb +0 -269
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/factory_runner.rb +0 -33
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/linter.rb +0 -121
- data/vendor/bundle/ruby/4.0.0/gems/factory_bot-6.5.6/lib/factory_bot/version.rb +0 -3
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/README.md +0 -127
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/fallbacks.rb +0 -119
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/simple.rb +0 -113
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/backend/transliterator.rb +0 -108
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/config.rb +0 -165
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/middleware.rb +0 -17
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/i18n-1.14.8/lib/i18n.rb +0 -478
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/CHANGES.md +0 -762
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/README.md +0 -299
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/fbuffer/fbuffer.h +0 -251
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/generator/generator.c +0 -1978
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/ext/json/ext/parser/parser.c +0 -1709
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/truffle_ruby/generator.rb +0 -752
- data/vendor/bundle/ruby/4.0.0/gems/json-2.19.4/lib/json/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/magic.rb +0 -148
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/mime_type/definitions.rb +0 -72
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/tables.rb +0 -2962
- data/vendor/bundle/ruby/4.0.0/gems/marcel-1.1.0/lib/marcel/version.rb +0 -5
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/History.rdoc +0 -1846
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/lib/minitest/assertions.rb +0 -826
- data/vendor/bundle/ruby/4.0.0/gems/minitest-6.0.5/lib/minitest.rb +0 -1232
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/command_data.rb +0 -410
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/config.rb +0 -674
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/data_encoding.rb +0 -313
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/response_parser.rb +0 -2297
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap/response_reader.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/net-imap-0.6.4/lib/net/imap.rb +0 -3976
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/nokogiri.c +0 -294
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/nokogiri.h +0 -238
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_attr.c +0 -103
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_document.c +0 -788
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_node.c +0 -2459
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_node_set.c +0 -518
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xml_xpath_context.c +0 -486
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/ext/nokogiri/xslt_stylesheet.c +0 -421
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.2/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.3/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/3.4/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/4.0/nokogiri.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rb +0 -155
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/css/tokenizer.rex +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/constant.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/version/info.rb +0 -224
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/document.rb +0 -514
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/node.rb +0 -1650
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/parse_options.rb +0 -213
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xml/sax/document.rb +0 -258
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xslt/stylesheet.rb +0 -49
- data/vendor/bundle/ruby/4.0.0/gems/nokogiri-1.19.2-x86_64-linux-gnu/lib/nokogiri/xslt.rb +0 -129
- data/vendor/bundle/ruby/4.0.0/gems/pp-0.6.3/lib/pp.rb +0 -738
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/README.md +0 -90
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/ext/psych/psych_parser.c +0 -564
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/lib/psych/versions.rb +0 -10
- data/vendor/bundle/ruby/4.0.0/gems/psych-5.3.1/lib/psych.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/config/default.yml +0 -6222
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/config/obsoletion.yml +0 -252
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/auto_generate_config.rb +0 -167
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/show_docs_url.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli/command/suggest_extensions.rb +0 -132
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cli.rb +0 -250
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/comment_config.rb +0 -261
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_loader.rb +0 -269
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_loader_resolver.rb +0 -314
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/config_store.rb +0 -77
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/autocorrect_logic.rb +0 -163
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/base.rb +0 -547
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/bundler/gem_comment.rb +0 -171
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -113
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -89
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/exclude_limit.rb +0 -26
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -111
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/require_mfa.rb +0 -159
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -55
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -61
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -73
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -73
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/block_alignment.rb +0 -259
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/class_structure.rb +0 -388
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -224
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/end_alignment.rb +0 -217
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/indentation_width.rb +0 -493
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -132
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -428
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/redundant_line_break.rb +0 -134
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/layout/space_before_brackets.rb +0 -40
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -54
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -105
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -111
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -106
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -52
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_reassignment.rb +0 -198
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/constant_resolution.rb +0 -93
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/debugger.rb +0 -144
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/deprecated_constants.rb +0 -88
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/empty_block.rb +0 -94
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ensure_return.rb +0 -51
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -162
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -81
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/interpolation_check.rb +0 -69
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -51
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -85
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -210
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -120
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/multiple_comparison.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -185
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -86
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/number_conversion.rb +0 -200
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -94
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -81
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -87
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/raise_exception.rb +0 -110
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/rand_one.rb +0 -42
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -344
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -126
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -62
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -276
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -261
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_with_index.rb +0 -87
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/redundant_with_object.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -52
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -36
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_parentheses.rb +0 -62
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -50
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/rescue_type.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -133
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/script_permission.rb +0 -73
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/self_assignment.rb +0 -148
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -83
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shadowed_exception.rb +0 -165
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -116
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -76
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -111
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/symbol_conversion.rb +0 -184
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -99
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -56
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -88
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/unreachable_code.rb +0 -146
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_assignment.rb +0 -242
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -127
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_setter_call.rb +0 -158
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/useless_times.rb +0 -114
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -136
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/block_length.rb +0 -88
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -83
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/method_length.rb +0 -80
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -61
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/mixin/configurable_max.rb +0 -28
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -53
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -294
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/predicate_method.rb +0 -330
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -172
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/offense.rb +0 -246
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/registry.rb +0 -325
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/security/io_methods.rb +0 -49
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/alias.rb +0 -161
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/and_or.rb +0 -159
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_first_last.rb +0 -80
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_intersect.rb +0 -195
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -47
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/block_delimiters.rb +0 -496
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/case_equality.rb +0 -110
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/character_literal.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_and_module_children.rb +0 -236
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_equality_comparison.rb +0 -134
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/class_methods_definitions.rb +0 -158
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/colon_method_call.rb +0 -48
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/combinable_loops.rb +0 -131
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/comparable_clamp.rb +0 -125
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/concat_array_literals.rb +0 -97
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/conditional_assignment.rb +0 -666
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/constant_visibility.rb +0 -102
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/copyright.rb +0 -109
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/date_time.rb +0 -94
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/dig_chain.rb +0 -89
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -87
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -169
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/fetch_env_var.rb +0 -159
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/file_write.rb +0 -133
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/format_string.rb +0 -154
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_conversion.rb +0 -151
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_lookup_method.rb +0 -101
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/hash_slice.rb +0 -80
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/if_inside_else.rb +0 -148
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -362
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/magic_comment_format.rb +0 -307
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/min_max_comparison.rb +0 -91
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -107
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/mutable_constant.rb +0 -246
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/parallel_assignment.rb +0 -306
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/reduce_to_hash.rb +0 -184
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -77
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_constant_base.rb +0 -85
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_format.rb +0 -283
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/redundant_self.rb +0 -215
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/regexp_literal.rb +0 -231
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/rescue_modifier.rb +0 -112
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/self_assignment.rb +0 -95
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/semicolon.rb +0 -190
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -244
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/struct_inheritance.rb +0 -79
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/symbol_proc.rb +0 -283
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/top_level_method_definition.rb +0 -86
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/unless_logical_operators.rb +0 -106
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/while_until_do.rb +0 -47
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/while_until_modifier.rb +0 -51
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/word_array.rb +0 -155
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/yoda_condition.rb +0 -185
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/style/zero_length_predicate.rb +0 -154
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/cop/team.rb +0 -290
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/file_patterns.rb +0 -43
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/formatter/disabled_config_formatter.rb +0 -297
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/lsp/runtime.rb +0 -79
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/options.rb +0 -671
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/rspec/shared_contexts.rb +0 -284
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/runner.rb +0 -534
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/server/core.rb +0 -118
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/target_finder.rb +0 -221
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop/version.rb +0 -160
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-1.86.1/lib/rubocop.rb +0 -844
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/config/default.yml +0 -1349
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/mixin/database_type_resolvable.rb +0 -66
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/mixin/target_rails_version.rb +0 -41
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/action_filter.rb +0 -110
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/env.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/i18n_locale_texts.rb +0 -114
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/not_null_column.rb +0 -165
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/presence.rb +0 -201
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/rake_environment.rb +0 -128
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/redundant_active_record_all_method.rb +0 -190
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/response_parsed_body.rb +0 -99
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/save_bang.rb +0 -350
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/select_map.rb +0 -87
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/strong_parameters_expect.rb +0 -104
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/cop/rails/unknown_env.rb +0 -98
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rails-2.34.3/lib/rubocop/rails/version.rb +0 -14
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/CHANGELOG.md +0 -1110
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/config/default.yml +0 -1050
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/around_block.rb +0 -95
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/contain_exactly.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/context_method.rb +0 -57
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/context_wording.rb +0 -128
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/described_class.rb +0 -246
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_example_group.rb +0 -189
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_hook.rb +0 -49
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_example.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb +0 -42
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_final_let.rb +0 -40
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_hook.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/empty_line_after_subject.rb +0 -36
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_length.rb +0 -76
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_without_description.rb +0 -98
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/example_wording.rb +0 -168
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_actual.rb +0 -105
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_change.rb +0 -105
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_in_hook.rb +0 -50
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/expect_in_let.rb +0 -42
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/hook_argument.rb +0 -134
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/hooks_before_examples.rb +0 -81
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/indexed_let.rb +0 -115
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/instance_spy.rb +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/iterated_expectation.rb +0 -96
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/leading_subject.rb +0 -86
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/let_before_examples.rb +0 -101
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/let_setup.rb +0 -104
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/missing_example_group_argument.rb +0 -35
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/mixin/metadata.rb +0 -60
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_expectations.rb +0 -149
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_memoized_helpers.rb +0 -147
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/multiple_subjects.rb +0 -97
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/named_subject.rb +0 -156
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/no_expectation_example.rb +0 -102
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/overwriting_setup.rb +0 -74
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/predicate_matcher.rb +0 -349
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/redundant_around.rb +0 -65
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_description.rb +0 -98
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example.rb +0 -72
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example_group_body.rb +0 -100
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_example_group_description.rb +0 -96
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/repeated_include_example.rb +0 -105
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/return_from_stub.rb +0 -170
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/scattered_let.rb +0 -59
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/scattered_setup.rb +0 -110
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/shared_context.rb +0 -107
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/skip_block_inside_example.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/spec_file_path_format.rb +0 -183
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/subject_declaration.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/undescriptive_literals_description.rb +0 -69
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/void_expect.rb +0 -65
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec/yield.rb +0 -82
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/cop/rspec_cops.rb +0 -115
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/rspec/description_extractor.rb +0 -77
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop/rspec/version.rb +0 -10
- data/vendor/bundle/ruby/4.0.0/gems/rubocop-rspec-3.9.0/lib/rubocop-rspec.rb +0 -51
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/README.md +0 -562
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +0 -149
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/allow_value_matcher.rb +0 -695
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/helpers.rb +0 -35
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +0 -157
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +0 -105
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb +0 -532
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +0 -162
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +0 -249
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +0 -635
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +0 -552
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +0 -676
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +0 -402
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validation_matcher.rb +0 -199
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_model/validator.rb +0 -123
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matcher.rb +0 -2017
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +0 -73
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +0 -78
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +0 -778
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/have_attached_matcher.rb +0 -318
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +0 -71
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/uniqueness/namespace.rb +0 -37
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +0 -23
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +0 -1207
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/rails_shim.rb +0 -190
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers/version.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/lib/shoulda/matchers.rb +0 -24
- data/vendor/bundle/ruby/4.0.0/gems/shoulda-matchers-7.0.1/shoulda-matchers.gemspec +0 -42
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/CHANGELOG.md +0 -169
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/LICENSE.md +0 -12
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/driver/draft75.rb +0 -102
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/driver/hybi.rb +0 -426
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket/http/headers.rb +0 -112
- data/vendor/bundle/ruby/4.0.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/README.md +0 -1477
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/kernel.rb +0 -64
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref/map.rb +0 -159
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref.rb +0 -69
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/error.rb +0 -23
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_inflector.rb +0 -17
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_loader.rb +0 -68
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/inflector.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/callbacks.rb +0 -96
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/config.rb +0 -357
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/eager_load.rb +0 -230
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/file_system.rb +0 -165
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/helpers.rb +0 -46
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader.rb +0 -643
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/loaders.rb +0 -33
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry.rb +0 -89
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk/version.rb +0 -6
- data/vendor/bundle/ruby/4.0.0/gems/zeitwerk-2.7.5/lib/zeitwerk.rb +0 -29
- data/vendor/bundle/ruby/4.0.0/specifications/action_text-trix-2.1.18.gemspec +0 -23
- data/vendor/bundle/ruby/4.0.0/specifications/concurrent-ruby-1.3.6.gemspec +0 -24
- data/vendor/bundle/ruby/4.0.0/specifications/factory_bot-6.5.6.gemspec +0 -37
- data/vendor/bundle/ruby/4.0.0/specifications/i18n-1.14.8.gemspec +0 -26
- data/vendor/bundle/ruby/4.0.0/specifications/json-2.19.4.gemspec +0 -0
- data/vendor/bundle/ruby/4.0.0/specifications/marcel-1.1.0.gemspec +0 -29
- data/vendor/bundle/ruby/4.0.0/specifications/minitest-6.0.5.gemspec +0 -35
- data/vendor/bundle/ruby/4.0.0/specifications/net-imap-0.6.4.gemspec +0 -28
- data/vendor/bundle/ruby/4.0.0/specifications/nokogiri-1.19.2-x86_64-linux-gnu.gemspec +0 -31
- data/vendor/bundle/ruby/4.0.0/specifications/pp-0.6.3.gemspec +0 -27
- data/vendor/bundle/ruby/4.0.0/specifications/psych-5.3.1.gemspec +0 -32
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-1.86.1.gemspec +0 -39
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rails-2.34.3.gemspec +0 -32
- data/vendor/bundle/ruby/4.0.0/specifications/rubocop-rspec-3.9.0.gemspec +0 -29
- data/vendor/bundle/ruby/4.0.0/specifications/shoulda-matchers-7.0.1.gemspec +0 -27
- data/vendor/bundle/ruby/4.0.0/specifications/websocket-driver-0.8.0.gemspec +0 -34
- data/vendor/bundle/ruby/4.0.0/specifications/zeitwerk-2.7.5.gemspec +0 -22
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.4 → json-2.19.9}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{json-2.19.4 → json-2.19.9}/mkmf.log +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{psych-5.3.1 → psych-5.4.0}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{psych-5.3.1 → psych-5.4.0}/mkmf.log +0 -0
- /data/vendor/bundle/ruby/4.0.0/extensions/x86_64-linux/4.0.0/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/app/assets/stylesheets/trix.css +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/lib/action_text/trix/engine.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{action_text-trix-2.1.18 → action_text-trix-2.1.19}/lib/action_text/trix.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/Gemfile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/ConcurrentRubyService.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/agent.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/async.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atom.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/event.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/fiber_local_var.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/locals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomic_reference/atomic_direct_update.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/atomics.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/ruby_timeout_queue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/collection/timeout_queue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/deprecation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/logging.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/obligation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/concern/observable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/configuration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/constants.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/dataflow.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/delay.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/exchanger.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executor/timer_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/executors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/future.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/immutable_struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/ivar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/map.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/maybe.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/mutable_struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/mvar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/promise.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/promises.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/re_include.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/scheduled_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/settable_struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/full_memory_barrier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/lock.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/safe_initialization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/synchronization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/thread_safe/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/timer_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/tuple.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/tvar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/engine.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/native_integer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent-ruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{concurrent-ruby-1.3.6 → concurrent-ruby-1.3.7}/lib/concurrent-ruby/concurrent.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/CONTRIBUTING.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/NAME.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/aliases.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/association.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/dynamic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute/sequence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute_assigner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/attribute_list.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/callback.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/callbacks_observer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/configuration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/association.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/dynamic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration/implicit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/declaration_list.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/attribute_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/disallows_duplicates_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/invocation_tracker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator/new_constructor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/decorator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/definition_hierarchy.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/enum.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/evaluator_class_definer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/factory.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/find_definitions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/internal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/null_factory.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/null_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/reload.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/sequence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/attributes_for.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/build.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/create.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/null.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy/stub.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/strategy_syntax_method_registrar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax/default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax/methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/syntax_runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/trait.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot/uri_manager.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{factory_bot-6.5.6 → factory_bot-6.6.0}/lib/factory_bot.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/MIT-LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cache_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/cascade.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/flatten.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/gettext.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/interpolation_compiler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/key_value.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/lazy_loadable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/memoize.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/metadata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend/pluralization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/backend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/exceptions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext/helpers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext/po_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/gettext.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/interpolate/ruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/fallbacks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/parents.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/rfc4646.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag/simple.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale/tag.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/locale.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/basics.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/defaults.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/link.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/date.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/date_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/procs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization/time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/localization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/lookup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/pluralization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests/procs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/tests.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{i18n-1.14.8 → i18n-1.15.2}/lib/i18n/utils.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/BSDL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/COPYING +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/LEGAL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/generator/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/generator/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/json.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/parser/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/parser/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/simd/conf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/simd/simd.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/fpconv.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/ext/json/ext/vendor/ryu.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/json.gemspec +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/bigdecimal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/complex.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/core.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/date.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/date_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/ostruct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/rational.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/struct.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/symbol.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/add/time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/common.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/ext/generator/state.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/ext.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json/generic_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{json-2.19.4 → json-2.19.9}/lib/json.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/APACHE-LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/MIT-LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/lib/marcel/mime_type.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{marcel-1.1.0 → marcel-1.2.1}/lib/marcel.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/Manifest.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/README.rdoc +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/Rakefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/bin/minitest +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/design_rationale.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/hoe/minitest.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/autorun.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/benchmark.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/bisect.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/complete.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/compress.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/error_on_warning.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/expectations.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/find_minimal_combination.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/hell.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/manual_plugins.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/parallel.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/path_expander.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/pride.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/pride_plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/server_plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/spec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/sprint.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/sprint_plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/test.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/lib/minitest/test_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/metametameta.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_bisect.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_find_minimal_combination.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_assertions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_benchmark.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_reporter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_spec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_test.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_minitest_test_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_path_expander.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{minitest-6.0.5 → minitest-6.0.6}/test/minitest/test_server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/BSDL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/COPYING +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/Gemfile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/Rakefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/docs/styles.css +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/authenticators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_accessors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_type_coercion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/config/attr_version_defaults.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/connection_state.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/deprecated_client_options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/esearch_result.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/fetch_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/flags.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/response_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/response_parser/parser_utils.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/anonymous_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/authentication_exchange.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/authenticators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/client_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/cram_md5_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/digest_md5_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/external_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/gs2_header.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/login_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/oauthbearer_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/plain_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/protocol_adapters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/scram_algorithm.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/scram_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/stringprep.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl/xoauth2_authenticator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sasl_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/search_result.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/sequence_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/nameprep.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/saslprep.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/saslprep_tables.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/tables.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep/trace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/stringprep.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/uidplus_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/lib/net/imap/vanished_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/net-imap.gemspec +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/benchmarks.rake +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/rdoc.rake +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/rfcs.rake +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/saslprep.rake +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/rakelib/string_prep_tables_generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{net-imap-0.6.4 → net-imap-0.6.4.1}/sample/net-imap.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/Gemfile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/LICENSE-DEPENDENCIES.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/bin/nokogiri +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/dependencies.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/depend +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/gumbo.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_document.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_element_description.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_entity_lookup.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_parser_context.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/html4_sax_push_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exslt.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltconfig.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libexslt/exsltexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/SAX2.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/c14n.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/catalog.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/chvalid.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/debugXML.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/dict.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/encoding.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/entities.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/globals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/hash.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/list.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanoftp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/nanohttp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parser.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/parserInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/pattern.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/relaxng.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/schematron.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/threads.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/tree.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/uri.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/valid.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xinclude.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xlink.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlIO.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlerror.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlreader.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlsave.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlstring.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlversion.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpath.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxml2/libxml/xpointer.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/attributes.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/documents.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extensions.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/extra.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/functions.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/imports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/keys.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/namespaces.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/numbersInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/pattern.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/preproc.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/security.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/templates.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/transform.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/variables.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xslt.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltInternals.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltconfig.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltexports.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltlocale.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/include/libxslt/xsltutils.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/libxml2_polyfill.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/test_global_handlers.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_attribute_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_cdata.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_comment.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_document_fragment.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_dtd.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_element_content.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_element_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_encoding_handler.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_entity_decl.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_entity_reference.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_namespace.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_processing_instruction.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_reader.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_relax_ng.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_parser_context.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_sax_push_parser.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_schema.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_syntax_error.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/ext/nokogiri/xml_text.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/CHANGES.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/gumbo-parser/THANKS +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/class_resolver.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser.y +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/parser_extras.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/selector_cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css/xpath_visitor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/css.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/decorators/slop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/encoding_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/extension.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/gumbo.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/element_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/element_description_defaults.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/encoding_reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/entity_lookup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/parser_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4/sax/push_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html4.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/html5.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/jruby/dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/jruby/nokogiri_jars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/attr.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/attribute_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/cdata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/character_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/document_fragment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/dtd.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/element_content.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/element_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/entity_decl.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/entity_reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/namespace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/node/save_options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/node_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/notation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp/character_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/pp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/processing_instruction.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/relax_ng.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/parser_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax/push_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/sax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/schema.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/searchable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/text.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml/xpath_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri/xml.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/nokogiri.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{nokogiri-1.19.2-x86_64-linux-gnu → nokogiri-1.19.4-x86_64-linux-gnu}/lib/xsd/xmlparser/nokogiri.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/BSDL +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/COPYING +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{pp-0.6.3 → pp-0.6.4}/pp.gemspec +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/CONTRIBUTING.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/depend +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_emitter.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_emitter.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_parser.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_to_ruby.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_to_ruby.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_yaml_tree.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/ext/psych/psych_yaml_tree.h +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/class_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/coder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/core_ext.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handlers/document_stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/handlers/recorder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/ruby_events.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/tree_builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/json/yaml_events.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/alias.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/document.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/mapping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/scalar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/sequence.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes/stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/nodes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/omap.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/scalar_scanner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/streaming.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/tree_builder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/depth_first.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/emitter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/json_tree.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/to_ruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/visitor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors/yaml_tree.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/visitors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych/y.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{psych-5.3.1 → psych-5.4.0}/lib/psych.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/logo.png +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/output.css.erb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/assets/output.html.erb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/config/internal_affairs.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/exe/rubocop +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/arguments_env.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/arguments_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ast_aliases.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cache_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cached_data.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/execute_runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/lsp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/mcp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/show_cops.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command/version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cli/environment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_finder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/rule.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_obsoletion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_regeneration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/config_validator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/badge.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/gem_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/commissioner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/cop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/documentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/force.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/ignored_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/itblock_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/internal_affairs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/case_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/condition_position.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/dot_position.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/line_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/legacy/corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/data_define_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/else_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/empty_when.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/literal_as_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/missing_super.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/struct_new_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/to_json.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unreachable_pattern_branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_or.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/lint/void.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/message_annotator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/class_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/module_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/migration/department_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/code_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/def_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/duplication.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_transform_method/autocorrection.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/match_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/range_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/require_library.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/string_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/constant_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/file_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/naming/variable_number.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/compound_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/eval.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/json_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/marshal_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/open.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/security/yaml_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/severity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/array_coercion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/array_join.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/attr.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/begin_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/block_comments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/case_like_if.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/class_vars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_compact.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/collection_querying.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/command_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/comparable_between.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/dir.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/dir_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/documentation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/documentation_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/double_negation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/each_with_object.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_class_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/encoding.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/endless_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/env_home.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/even_odd.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_null.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_open.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_read.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/file_touch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/float_division.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/for.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/format_string_token.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/global_vars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/guard_clause.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_except.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/inline_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/it_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/lambda.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/lambda_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_into_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_join.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/map_to_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/method_def_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/min_max.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/missing_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/module_function.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_if_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_if.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_unless.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negated_while.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/negative_array_index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/next.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/object_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/one_class_per_file.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/option_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/or_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/partition_instead_of_double_select.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/predicate_with_kind.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/proc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/raise_args.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_condition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_each.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_min_max_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_return.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/redundant_struct_keyword_init.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/require_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/return_nil.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/reverse_find.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/sample.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_kind.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/send.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/signal_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/static_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_chars.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_literals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/string_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/strip.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/super_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/swap_values.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/tally_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/unless_else.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/unpack_first.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/when_then.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/utils/format_string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/branch.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/scope.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cop/variable_force.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/cops_documentation_generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/core_ext/string.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/directive_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/processed_source.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/regexp_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/ext/regexp_parser.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/feature_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/file_finder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/base_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/clang_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/colorizable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/formatter_set.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/html_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/json_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/junit_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/tap_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/text_util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lockfile.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/disable_comment_edits.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/logger.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/routes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/severity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp/stdin_runner.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/lsp.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/mcp/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/name_similarity.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/path_util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/pending_cops_reporter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/platform.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/load_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin/not_supported_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rake_task.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/remote_config.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/result_cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/cop_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/expect_offense.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/rspec/support.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/cache.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/cli.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/restart.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/start.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/status.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/client_command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/server_command.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server/socket_reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/string_interpreter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/target_ruby.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/warning.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/rubocop/yaml_duplication_checker.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/ruby_lsp/rubocop/addon.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-1.86.1 → rubocop-1.88.0}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/config/obsoletion.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/active_record_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/active_record_migrations_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/class_send_node_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/index_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/migrations_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/mixin/routes_helper.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_controller_flash_before_render.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_controller_test_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/action_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_aliases.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_callbacks_order.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_record_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_support_aliases.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/active_support_on_load.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/add_column_index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/after_commit_override.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_controller.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_job.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_mailer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/application_record.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/arel_star.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/assert_not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/attribute_default_block_value.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/belongs_to.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/bulk_change_table.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/compact_blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/content_tag.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dangerous_column_names.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/date.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/default_scope.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/delegate.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/deprecated_active_model_errors_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dot_separated_keys.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duplicate_association.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duplicate_scope.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/duration_arithmetic.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/eager_evaluation_log_message.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_hash.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_syntax.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/env_local.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/environment_comparison.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/environment_variable_access.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/exit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/expanded_date_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/file_path.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by_id.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_by_or_assignment_memoization.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/find_each.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/freeze_time.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/helper_instance_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_status.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/http_status_name_consistency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/i18n_lazy_lookup.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/i18n_locale_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/ignored_columns_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/index_by.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/index_with.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/inquiry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/inverse_of.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/link_to_blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/mailer_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/match_route.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/migration_class_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/multiple_route_paths.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/negate_include.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/order_arguments.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/order_by_id.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/output.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/output_safety.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pick.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck_id.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluck_in_where.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/present.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/read_write_attribute.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redirect_back_or_to.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_allow_nil.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_foreign_key.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_presence_validation_on_belongs_to.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/redundant_travel_back.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reflection_class_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/refute_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/relative_date_constant.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/render_inline.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/render_plain_text.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/request_referer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/require_dependency.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reversible_migration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/reversible_migration_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_join_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_pathname_methods.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/root_public_path.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/safe_navigation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/safe_navigation_with_blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/schema_comment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/scope_args.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/short_i18n.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/skips_model_validations.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/squished_sql_heredocs.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/strip_heredoc.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/table_name_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/three_state_boolean_column.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/time_zone.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/time_zone_assignment.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/to_formatted_s.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/to_s_with_argument.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/top_level_hash_with_indifferent_access.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/transaction_exit_statement.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unique_validation_without_index.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unused_ignored_columns.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/unused_render_content.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/validation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_equals.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_exists.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_missing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_not_with_multiple_conditions.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails/where_range.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/cop/rails_cops.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/migration_file_skippable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/schema_loader/schema.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails/schema_loader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop/rails.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rails-2.34.3 → rubocop-rails-2.35.5}/lib/rubocop-rails.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/CODE_OF_CONDUCT.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/MIT-LICENSE.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/config/obsoletion.yml +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/align_left_let_brace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/align_right_let_brace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/any_instance.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/base.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_empty.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_eq.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_eql.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/be_nil.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/before_after_all.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/change_by_zero.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/class_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_class.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/describe_symbol.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/described_class_module_wrapping.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/dialect.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/duplicated_metadata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/empty_metadata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/empty_output.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/eq.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/excessive_docstring_spacing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/expect_output.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/focus.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/identical_equality_assertion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_block_expectation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_expect.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/implicit_subject.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/include_examples.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/instance_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/is_expected_specify.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/it_behaves_like.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/leaky_constant_declaration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/leaky_local_variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/match_array.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_expectation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/message_spies.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/metadata_style.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/missing_expectation_target_method.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/comments_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/empty_line_separation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/file_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/final_end_location.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/inside_example_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/location_help.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/namespace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/skip_or_pending.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/top_level_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/mixin/variable.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/multiple_describes.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/nested_groups.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/not_to_not.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/output.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/pending.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/pending_without_reason.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_counts.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_messages.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/receive_never.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/redundant_predicate_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/remove_const.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/repeated_subject_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/shared_examples.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/single_argument_message_chain.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/sort_metadata.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/spec_file_path_suffix.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/stubbed_mock.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/subject_stub.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/unspecified_exception.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/variable_definition.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/variable_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/verified_double_reference.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/cop/rspec/verified_doubles.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/align_let_brace.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/concept.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/config_formatter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/cop/generator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/corrector/move_node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/example.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/example_group.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/hook.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/language.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/node.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/plugin.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/shared_contexts/default_rspec_language_config_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec/wording.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{rubocop-rspec-3.9.0 → rubocop-rspec-3.10.2}/lib/rubocop/rspec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/docs/errors/NonCaseSwappableValueError.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/callback_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/flash_store.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/permit_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/render_template_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/route_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/route_params.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/session_store.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_session_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller/set_session_or_flash_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/action_controller.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_changed_value_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_does_not_exist_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter_and_validator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters_and_validators.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/successful_check.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/allow_value_matcher/successful_setting.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/comparison_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/errors.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/range_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers/submatchers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/numericality_matchers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/allow_blank.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/allow_nil.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/ignore_interference_by_writer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers/ignoring_interference_by_writer.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/qualifiers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model/validation_message_finder.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_model.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/association_matchers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/encrypt_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_implicit_order_column.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_rich_text_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/normalize_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/serialize_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness/model.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness/test_model_creator.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record/uniqueness.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/active_record.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/configuration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double_collection.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/method_call.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/object_double.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/stub_implementation.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak/world.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/doublespeak.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent/delegate_method_matcher/target_not_defined_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent/delegate_method_matcher.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/independent.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/configuration.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/configuration_error.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/inclusion.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/action_controller.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/active_model.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/active_record.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/missing_library.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/rails.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries/routing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/libraries.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/rails.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/registry.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/rspec.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations/test_frameworks.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/integrations.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/matcher_context.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/routing.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/util/word_wrap.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/util.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda/matchers/warn.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{shoulda-matchers-7.0.1 → shoulda-matchers-8.0.1}/lib/shoulda-matchers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/README.md +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/Makefile +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/WebsocketMaskService.java +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/extconf.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/ext/websocket-driver/websocket_mask.c +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/client.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/draft76.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/event_emitter.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/headers.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/hybi/frame.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/hybi/message.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/proxy.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/server.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver/stream_reader.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/driver.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http/request.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http/response.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/http.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/mask.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{websocket-driver-0.8.0 → websocket-driver-0.8.1}/lib/websocket/websocket_mask.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/MIT-LICENSE +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/core_ext/module.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/internal.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/null_inflector.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/real_mod_name.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/autoloads.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/explicit_namespaces.rb +0 -0
- /data/vendor/bundle/ruby/4.0.0/gems/{zeitwerk-2.7.5 → zeitwerk-2.8.2}/lib/zeitwerk/registry/inceptions.rb +0 -0
|
@@ -1,1349 +0,0 @@
|
|
|
1
|
-
# Common configuration.
|
|
2
|
-
|
|
3
|
-
inherit_mode:
|
|
4
|
-
merge:
|
|
5
|
-
- Exclude
|
|
6
|
-
|
|
7
|
-
AllCops:
|
|
8
|
-
Exclude:
|
|
9
|
-
- '**/app/assets/**/*'
|
|
10
|
-
- bin/*
|
|
11
|
-
# Exclude db/schema.rb and db/[CONFIGURATION_NAMESPACE]_schema.rb by default.
|
|
12
|
-
# See: https://guides.rubyonrails.org/active_record_multiple_databases.html#setting-up-your-application
|
|
13
|
-
- db/*schema.rb
|
|
14
|
-
- log/**/*
|
|
15
|
-
- public/**/*
|
|
16
|
-
- storage/**/*
|
|
17
|
-
# Enable checking Active Support extensions.
|
|
18
|
-
# See: https://docs.rubocop.org/rubocop/configuration.html#enable-checking-active-support-extensions
|
|
19
|
-
ActiveSupportExtensionsEnabled: true
|
|
20
|
-
# What version of Rails is the inspected code using? If a value is specified
|
|
21
|
-
# for `TargetRailsVersion` then it is used. Acceptable values are specified
|
|
22
|
-
# as a float (e.g., 7.2); the patch version of Rails should not be included.
|
|
23
|
-
# If `TargetRailsVersion` is not set, RuboCop will parse the Gemfile.lock or
|
|
24
|
-
# gems.locked file to find the version of Rails that has been bound to the
|
|
25
|
-
# application. If neither of those files exist, RuboCop will use Rails 5.0
|
|
26
|
-
# as the default.
|
|
27
|
-
TargetRailsVersion: ~
|
|
28
|
-
# By specifying `MigratedSchemaVersion` option, migration files that have been migrated can be ignored.
|
|
29
|
-
# When `MigratedSchemaVersion: '20241231000000'` is set. Migration files lower than or equal to '20250101000000' will be ignored.
|
|
30
|
-
# For example, this is the timestamp in db/migrate/20250101000000_create_articles.rb.
|
|
31
|
-
MigratedSchemaVersion: '19700101000000' # NOTE: Used as a sentinel value for the UNIX epoch time.
|
|
32
|
-
|
|
33
|
-
Lint/NumberConversion:
|
|
34
|
-
# Add Rails' duration methods to the ignore list for `Lint/NumberConversion`
|
|
35
|
-
# so that calling `to_i` on one of these does not register an offense.
|
|
36
|
-
# See: https://github.com/rubocop/rubocop/issues/8950
|
|
37
|
-
AllowedMethods:
|
|
38
|
-
- ago
|
|
39
|
-
- from_now
|
|
40
|
-
- second
|
|
41
|
-
- seconds
|
|
42
|
-
- minute
|
|
43
|
-
- minutes
|
|
44
|
-
- hour
|
|
45
|
-
- hours
|
|
46
|
-
- day
|
|
47
|
-
- days
|
|
48
|
-
- week
|
|
49
|
-
- weeks
|
|
50
|
-
- fortnight
|
|
51
|
-
- fortnights
|
|
52
|
-
- in_milliseconds
|
|
53
|
-
AllowedPatterns: []
|
|
54
|
-
|
|
55
|
-
Lint/RedundantSafeNavigation:
|
|
56
|
-
# Add `presence` and `present?` methods to the default of the RuboCop core.
|
|
57
|
-
# https://github.com/rubocop/rubocop/blob/v1.51.0/config/default.yml#L2148-L2159
|
|
58
|
-
AllowedMethods:
|
|
59
|
-
- instance_of?
|
|
60
|
-
- kind_of?
|
|
61
|
-
- is_a?
|
|
62
|
-
- eql?
|
|
63
|
-
- respond_to?
|
|
64
|
-
- equal?
|
|
65
|
-
- presence
|
|
66
|
-
- present?
|
|
67
|
-
|
|
68
|
-
Lint/SafeNavigationChain:
|
|
69
|
-
# Add `presence_in` method to the default of the RuboCop core:
|
|
70
|
-
# https://github.com/rubocop/rubocop/blob/v1.56.0/config/default.yml#L2265-L2271
|
|
71
|
-
AllowedMethods:
|
|
72
|
-
- present?
|
|
73
|
-
- blank?
|
|
74
|
-
- presence
|
|
75
|
-
- presence_in
|
|
76
|
-
- try
|
|
77
|
-
- try!
|
|
78
|
-
- in?
|
|
79
|
-
|
|
80
|
-
Lint/UselessAccessModifier:
|
|
81
|
-
# Add methods from `ActiveSupport::Concern` and `Module::Concerning`:
|
|
82
|
-
# https://api.rubyonrails.org/classes/ActiveSupport/Concern.html
|
|
83
|
-
# https://api.rubyonrails.org/classes/Module/Concerning
|
|
84
|
-
inherit_mode:
|
|
85
|
-
merge:
|
|
86
|
-
- ContextCreatingMethods
|
|
87
|
-
ContextCreatingMethods:
|
|
88
|
-
- class_methods
|
|
89
|
-
- included
|
|
90
|
-
- prepended
|
|
91
|
-
- concern
|
|
92
|
-
- concerning
|
|
93
|
-
|
|
94
|
-
Lint/UselessMethodDefinition:
|
|
95
|
-
# Avoids conflict with `Rails/LexicallyScopedActionFilter` cop.
|
|
96
|
-
Exclude:
|
|
97
|
-
- '**/app/controllers/**/*.rb'
|
|
98
|
-
- '**/app/mailers/**/*.rb'
|
|
99
|
-
|
|
100
|
-
Rails:
|
|
101
|
-
Enabled: true
|
|
102
|
-
DocumentationBaseURL: https://docs.rubocop.org/rubocop-rails
|
|
103
|
-
|
|
104
|
-
Rails/ActionControllerFlashBeforeRender:
|
|
105
|
-
Description: 'Use `flash.now` instead of `flash` before `render`.'
|
|
106
|
-
Enabled: 'pending'
|
|
107
|
-
SafeAutoCorrect: false
|
|
108
|
-
VersionAdded: '2.16'
|
|
109
|
-
|
|
110
|
-
Rails/ActionControllerTestCase:
|
|
111
|
-
Description: 'Use `ActionDispatch::IntegrationTest` instead of `ActionController::TestCase`.'
|
|
112
|
-
StyleGuide: 'https://rails.rubystyle.guide/#integration-testing'
|
|
113
|
-
Reference: 'https://api.rubyonrails.org/classes/ActionController/TestCase.html'
|
|
114
|
-
Enabled: 'pending'
|
|
115
|
-
SafeAutoCorrect: false
|
|
116
|
-
VersionAdded: '2.14'
|
|
117
|
-
Include:
|
|
118
|
-
- '**/test/**/*.rb'
|
|
119
|
-
|
|
120
|
-
Rails/ActionFilter:
|
|
121
|
-
Description: 'Enforces consistent use of action filter methods.'
|
|
122
|
-
Enabled: false
|
|
123
|
-
VersionAdded: '0.19'
|
|
124
|
-
VersionChanged: '2.22'
|
|
125
|
-
EnforcedStyle: action
|
|
126
|
-
SupportedStyles:
|
|
127
|
-
- action
|
|
128
|
-
- filter
|
|
129
|
-
Include:
|
|
130
|
-
- '**/app/controllers/**/*.rb'
|
|
131
|
-
- '**/app/mailers/**/*.rb'
|
|
132
|
-
|
|
133
|
-
Rails/ActionOrder:
|
|
134
|
-
Description: 'Enforce consistent ordering of controller actions.'
|
|
135
|
-
Enabled: pending
|
|
136
|
-
VersionAdded: '2.17'
|
|
137
|
-
ExpectedOrder:
|
|
138
|
-
- index
|
|
139
|
-
- show
|
|
140
|
-
- new
|
|
141
|
-
- edit
|
|
142
|
-
- create
|
|
143
|
-
- update
|
|
144
|
-
- destroy
|
|
145
|
-
Include:
|
|
146
|
-
- '**/app/controllers/**/*.rb'
|
|
147
|
-
|
|
148
|
-
Rails/ActiveRecordAliases:
|
|
149
|
-
Description: >-
|
|
150
|
-
Avoid Active Record aliases:
|
|
151
|
-
Use `update` instead of `update_attributes`.
|
|
152
|
-
Use `update!` instead of `update_attributes!`.
|
|
153
|
-
Enabled: true
|
|
154
|
-
VersionAdded: '0.53'
|
|
155
|
-
SafeAutoCorrect: false
|
|
156
|
-
|
|
157
|
-
Rails/ActiveRecordCallbacksOrder:
|
|
158
|
-
Description: 'Order callback declarations in the order in which they will be executed.'
|
|
159
|
-
StyleGuide: 'https://rails.rubystyle.guide/#callbacks-order'
|
|
160
|
-
Enabled: 'pending'
|
|
161
|
-
VersionAdded: '2.7'
|
|
162
|
-
Include:
|
|
163
|
-
- '**/app/models/**/*.rb'
|
|
164
|
-
|
|
165
|
-
Rails/ActiveRecordOverride:
|
|
166
|
-
Description: >-
|
|
167
|
-
Check for overriding Active Record methods instead of using
|
|
168
|
-
callbacks.
|
|
169
|
-
Enabled: true
|
|
170
|
-
Severity: warning
|
|
171
|
-
VersionAdded: '0.67'
|
|
172
|
-
VersionChanged: '2.18'
|
|
173
|
-
Include:
|
|
174
|
-
- '**/app/models/**/*.rb'
|
|
175
|
-
|
|
176
|
-
Rails/ActiveSupportAliases:
|
|
177
|
-
Description: >-
|
|
178
|
-
Avoid ActiveSupport aliases of standard ruby methods:
|
|
179
|
-
`String#starts_with?`, `String#ends_with?`,
|
|
180
|
-
`Array#append`, `Array#prepend`.
|
|
181
|
-
Enabled: true
|
|
182
|
-
VersionAdded: '0.48'
|
|
183
|
-
|
|
184
|
-
Rails/ActiveSupportOnLoad:
|
|
185
|
-
Description: 'Use `ActiveSupport.on_load(...)` to patch Rails framework classes.'
|
|
186
|
-
Enabled: 'pending'
|
|
187
|
-
Reference:
|
|
188
|
-
- 'https://api.rubyonrails.org/classes/ActiveSupport/LazyLoadHooks.html'
|
|
189
|
-
- 'https://guides.rubyonrails.org/engines.html#available-load-hooks'
|
|
190
|
-
SafeAutoCorrect: false
|
|
191
|
-
VersionAdded: '2.16'
|
|
192
|
-
VersionChanged: '2.24'
|
|
193
|
-
|
|
194
|
-
Rails/AddColumnIndex:
|
|
195
|
-
Description: >-
|
|
196
|
-
Rails migrations don't make use of a given `index` key, but also
|
|
197
|
-
doesn't given an error when it's used, so it makes it seem like an
|
|
198
|
-
index might be used.
|
|
199
|
-
Enabled: pending
|
|
200
|
-
VersionAdded: '2.11'
|
|
201
|
-
VersionChanged: '2.20'
|
|
202
|
-
Include:
|
|
203
|
-
- db/**/*.rb
|
|
204
|
-
|
|
205
|
-
Rails/AfterCommitOverride:
|
|
206
|
-
Description: >-
|
|
207
|
-
Enforces that there is only one call to `after_commit`
|
|
208
|
-
(and its aliases - `after_create_commit`, `after_update_commit`,
|
|
209
|
-
and `after_destroy_commit`) with the same callback name per model.
|
|
210
|
-
Enabled: 'pending'
|
|
211
|
-
VersionAdded: '2.8'
|
|
212
|
-
|
|
213
|
-
Rails/ApplicationController:
|
|
214
|
-
Description: 'Check that controllers subclass ApplicationController.'
|
|
215
|
-
Enabled: true
|
|
216
|
-
SafeAutoCorrect: false
|
|
217
|
-
VersionAdded: '2.4'
|
|
218
|
-
VersionChanged: '2.5'
|
|
219
|
-
|
|
220
|
-
Rails/ApplicationJob:
|
|
221
|
-
Description: 'Check that jobs subclass ApplicationJob.'
|
|
222
|
-
Enabled: true
|
|
223
|
-
SafeAutoCorrect: false
|
|
224
|
-
VersionAdded: '0.49'
|
|
225
|
-
VersionChanged: '2.5'
|
|
226
|
-
|
|
227
|
-
Rails/ApplicationMailer:
|
|
228
|
-
Description: 'Check that mailers subclass ApplicationMailer.'
|
|
229
|
-
Enabled: true
|
|
230
|
-
SafeAutoCorrect: false
|
|
231
|
-
VersionAdded: '2.4'
|
|
232
|
-
VersionChanged: '2.5'
|
|
233
|
-
|
|
234
|
-
Rails/ApplicationRecord:
|
|
235
|
-
Description: 'Check that models subclass ApplicationRecord.'
|
|
236
|
-
Enabled: true
|
|
237
|
-
SafeAutoCorrect: false
|
|
238
|
-
VersionAdded: '0.49'
|
|
239
|
-
VersionChanged: '2.26'
|
|
240
|
-
Exclude:
|
|
241
|
-
- db/**/*.rb
|
|
242
|
-
|
|
243
|
-
Rails/ArelStar:
|
|
244
|
-
Description: 'Enforces `Arel.star` instead of `"*"` for expanded columns.'
|
|
245
|
-
Enabled: true
|
|
246
|
-
SafeAutoCorrect: false
|
|
247
|
-
VersionAdded: '2.9'
|
|
248
|
-
|
|
249
|
-
Rails/AssertNot:
|
|
250
|
-
Description: 'Use `assert_not` instead of `assert !`.'
|
|
251
|
-
Enabled: true
|
|
252
|
-
VersionAdded: '0.56'
|
|
253
|
-
Include:
|
|
254
|
-
- '**/test/**/*'
|
|
255
|
-
|
|
256
|
-
Rails/AttributeDefaultBlockValue:
|
|
257
|
-
Description: 'Pass method call in block for attribute option `default`.'
|
|
258
|
-
Enabled: pending
|
|
259
|
-
VersionAdded: '2.9'
|
|
260
|
-
Include:
|
|
261
|
-
- '**/app/models/**/*'
|
|
262
|
-
|
|
263
|
-
Rails/BelongsTo:
|
|
264
|
-
Description: >-
|
|
265
|
-
Use `optional: true` instead of `required: false` for
|
|
266
|
-
`belongs_to` relations.
|
|
267
|
-
Reference:
|
|
268
|
-
- https://guides.rubyonrails.org/5_0_release_notes.html
|
|
269
|
-
- https://github.com/rails/rails/pull/18937
|
|
270
|
-
Enabled: true
|
|
271
|
-
VersionAdded: '0.62'
|
|
272
|
-
|
|
273
|
-
Rails/Blank:
|
|
274
|
-
Description: 'Enforces use of `blank?`.'
|
|
275
|
-
Enabled: true
|
|
276
|
-
SafeAutoCorrect: false
|
|
277
|
-
VersionAdded: '0.48'
|
|
278
|
-
VersionChanged: '2.10'
|
|
279
|
-
# Convert usages of `nil? || empty?` to `blank?`
|
|
280
|
-
NilOrEmpty: true
|
|
281
|
-
# Convert usages of `!present?` to `blank?`
|
|
282
|
-
NotPresent: true
|
|
283
|
-
# Convert usages of `unless present?` to `if blank?`
|
|
284
|
-
UnlessPresent: true
|
|
285
|
-
|
|
286
|
-
Rails/BulkChangeTable:
|
|
287
|
-
Description: 'Check whether alter queries are combinable.'
|
|
288
|
-
Reference:
|
|
289
|
-
- https://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html#method-i-change_table
|
|
290
|
-
- https://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/Table.html
|
|
291
|
-
Enabled: true
|
|
292
|
-
VersionAdded: '0.57'
|
|
293
|
-
VersionChanged: '2.20'
|
|
294
|
-
Database: null
|
|
295
|
-
SupportedDatabases:
|
|
296
|
-
- mysql
|
|
297
|
-
- postgresql
|
|
298
|
-
Include:
|
|
299
|
-
- db/**/*.rb
|
|
300
|
-
|
|
301
|
-
Rails/CompactBlank:
|
|
302
|
-
Description: 'Checks if collection can be blank-compacted with `compact_blank`.'
|
|
303
|
-
Enabled: pending
|
|
304
|
-
Safe: false
|
|
305
|
-
VersionAdded: '2.13'
|
|
306
|
-
|
|
307
|
-
Rails/ContentTag:
|
|
308
|
-
Description: 'Use `tag.something` instead of `tag(:something)`.'
|
|
309
|
-
Reference:
|
|
310
|
-
- 'https://github.com/rubocop/rubocop-rails/issues/260'
|
|
311
|
-
- 'https://github.com/rails/rails/issues/25195'
|
|
312
|
-
- 'https://api.rubyonrails.org/classes/ActionView/Helpers/TagHelper.html#method-i-content_tag'
|
|
313
|
-
Enabled: true
|
|
314
|
-
VersionAdded: '2.6'
|
|
315
|
-
VersionChanged: '2.12'
|
|
316
|
-
# This `Exclude` config prevents false positives for `tag` calls to `has_one: tag` and Puma configuration:
|
|
317
|
-
# https://puma.io/puma/Puma/DSL.html#tag-instance_method
|
|
318
|
-
# No helpers are used in normal models and configs.
|
|
319
|
-
Exclude:
|
|
320
|
-
- '**/app/models/**/*.rb'
|
|
321
|
-
- '**/config/**/*.rb'
|
|
322
|
-
|
|
323
|
-
Rails/CreateTableWithTimestamps:
|
|
324
|
-
Description: >-
|
|
325
|
-
Checks the migration for which timestamps are not included
|
|
326
|
-
when creating a new table.
|
|
327
|
-
Enabled: true
|
|
328
|
-
VersionAdded: '0.52'
|
|
329
|
-
VersionChanged: '2.20'
|
|
330
|
-
Include:
|
|
331
|
-
- db/**/*.rb
|
|
332
|
-
Exclude:
|
|
333
|
-
# Respect the `active_storage_variant_records` table of `*_create_active_storage_tables.active_storage.rb`
|
|
334
|
-
# and `*_create_active_storage_variant_records.active_storage.rb`
|
|
335
|
-
# auto-generated by `bin/rails active_storage:install` even if `created_at` is not specified.
|
|
336
|
-
- db/**/*_create_active_storage_tables.active_storage.rb
|
|
337
|
-
- db/**/*_create_active_storage_variant_records.active_storage.rb
|
|
338
|
-
|
|
339
|
-
Rails/DangerousColumnNames:
|
|
340
|
-
Description: >-
|
|
341
|
-
Avoid dangerous column names.
|
|
342
|
-
Enabled: pending
|
|
343
|
-
Severity: warning
|
|
344
|
-
VersionAdded: '2.21'
|
|
345
|
-
Include:
|
|
346
|
-
- 'db/**/*.rb'
|
|
347
|
-
|
|
348
|
-
Rails/Date:
|
|
349
|
-
Description: >-
|
|
350
|
-
Checks the correct usage of date aware methods,
|
|
351
|
-
such as Date.today, Date.current etc.
|
|
352
|
-
Enabled: true
|
|
353
|
-
SafeAutoCorrect: false
|
|
354
|
-
VersionAdded: '0.30'
|
|
355
|
-
VersionChanged: '2.11'
|
|
356
|
-
# The value `strict` disallows usage of `Date.today`, `Date.current`,
|
|
357
|
-
# `Date#to_time` etc.
|
|
358
|
-
# The value `flexible` allows usage of `Date.current`, `Date.yesterday`, etc
|
|
359
|
-
# (but not `Date.today`) which are overridden by ActiveSupport to handle current
|
|
360
|
-
# time zone.
|
|
361
|
-
EnforcedStyle: flexible
|
|
362
|
-
SupportedStyles:
|
|
363
|
-
- strict
|
|
364
|
-
- flexible
|
|
365
|
-
AllowToTime: true
|
|
366
|
-
|
|
367
|
-
Rails/DefaultScope:
|
|
368
|
-
Description: 'Avoid use of `default_scope`.'
|
|
369
|
-
Enabled: false
|
|
370
|
-
VersionAdded: '2.7'
|
|
371
|
-
|
|
372
|
-
Rails/Delegate:
|
|
373
|
-
Description: 'Prefer delegate method for delegations.'
|
|
374
|
-
Enabled: true
|
|
375
|
-
VersionAdded: '0.21'
|
|
376
|
-
VersionChanged: '2.30'
|
|
377
|
-
# When set to true, using the target object as a prefix of the
|
|
378
|
-
# method name without using the `delegate` method will be a
|
|
379
|
-
# violation. When set to false, this case is legal.
|
|
380
|
-
EnforceForPrefixed: true
|
|
381
|
-
Exclude:
|
|
382
|
-
- '**/app/controllers/**/*.rb'
|
|
383
|
-
|
|
384
|
-
Rails/DelegateAllowBlank:
|
|
385
|
-
Description: 'Do not use allow_blank as an option to delegate.'
|
|
386
|
-
Enabled: true
|
|
387
|
-
VersionAdded: '0.44'
|
|
388
|
-
|
|
389
|
-
Rails/DeprecatedActiveModelErrorsMethods:
|
|
390
|
-
Description: 'Avoid manipulating ActiveModel errors hash directly.'
|
|
391
|
-
Enabled: pending
|
|
392
|
-
Severity: warning
|
|
393
|
-
Safe: false
|
|
394
|
-
VersionAdded: '2.14'
|
|
395
|
-
VersionChanged: '2.18'
|
|
396
|
-
|
|
397
|
-
Rails/DotSeparatedKeys:
|
|
398
|
-
Description: 'Enforces the use of dot-separated keys instead of `:scope` options in `I18n` translation methods.'
|
|
399
|
-
StyleGuide: 'https://rails.rubystyle.guide/#dot-separated-keys'
|
|
400
|
-
Enabled: pending
|
|
401
|
-
VersionAdded: '2.15'
|
|
402
|
-
|
|
403
|
-
Rails/DuplicateAssociation:
|
|
404
|
-
Description: "Don't repeat associations in a model."
|
|
405
|
-
Enabled: pending
|
|
406
|
-
Severity: warning
|
|
407
|
-
VersionAdded: '2.14'
|
|
408
|
-
VersionChanged: '2.18'
|
|
409
|
-
|
|
410
|
-
Rails/DuplicateScope:
|
|
411
|
-
Description: 'Multiple scopes share this same expression.'
|
|
412
|
-
Enabled: pending
|
|
413
|
-
Severity: warning
|
|
414
|
-
VersionAdded: '2.14'
|
|
415
|
-
VersionChanged: '2.18'
|
|
416
|
-
|
|
417
|
-
Rails/DurationArithmetic:
|
|
418
|
-
Description: 'Do not use duration as arithmetic operand with `Time.current`.'
|
|
419
|
-
StyleGuide: 'https://rails.rubystyle.guide#duration-arithmetic'
|
|
420
|
-
Enabled: pending
|
|
421
|
-
VersionAdded: '2.13'
|
|
422
|
-
|
|
423
|
-
Rails/DynamicFindBy:
|
|
424
|
-
Description: 'Use `find_by` instead of dynamic `find_by_*`.'
|
|
425
|
-
StyleGuide: 'https://rails.rubystyle.guide#find_by'
|
|
426
|
-
Enabled: true
|
|
427
|
-
Safe: false
|
|
428
|
-
VersionAdded: '0.44'
|
|
429
|
-
VersionChanged: '2.10'
|
|
430
|
-
# The `Whitelist` has been deprecated, Please use `AllowedMethods` instead.
|
|
431
|
-
Whitelist:
|
|
432
|
-
- find_by_sql
|
|
433
|
-
- find_by_token_for
|
|
434
|
-
AllowedMethods:
|
|
435
|
-
- find_by_sql
|
|
436
|
-
- find_by_token_for
|
|
437
|
-
AllowedReceivers:
|
|
438
|
-
- Gem::Specification
|
|
439
|
-
- page # Prevents a warning for `page.find_by_id`. See: https://github.com/rubocop/rubocop-rails/issues/778
|
|
440
|
-
|
|
441
|
-
Rails/EagerEvaluationLogMessage:
|
|
442
|
-
Description: 'Checks that blocks are used for interpolated strings passed to `Rails.logger.debug`.'
|
|
443
|
-
Reference: 'https://guides.rubyonrails.org/debugging_rails_applications.html#impact-of-logs-on-performance'
|
|
444
|
-
Enabled: pending
|
|
445
|
-
VersionAdded: '2.11'
|
|
446
|
-
|
|
447
|
-
Rails/EnumHash:
|
|
448
|
-
Description: 'Prefer hash syntax over array syntax when defining enums.'
|
|
449
|
-
StyleGuide: 'https://rails.rubystyle.guide#enums'
|
|
450
|
-
Enabled: true
|
|
451
|
-
VersionAdded: '2.3'
|
|
452
|
-
Include:
|
|
453
|
-
- '**/app/models/**/*.rb'
|
|
454
|
-
|
|
455
|
-
Rails/EnumSyntax:
|
|
456
|
-
Description: 'Use positional arguments over keyword arguments when defining enums.'
|
|
457
|
-
Enabled: pending
|
|
458
|
-
Severity: warning
|
|
459
|
-
VersionAdded: '2.26'
|
|
460
|
-
Include:
|
|
461
|
-
- '**/app/models/**/*.rb'
|
|
462
|
-
- '**/lib/**/*.rb'
|
|
463
|
-
|
|
464
|
-
Rails/EnumUniqueness:
|
|
465
|
-
Description: 'Avoid duplicate integers in hash-syntax `enum` declaration.'
|
|
466
|
-
Enabled: true
|
|
467
|
-
VersionAdded: '0.46'
|
|
468
|
-
Include:
|
|
469
|
-
- '**/app/models/**/*.rb'
|
|
470
|
-
|
|
471
|
-
Rails/Env:
|
|
472
|
-
Description: 'Use Feature Flags or config instead of `Rails.env`.'
|
|
473
|
-
Enabled: false
|
|
474
|
-
VersionAdded: '2.34'
|
|
475
|
-
|
|
476
|
-
Rails/EnvLocal:
|
|
477
|
-
Description: 'Use `Rails.env.local?` instead of `Rails.env.development? || Rails.env.test?`.'
|
|
478
|
-
Enabled: pending
|
|
479
|
-
VersionAdded: '2.22'
|
|
480
|
-
|
|
481
|
-
Rails/EnvironmentComparison:
|
|
482
|
-
Description: "Favor `Rails.env.production?` over `Rails.env == 'production'`."
|
|
483
|
-
Enabled: true
|
|
484
|
-
VersionAdded: '0.52'
|
|
485
|
-
|
|
486
|
-
Rails/EnvironmentVariableAccess:
|
|
487
|
-
Description: 'Do not access `ENV` directly after initialization.'
|
|
488
|
-
# TODO: Set to `pending` status in RuboCop Rails 2 series when migration doc will be written.
|
|
489
|
-
Enabled: false
|
|
490
|
-
VersionAdded: '2.10'
|
|
491
|
-
VersionChanged: '2.24'
|
|
492
|
-
Include:
|
|
493
|
-
- '**/app/**/*.rb'
|
|
494
|
-
- '**/config/initializers/**/*.rb'
|
|
495
|
-
- '**/lib/**/*.rb'
|
|
496
|
-
Exclude:
|
|
497
|
-
- '**/lib/**/*.rake'
|
|
498
|
-
AllowReads: false
|
|
499
|
-
AllowWrites: false
|
|
500
|
-
|
|
501
|
-
Rails/Exit:
|
|
502
|
-
Description: >-
|
|
503
|
-
Favor `fail`, `break`, `return`, etc. over `exit` in
|
|
504
|
-
application or library code outside of Rake files to avoid
|
|
505
|
-
exits during unit testing or running in production.
|
|
506
|
-
Enabled: true
|
|
507
|
-
VersionAdded: '0.41'
|
|
508
|
-
Include:
|
|
509
|
-
- '**/app/**/*.rb'
|
|
510
|
-
- '**/config/**/*.rb'
|
|
511
|
-
- '**/lib/**/*.rb'
|
|
512
|
-
Exclude:
|
|
513
|
-
- '**/lib/**/*.rake'
|
|
514
|
-
|
|
515
|
-
Rails/ExpandedDateRange:
|
|
516
|
-
Description: 'Checks for expanded date range.'
|
|
517
|
-
StyleGuide: 'https://rails.rubystyle.guide/#date-time-range'
|
|
518
|
-
Enabled: pending
|
|
519
|
-
VersionAdded: '2.11'
|
|
520
|
-
|
|
521
|
-
Rails/FilePath:
|
|
522
|
-
Description: 'Use `Rails.root.join` for file path joining.'
|
|
523
|
-
Enabled: true
|
|
524
|
-
VersionAdded: '0.47'
|
|
525
|
-
VersionChanged: '2.4'
|
|
526
|
-
EnforcedStyle: slashes
|
|
527
|
-
SupportedStyles:
|
|
528
|
-
- slashes
|
|
529
|
-
- arguments
|
|
530
|
-
|
|
531
|
-
Rails/FindBy:
|
|
532
|
-
Description: 'Prefer find_by over where.first.'
|
|
533
|
-
StyleGuide: 'https://rails.rubystyle.guide#find_by'
|
|
534
|
-
Enabled: true
|
|
535
|
-
VersionAdded: '0.30'
|
|
536
|
-
VersionChanged: '2.21'
|
|
537
|
-
IgnoreWhereFirst: true
|
|
538
|
-
|
|
539
|
-
Rails/FindById:
|
|
540
|
-
Description: >-
|
|
541
|
-
Favor the use of `find` over `where.take!`, `find_by!`, and `find_by_id!` when you
|
|
542
|
-
need to retrieve a single record by primary key when you expect it to be found.
|
|
543
|
-
StyleGuide: 'https://rails.rubystyle.guide/#find'
|
|
544
|
-
Enabled: 'pending'
|
|
545
|
-
VersionAdded: '2.7'
|
|
546
|
-
|
|
547
|
-
Rails/FindByOrAssignmentMemoization:
|
|
548
|
-
Description: 'Avoid memoizing `find_by` results with `||=`.'
|
|
549
|
-
StyleGuide: 'https://rails.rubystyle.guide/#find-by-memoization'
|
|
550
|
-
Enabled: pending
|
|
551
|
-
Safe: false
|
|
552
|
-
VersionAdded: '2.33'
|
|
553
|
-
|
|
554
|
-
Rails/FindEach:
|
|
555
|
-
Description: 'Prefer all.find_each over all.each.'
|
|
556
|
-
StyleGuide: 'https://rails.rubystyle.guide#find-each'
|
|
557
|
-
Enabled: true
|
|
558
|
-
Safe: false
|
|
559
|
-
VersionAdded: '0.30'
|
|
560
|
-
VersionChanged: '2.21'
|
|
561
|
-
AllowedMethods:
|
|
562
|
-
# Methods that don't work well with `find_each`.
|
|
563
|
-
- order
|
|
564
|
-
- limit
|
|
565
|
-
- select
|
|
566
|
-
- lock
|
|
567
|
-
AllowedPatterns: []
|
|
568
|
-
|
|
569
|
-
Rails/FreezeTime:
|
|
570
|
-
Description: 'Prefer `freeze_time` over `travel_to` with an argument of the current time.'
|
|
571
|
-
StyleGuide: 'https://rails.rubystyle.guide/#freeze-time'
|
|
572
|
-
Enabled: pending
|
|
573
|
-
VersionAdded: '2.16'
|
|
574
|
-
SafeAutoCorrect: false
|
|
575
|
-
|
|
576
|
-
Rails/HasAndBelongsToMany:
|
|
577
|
-
Description: 'Prefer has_many :through to has_and_belongs_to_many.'
|
|
578
|
-
StyleGuide: 'https://rails.rubystyle.guide#has-many-through'
|
|
579
|
-
Enabled: true
|
|
580
|
-
VersionAdded: '0.12'
|
|
581
|
-
Include:
|
|
582
|
-
- '**/app/models/**/*.rb'
|
|
583
|
-
|
|
584
|
-
Rails/HasManyOrHasOneDependent:
|
|
585
|
-
Description: 'Define the dependent option to the has_many and has_one associations.'
|
|
586
|
-
StyleGuide: 'https://rails.rubystyle.guide#has_many-has_one-dependent-option'
|
|
587
|
-
Enabled: true
|
|
588
|
-
VersionAdded: '0.50'
|
|
589
|
-
Include:
|
|
590
|
-
- '**/app/models/**/*.rb'
|
|
591
|
-
|
|
592
|
-
Rails/HelperInstanceVariable:
|
|
593
|
-
Description: 'Do not use instance variables in helpers.'
|
|
594
|
-
Enabled: true
|
|
595
|
-
VersionAdded: '2.0'
|
|
596
|
-
Include:
|
|
597
|
-
- '**/app/helpers/**/*.rb'
|
|
598
|
-
|
|
599
|
-
Rails/HttpPositionalArguments:
|
|
600
|
-
Description: 'Use keyword arguments instead of positional arguments in http method calls.'
|
|
601
|
-
Enabled: true
|
|
602
|
-
VersionAdded: '0.44'
|
|
603
|
-
Include:
|
|
604
|
-
- 'spec/**/*'
|
|
605
|
-
- 'test/**/*'
|
|
606
|
-
|
|
607
|
-
Rails/HttpStatus:
|
|
608
|
-
Description: 'Enforces use of symbolic or numeric value to define HTTP status.'
|
|
609
|
-
Enabled: true
|
|
610
|
-
VersionAdded: '0.54'
|
|
611
|
-
VersionChanged: '2.11'
|
|
612
|
-
EnforcedStyle: symbolic
|
|
613
|
-
SupportedStyles:
|
|
614
|
-
- numeric
|
|
615
|
-
- symbolic
|
|
616
|
-
|
|
617
|
-
Rails/HttpStatusNameConsistency:
|
|
618
|
-
Description: 'Enforces consistency by using the current HTTP status names.'
|
|
619
|
-
Enabled: pending
|
|
620
|
-
Severity: warning
|
|
621
|
-
VersionAdded: '2.34'
|
|
622
|
-
Include:
|
|
623
|
-
- '**/app/controllers/**/*.rb'
|
|
624
|
-
|
|
625
|
-
Rails/I18nLazyLookup:
|
|
626
|
-
Description: 'Checks for places where I18n "lazy" lookup can be used.'
|
|
627
|
-
StyleGuide: 'https://rails.rubystyle.guide/#lazy-lookup'
|
|
628
|
-
Reference: 'https://guides.rubyonrails.org/i18n.html#lazy-lookup'
|
|
629
|
-
Enabled: pending
|
|
630
|
-
VersionAdded: '2.14'
|
|
631
|
-
EnforcedStyle: lazy
|
|
632
|
-
SupportedStyles:
|
|
633
|
-
- lazy
|
|
634
|
-
- explicit
|
|
635
|
-
Include:
|
|
636
|
-
- '**/app/controllers/**/*.rb'
|
|
637
|
-
|
|
638
|
-
Rails/I18nLocaleAssignment:
|
|
639
|
-
Description: 'Prefer the usage of `I18n.with_locale` instead of manually updating `I18n.locale` value.'
|
|
640
|
-
Enabled: 'pending'
|
|
641
|
-
VersionAdded: '2.11'
|
|
642
|
-
Include:
|
|
643
|
-
- spec/**/*.rb
|
|
644
|
-
- test/**/*.rb
|
|
645
|
-
|
|
646
|
-
Rails/I18nLocaleTexts:
|
|
647
|
-
Description: 'Enforces use of I18n and locale files instead of locale specific strings.'
|
|
648
|
-
StyleGuide: 'https://rails.rubystyle.guide/#locale-texts'
|
|
649
|
-
Enabled: pending
|
|
650
|
-
VersionAdded: '2.14'
|
|
651
|
-
|
|
652
|
-
Rails/IgnoredColumnsAssignment:
|
|
653
|
-
Description: 'Looks for assignments of `ignored_columns` that override previous assignments.'
|
|
654
|
-
StyleGuide: 'https://rails.rubystyle.guide/#append-ignored-columns'
|
|
655
|
-
Enabled: pending
|
|
656
|
-
SafeAutoCorrect: false
|
|
657
|
-
VersionAdded: '2.17'
|
|
658
|
-
|
|
659
|
-
Rails/IgnoredSkipActionFilterOption:
|
|
660
|
-
Description: 'Checks that `if` and `only` (or `except`) are not used together as options of `skip_*` action filter.'
|
|
661
|
-
Reference: 'https://api.rubyonrails.org/classes/AbstractController/Callbacks/ClassMethods.html#method-i-_normalize_callback_options'
|
|
662
|
-
Enabled: true
|
|
663
|
-
VersionAdded: '0.63'
|
|
664
|
-
Include:
|
|
665
|
-
- '**/app/controllers/**/*.rb'
|
|
666
|
-
- '**/app/mailers/**/*.rb'
|
|
667
|
-
|
|
668
|
-
Rails/IndexBy:
|
|
669
|
-
Description: 'Prefer `index_by` over `each_with_object`, `to_h`, or `map`.'
|
|
670
|
-
Enabled: true
|
|
671
|
-
VersionAdded: '2.5'
|
|
672
|
-
VersionChanged: '2.8'
|
|
673
|
-
|
|
674
|
-
Rails/IndexWith:
|
|
675
|
-
Description: 'Prefer `index_with` over `each_with_object`, `to_h`, or `map`.'
|
|
676
|
-
Enabled: true
|
|
677
|
-
SafeAutoCorrect: false
|
|
678
|
-
VersionAdded: '2.5'
|
|
679
|
-
VersionChanged: '2.33'
|
|
680
|
-
|
|
681
|
-
Rails/Inquiry:
|
|
682
|
-
Description: "Prefer Ruby's comparison operators over Active Support's `Array#inquiry` and `String#inquiry`."
|
|
683
|
-
StyleGuide: 'https://rails.rubystyle.guide/#inquiry'
|
|
684
|
-
Enabled: 'pending'
|
|
685
|
-
VersionAdded: '2.7'
|
|
686
|
-
|
|
687
|
-
Rails/InverseOf:
|
|
688
|
-
Description: 'Checks for associations where the inverse cannot be determined automatically.'
|
|
689
|
-
Reference:
|
|
690
|
-
- https://guides.rubyonrails.org/association_basics.html#bi-directional-associations
|
|
691
|
-
- https://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#module-ActiveRecord::Associations::ClassMethods-label-Setting+Inverses
|
|
692
|
-
Enabled: true
|
|
693
|
-
VersionAdded: '0.52'
|
|
694
|
-
IgnoreScopes: false
|
|
695
|
-
Include:
|
|
696
|
-
- '**/app/models/**/*.rb'
|
|
697
|
-
|
|
698
|
-
Rails/LexicallyScopedActionFilter:
|
|
699
|
-
Description: "Checks that methods specified in the filter's `only` or `except` options are explicitly defined in the class."
|
|
700
|
-
StyleGuide: 'https://rails.rubystyle.guide#lexically-scoped-action-filter'
|
|
701
|
-
Enabled: true
|
|
702
|
-
Safe: false
|
|
703
|
-
VersionAdded: '0.52'
|
|
704
|
-
Include:
|
|
705
|
-
- '**/app/controllers/**/*.rb'
|
|
706
|
-
- '**/app/mailers/**/*.rb'
|
|
707
|
-
|
|
708
|
-
Rails/LinkToBlank:
|
|
709
|
-
Description: 'Checks that `link_to` with a `target: "_blank"` have a `rel: "noopener"` option passed to them.'
|
|
710
|
-
Reference:
|
|
711
|
-
- https://mathiasbynens.github.io/rel-noopener/
|
|
712
|
-
- https://html.spec.whatwg.org/multipage/links.html#link-type-noopener
|
|
713
|
-
- https://html.spec.whatwg.org/multipage/links.html#link-type-noreferrer
|
|
714
|
-
Enabled: true
|
|
715
|
-
VersionAdded: '0.62'
|
|
716
|
-
|
|
717
|
-
Rails/MailerName:
|
|
718
|
-
Description: 'Mailer should end with `Mailer` suffix.'
|
|
719
|
-
StyleGuide: 'https://rails.rubystyle.guide/#mailer-name'
|
|
720
|
-
Enabled: 'pending'
|
|
721
|
-
SafeAutoCorrect: false
|
|
722
|
-
VersionAdded: '2.7'
|
|
723
|
-
Include:
|
|
724
|
-
- '**/app/mailers/**/*.rb'
|
|
725
|
-
|
|
726
|
-
Rails/MatchRoute:
|
|
727
|
-
Description: >-
|
|
728
|
-
Don't use `match` to define any routes unless there is a need to map multiple request types
|
|
729
|
-
among [:get, :post, :patch, :put, :delete] to a single action using the `:via` option.
|
|
730
|
-
StyleGuide: 'https://rails.rubystyle.guide/#no-match-routes'
|
|
731
|
-
Enabled: 'pending'
|
|
732
|
-
VersionAdded: '2.7'
|
|
733
|
-
Include:
|
|
734
|
-
- '**/config/routes.rb'
|
|
735
|
-
- '**/config/routes/**/*.rb'
|
|
736
|
-
|
|
737
|
-
Rails/MigrationClassName:
|
|
738
|
-
Description: 'The class name of the migration should match its file name.'
|
|
739
|
-
Enabled: pending
|
|
740
|
-
VersionAdded: '2.14'
|
|
741
|
-
VersionChanged: '2.20'
|
|
742
|
-
Include:
|
|
743
|
-
- db/**/*.rb
|
|
744
|
-
|
|
745
|
-
Rails/MultipleRoutePaths:
|
|
746
|
-
Description: 'Checks for mapping a route with multiple paths, which is deprecated and will be removed in Rails 8.1.'
|
|
747
|
-
Enabled: pending
|
|
748
|
-
Severity: warning
|
|
749
|
-
VersionAdded: '2.29'
|
|
750
|
-
Include:
|
|
751
|
-
- '**/config/routes.rb'
|
|
752
|
-
- '**/config/routes/**/*.rb'
|
|
753
|
-
|
|
754
|
-
Rails/NegateInclude:
|
|
755
|
-
Description: 'Prefer `collection.exclude?(obj)` over `!collection.include?(obj)`.'
|
|
756
|
-
StyleGuide: 'https://rails.rubystyle.guide#exclude'
|
|
757
|
-
Enabled: 'pending'
|
|
758
|
-
Safe: false
|
|
759
|
-
VersionAdded: '2.7'
|
|
760
|
-
VersionChanged: '2.9'
|
|
761
|
-
|
|
762
|
-
Rails/NotNullColumn:
|
|
763
|
-
Description: 'Do not add a NOT NULL column without a default value to existing tables.'
|
|
764
|
-
Enabled: true
|
|
765
|
-
VersionAdded: '0.43'
|
|
766
|
-
VersionChanged: '2.20'
|
|
767
|
-
Database: null
|
|
768
|
-
SupportedDatabases:
|
|
769
|
-
- mysql
|
|
770
|
-
Include:
|
|
771
|
-
- db/**/*.rb
|
|
772
|
-
|
|
773
|
-
Rails/OrderArguments:
|
|
774
|
-
Description: 'Prefer symbol arguments over strings in `order` method.'
|
|
775
|
-
StyleGuide: 'https://rails.rubystyle.guide/#order-arguments'
|
|
776
|
-
Enabled: pending
|
|
777
|
-
VersionAdded: '2.33'
|
|
778
|
-
Safe: false
|
|
779
|
-
|
|
780
|
-
Rails/OrderById:
|
|
781
|
-
Description: >-
|
|
782
|
-
Do not use the `id` column for ordering.
|
|
783
|
-
Use a timestamp column to order chronologically.
|
|
784
|
-
StyleGuide: 'https://rails.rubystyle.guide/#order-by-id'
|
|
785
|
-
Enabled: false
|
|
786
|
-
VersionAdded: '2.8'
|
|
787
|
-
|
|
788
|
-
Rails/Output:
|
|
789
|
-
Description: 'Checks for calls to puts, print, etc.'
|
|
790
|
-
Enabled: true
|
|
791
|
-
SafeAutoCorrect: false
|
|
792
|
-
VersionAdded: '0.15'
|
|
793
|
-
VersionChanged: '0.19'
|
|
794
|
-
Include:
|
|
795
|
-
- '**/app/**/*.rb'
|
|
796
|
-
- '**/config/**/*.rb'
|
|
797
|
-
- db/**/*.rb
|
|
798
|
-
- '**/lib/**/*.rb'
|
|
799
|
-
|
|
800
|
-
Rails/OutputSafety:
|
|
801
|
-
Description: 'The use of `html_safe` or `raw` may be a security risk.'
|
|
802
|
-
Enabled: true
|
|
803
|
-
VersionAdded: '0.41'
|
|
804
|
-
|
|
805
|
-
Rails/Pick:
|
|
806
|
-
Description: 'Prefer `pick` over `pluck(...).first`.'
|
|
807
|
-
StyleGuide: 'https://rails.rubystyle.guide#pick'
|
|
808
|
-
Enabled: true
|
|
809
|
-
Safe: false
|
|
810
|
-
VersionAdded: '2.6'
|
|
811
|
-
|
|
812
|
-
Rails/Pluck:
|
|
813
|
-
Description: 'Prefer `pluck` over `map { ... }`.'
|
|
814
|
-
StyleGuide: 'https://rails.rubystyle.guide#pluck'
|
|
815
|
-
Enabled: 'pending'
|
|
816
|
-
Safe: false
|
|
817
|
-
VersionAdded: '2.7'
|
|
818
|
-
VersionChanged: '2.18'
|
|
819
|
-
|
|
820
|
-
Rails/PluckId:
|
|
821
|
-
Description: 'Use `ids` instead of `pluck(:id)` or `pluck(primary_key)`.'
|
|
822
|
-
StyleGuide: 'https://rails.rubystyle.guide/#ids'
|
|
823
|
-
Enabled: false
|
|
824
|
-
Safe: false
|
|
825
|
-
VersionAdded: '2.7'
|
|
826
|
-
|
|
827
|
-
Rails/PluckInWhere:
|
|
828
|
-
Description: 'Use `select` instead of `pluck` in `where` query methods.'
|
|
829
|
-
Enabled: 'pending'
|
|
830
|
-
Safe: false
|
|
831
|
-
VersionAdded: '2.7'
|
|
832
|
-
VersionChanged: '2.8'
|
|
833
|
-
EnforcedStyle: conservative
|
|
834
|
-
SupportedStyles:
|
|
835
|
-
- conservative
|
|
836
|
-
- aggressive
|
|
837
|
-
|
|
838
|
-
Rails/PluralizationGrammar:
|
|
839
|
-
Description: 'Checks for incorrect grammar when using methods like `3.day.ago`.'
|
|
840
|
-
Enabled: true
|
|
841
|
-
VersionAdded: '0.35'
|
|
842
|
-
|
|
843
|
-
Rails/Presence:
|
|
844
|
-
Description: 'Checks code that can be written more easily using `Object#presence` defined by Active Support.'
|
|
845
|
-
Enabled: true
|
|
846
|
-
VersionAdded: '0.52'
|
|
847
|
-
VersionChanged: '2.34'
|
|
848
|
-
|
|
849
|
-
Rails/Present:
|
|
850
|
-
Description: 'Enforces use of `present?`.'
|
|
851
|
-
Enabled: true
|
|
852
|
-
VersionAdded: '0.48'
|
|
853
|
-
VersionChanged: '0.67'
|
|
854
|
-
# Convert usages of `!nil? && !empty?` to `present?`
|
|
855
|
-
NotNilAndNotEmpty: true
|
|
856
|
-
# Convert usages of `!blank?` to `present?`
|
|
857
|
-
NotBlank: true
|
|
858
|
-
# Convert usages of `unless blank?` to `if present?`
|
|
859
|
-
UnlessBlank: true
|
|
860
|
-
|
|
861
|
-
Rails/RakeEnvironment:
|
|
862
|
-
Description: 'Include `:environment` as a dependency for all Rake tasks.'
|
|
863
|
-
Enabled: true
|
|
864
|
-
Safe: false
|
|
865
|
-
VersionAdded: '2.4'
|
|
866
|
-
VersionChanged: '2.6'
|
|
867
|
-
Include:
|
|
868
|
-
- '**/Rakefile'
|
|
869
|
-
- '**/*.rake'
|
|
870
|
-
Exclude:
|
|
871
|
-
- '**/lib/capistrano/tasks/**/*.rake'
|
|
872
|
-
|
|
873
|
-
Rails/ReadWriteAttribute:
|
|
874
|
-
Description: >-
|
|
875
|
-
Checks for read_attribute(:attr) and
|
|
876
|
-
write_attribute(:attr, val).
|
|
877
|
-
StyleGuide: 'https://rails.rubystyle.guide#read-attribute'
|
|
878
|
-
Enabled: true
|
|
879
|
-
VersionAdded: '0.20'
|
|
880
|
-
VersionChanged: '0.29'
|
|
881
|
-
Include:
|
|
882
|
-
- '**/app/models/**/*.rb'
|
|
883
|
-
|
|
884
|
-
Rails/RedirectBackOrTo:
|
|
885
|
-
Description: >-
|
|
886
|
-
Use `redirect_back_or_to` instead of `redirect_back` with
|
|
887
|
-
`fallback_location` option.
|
|
888
|
-
Enabled: pending
|
|
889
|
-
Severity: warning
|
|
890
|
-
VersionAdded: '2.34'
|
|
891
|
-
|
|
892
|
-
Rails/RedundantActiveRecordAllMethod:
|
|
893
|
-
Description: Detect redundant `all` used as a receiver for Active Record query methods.
|
|
894
|
-
StyleGuide: 'https://rails.rubystyle.guide/#redundant-all'
|
|
895
|
-
Enabled: pending
|
|
896
|
-
Safe: false
|
|
897
|
-
AllowedReceivers:
|
|
898
|
-
- ActionMailer::Preview
|
|
899
|
-
- ActiveSupport::TimeZone
|
|
900
|
-
VersionAdded: '2.21'
|
|
901
|
-
|
|
902
|
-
Rails/RedundantAllowNil:
|
|
903
|
-
Description: >-
|
|
904
|
-
Finds redundant use of `allow_nil` when `allow_blank` is set to
|
|
905
|
-
certain values in model validations.
|
|
906
|
-
Enabled: true
|
|
907
|
-
VersionAdded: '0.67'
|
|
908
|
-
Include:
|
|
909
|
-
- '**/app/models/**/*.rb'
|
|
910
|
-
|
|
911
|
-
Rails/RedundantForeignKey:
|
|
912
|
-
Description: 'Checks for associations where the `:foreign_key` option is redundant.'
|
|
913
|
-
Enabled: true
|
|
914
|
-
VersionAdded: '2.6'
|
|
915
|
-
|
|
916
|
-
Rails/RedundantPresenceValidationOnBelongsTo:
|
|
917
|
-
Description: 'Checks for redundant presence validation on belongs_to association.'
|
|
918
|
-
Enabled: pending
|
|
919
|
-
SafeAutoCorrect: false
|
|
920
|
-
VersionAdded: '2.13'
|
|
921
|
-
|
|
922
|
-
Rails/RedundantReceiverInWithOptions:
|
|
923
|
-
Description: 'Checks for redundant receiver in `with_options`.'
|
|
924
|
-
Enabled: true
|
|
925
|
-
VersionAdded: '0.52'
|
|
926
|
-
|
|
927
|
-
Rails/RedundantTravelBack:
|
|
928
|
-
Description: Checks for redundant `travel_back` calls.
|
|
929
|
-
Enabled: pending
|
|
930
|
-
VersionAdded: '2.12'
|
|
931
|
-
Include:
|
|
932
|
-
- spec/**/*.rb
|
|
933
|
-
- test/**/*.rb
|
|
934
|
-
|
|
935
|
-
Rails/ReflectionClassName:
|
|
936
|
-
Description: 'Use a string for `class_name` option value in the definition of a reflection.'
|
|
937
|
-
Enabled: true
|
|
938
|
-
Safe: false
|
|
939
|
-
VersionAdded: '0.64'
|
|
940
|
-
VersionChanged: '2.10'
|
|
941
|
-
|
|
942
|
-
Rails/RefuteMethods:
|
|
943
|
-
Description: 'Use `assert_not` methods instead of `refute` methods.'
|
|
944
|
-
Enabled: true
|
|
945
|
-
VersionAdded: '0.56'
|
|
946
|
-
EnforcedStyle: assert_not
|
|
947
|
-
SupportedStyles:
|
|
948
|
-
- assert_not
|
|
949
|
-
- refute
|
|
950
|
-
Include:
|
|
951
|
-
- '**/test/**/*'
|
|
952
|
-
|
|
953
|
-
Rails/RelativeDateConstant:
|
|
954
|
-
Description: 'Do not assign relative date to constants.'
|
|
955
|
-
Enabled: true
|
|
956
|
-
SafeAutoCorrect: false
|
|
957
|
-
VersionAdded: '0.48'
|
|
958
|
-
VersionChanged: '2.13'
|
|
959
|
-
|
|
960
|
-
Rails/RenderInline:
|
|
961
|
-
Description: 'Prefer using a template over inline rendering.'
|
|
962
|
-
StyleGuide: 'https://rails.rubystyle.guide/#inline-rendering'
|
|
963
|
-
Enabled: 'pending'
|
|
964
|
-
VersionAdded: '2.7'
|
|
965
|
-
|
|
966
|
-
Rails/RenderPlainText:
|
|
967
|
-
Description: 'Prefer `render plain:` over `render text:`.'
|
|
968
|
-
StyleGuide: 'https://rails.rubystyle.guide/#plain-text-rendering'
|
|
969
|
-
Enabled: 'pending'
|
|
970
|
-
VersionAdded: '2.7'
|
|
971
|
-
# Convert only when `content_type` is explicitly set to `text/plain`.
|
|
972
|
-
ContentTypeCompatibility: true
|
|
973
|
-
|
|
974
|
-
Rails/RequestReferer:
|
|
975
|
-
Description: 'Use consistent syntax for request.referer.'
|
|
976
|
-
Enabled: true
|
|
977
|
-
VersionAdded: '0.41'
|
|
978
|
-
EnforcedStyle: referer
|
|
979
|
-
SupportedStyles:
|
|
980
|
-
- referer
|
|
981
|
-
- referrer
|
|
982
|
-
|
|
983
|
-
Rails/RequireDependency:
|
|
984
|
-
Description: 'Do not use `require_dependency` when running in Zeitwerk mode. `require_dependency` is for autoloading in classic mode.'
|
|
985
|
-
Reference: 'https://guides.rubyonrails.org/autoloading_and_reloading_constants.html'
|
|
986
|
-
Enabled: false
|
|
987
|
-
VersionAdded: '2.10'
|
|
988
|
-
|
|
989
|
-
Rails/ResponseParsedBody:
|
|
990
|
-
Description: Prefer `response.parsed_body` to custom parsing logic for `response.body`.
|
|
991
|
-
Enabled: pending
|
|
992
|
-
Safe: false
|
|
993
|
-
VersionAdded: '2.18'
|
|
994
|
-
VersionChanged: '2.19'
|
|
995
|
-
Include:
|
|
996
|
-
- spec/controllers/**/*.rb
|
|
997
|
-
- spec/requests/**/*.rb
|
|
998
|
-
- test/controllers/**/*.rb
|
|
999
|
-
- test/integration/**/*.rb
|
|
1000
|
-
|
|
1001
|
-
Rails/ReversibleMigration:
|
|
1002
|
-
Description: 'Checks whether the change method of the migration file is reversible.'
|
|
1003
|
-
StyleGuide: 'https://rails.rubystyle.guide#reversible-migration'
|
|
1004
|
-
Reference: 'https://api.rubyonrails.org/classes/ActiveRecord/Migration/CommandRecorder.html'
|
|
1005
|
-
Enabled: true
|
|
1006
|
-
VersionAdded: '0.47'
|
|
1007
|
-
VersionChanged: '2.13'
|
|
1008
|
-
Include:
|
|
1009
|
-
- db/**/*.rb
|
|
1010
|
-
|
|
1011
|
-
Rails/ReversibleMigrationMethodDefinition:
|
|
1012
|
-
Description: 'Checks whether the migration implements either a `change` method or both an `up` and a `down` method.'
|
|
1013
|
-
Enabled: false
|
|
1014
|
-
VersionAdded: '2.10'
|
|
1015
|
-
VersionChanged: '2.13'
|
|
1016
|
-
Include:
|
|
1017
|
-
- db/**/*.rb
|
|
1018
|
-
|
|
1019
|
-
Rails/RootJoinChain:
|
|
1020
|
-
Description: 'Use a single `#join` instead of chaining on `Rails.root` or `Rails.public_path`.'
|
|
1021
|
-
Enabled: pending
|
|
1022
|
-
VersionAdded: '2.13'
|
|
1023
|
-
|
|
1024
|
-
Rails/RootPathnameMethods:
|
|
1025
|
-
Description: 'Use `Rails.root` IO methods instead of passing it to `File`.'
|
|
1026
|
-
Enabled: pending
|
|
1027
|
-
SafeAutoCorrect: false
|
|
1028
|
-
VersionAdded: '2.16'
|
|
1029
|
-
|
|
1030
|
-
Rails/RootPublicPath:
|
|
1031
|
-
Description: "Favor `Rails.public_path` over `Rails.root` with `'public'`."
|
|
1032
|
-
Enabled: pending
|
|
1033
|
-
VersionAdded: '2.15'
|
|
1034
|
-
|
|
1035
|
-
Rails/SafeNavigation:
|
|
1036
|
-
Description: "Use Ruby's safe navigation operator (`&.`) instead of `try!`."
|
|
1037
|
-
Enabled: true
|
|
1038
|
-
VersionAdded: '0.43'
|
|
1039
|
-
# This will convert usages of `try` to use safe navigation as well as `try!`.
|
|
1040
|
-
# `try` and `try!` work slightly differently. `try!` and safe navigation will
|
|
1041
|
-
# both raise a `NoMethodError` if the receiver of the method call does not
|
|
1042
|
-
# implement the intended method. `try` will not raise an exception for this.
|
|
1043
|
-
ConvertTry: false
|
|
1044
|
-
|
|
1045
|
-
Rails/SafeNavigationWithBlank:
|
|
1046
|
-
Description: 'Avoid `foo&.blank?` in conditionals.'
|
|
1047
|
-
Enabled: true
|
|
1048
|
-
VersionAdded: '2.4'
|
|
1049
|
-
# While the safe navigation operator is generally a good idea, when
|
|
1050
|
-
# checking `foo&.blank?` in a conditional, `foo` being `nil` will actually
|
|
1051
|
-
# do the opposite of what the author intends.
|
|
1052
|
-
#
|
|
1053
|
-
# foo&.blank? #=> nil
|
|
1054
|
-
# foo.blank? #=> true
|
|
1055
|
-
SafeAutoCorrect: false
|
|
1056
|
-
|
|
1057
|
-
Rails/SaveBang:
|
|
1058
|
-
Description: 'Identifies possible cases where Active Record save! or related should be used.'
|
|
1059
|
-
StyleGuide: 'https://rails.rubystyle.guide#save-bang'
|
|
1060
|
-
Enabled: false
|
|
1061
|
-
VersionAdded: '0.42'
|
|
1062
|
-
VersionChanged: '0.59'
|
|
1063
|
-
AllowImplicitReturn: true
|
|
1064
|
-
AllowedReceivers: []
|
|
1065
|
-
SafeAutoCorrect: false
|
|
1066
|
-
|
|
1067
|
-
Rails/SchemaComment:
|
|
1068
|
-
Description: >-
|
|
1069
|
-
Enforces the use of the `comment` option when adding a new table or column
|
|
1070
|
-
to the database during a migration.
|
|
1071
|
-
Enabled: false
|
|
1072
|
-
VersionAdded: '2.13'
|
|
1073
|
-
|
|
1074
|
-
Rails/ScopeArgs:
|
|
1075
|
-
Description: 'Checks the arguments of ActiveRecord scopes.'
|
|
1076
|
-
Enabled: true
|
|
1077
|
-
VersionAdded: '0.19'
|
|
1078
|
-
VersionChanged: '2.12'
|
|
1079
|
-
Include:
|
|
1080
|
-
- '**/app/models/**/*.rb'
|
|
1081
|
-
|
|
1082
|
-
Rails/SelectMap:
|
|
1083
|
-
Description: 'Checks for uses of `select(:column_name)` with `map(&:column_name)`.'
|
|
1084
|
-
Enabled: pending
|
|
1085
|
-
Safe: false
|
|
1086
|
-
VersionAdded: '2.21'
|
|
1087
|
-
|
|
1088
|
-
Rails/ShortI18n:
|
|
1089
|
-
Description: 'Use the short form of the I18n methods: `t` instead of `translate` and `l` instead of `localize`.'
|
|
1090
|
-
StyleGuide: 'https://rails.rubystyle.guide/#short-i18n'
|
|
1091
|
-
Enabled: 'pending'
|
|
1092
|
-
VersionAdded: '2.7'
|
|
1093
|
-
EnforcedStyle: conservative
|
|
1094
|
-
SupportedStyles:
|
|
1095
|
-
- conservative
|
|
1096
|
-
- aggressive
|
|
1097
|
-
|
|
1098
|
-
Rails/SkipsModelValidations:
|
|
1099
|
-
Description: >-
|
|
1100
|
-
Use methods that skips model validations with caution.
|
|
1101
|
-
See reference for more information.
|
|
1102
|
-
Reference: 'https://guides.rubyonrails.org/active_record_validations.html#skipping-validations'
|
|
1103
|
-
Enabled: true
|
|
1104
|
-
Safe: false
|
|
1105
|
-
VersionAdded: '0.47'
|
|
1106
|
-
VersionChanged: '2.25'
|
|
1107
|
-
ForbiddenMethods:
|
|
1108
|
-
- decrement!
|
|
1109
|
-
- decrement_counter
|
|
1110
|
-
- increment!
|
|
1111
|
-
- increment_counter
|
|
1112
|
-
- insert
|
|
1113
|
-
- insert!
|
|
1114
|
-
- insert_all
|
|
1115
|
-
- insert_all!
|
|
1116
|
-
- toggle!
|
|
1117
|
-
- touch
|
|
1118
|
-
- touch_all
|
|
1119
|
-
- update_all
|
|
1120
|
-
- update_attribute
|
|
1121
|
-
- update_column
|
|
1122
|
-
- update_columns
|
|
1123
|
-
- update_counters
|
|
1124
|
-
- upsert
|
|
1125
|
-
- upsert_all
|
|
1126
|
-
AllowedMethods: []
|
|
1127
|
-
|
|
1128
|
-
Rails/SquishedSQLHeredocs:
|
|
1129
|
-
Description: 'Checks SQL heredocs to use `.squish`.'
|
|
1130
|
-
StyleGuide: 'https://rails.rubystyle.guide/#squished-heredocs'
|
|
1131
|
-
Enabled: 'pending'
|
|
1132
|
-
VersionAdded: '2.8'
|
|
1133
|
-
VersionChanged: '2.9'
|
|
1134
|
-
# Some SQL syntax (e.g. PostgreSQL comments and functions) requires newlines
|
|
1135
|
-
# to be preserved in order to work, thus autocorrection is not safe.
|
|
1136
|
-
SafeAutoCorrect: false
|
|
1137
|
-
|
|
1138
|
-
Rails/StripHeredoc:
|
|
1139
|
-
Description: 'Enforces the use of squiggly heredoc over `strip_heredoc`.'
|
|
1140
|
-
StyleGuide: 'https://rails.rubystyle.guide/#prefer-squiggly-heredoc'
|
|
1141
|
-
Enabled: pending
|
|
1142
|
-
VersionAdded: '2.15'
|
|
1143
|
-
|
|
1144
|
-
Rails/StrongParametersExpect:
|
|
1145
|
-
Description: 'Enforces the use of `ActionController::Parameters#expect` as a method for strong parameter handling.'
|
|
1146
|
-
Reference: 'https://api.rubyonrails.org/classes/ActionController/Parameters.html#method-i-expect'
|
|
1147
|
-
Enabled: pending
|
|
1148
|
-
Include:
|
|
1149
|
-
- '**/app/controllers/**/*.rb'
|
|
1150
|
-
SafeAutoCorrect: false
|
|
1151
|
-
VersionAdded: '2.29'
|
|
1152
|
-
|
|
1153
|
-
Rails/TableNameAssignment:
|
|
1154
|
-
Description: >-
|
|
1155
|
-
Do not use `self.table_name =`. Use Inflections or `table_name_prefix` instead.
|
|
1156
|
-
StyleGuide: 'https://rails.rubystyle.guide/#keep-ar-defaults'
|
|
1157
|
-
Enabled: false
|
|
1158
|
-
VersionAdded: '2.14'
|
|
1159
|
-
Include:
|
|
1160
|
-
- '**/app/models/**/*.rb'
|
|
1161
|
-
|
|
1162
|
-
Rails/ThreeStateBooleanColumn:
|
|
1163
|
-
Description: 'Add a default value and a `NOT NULL` constraint to boolean columns.'
|
|
1164
|
-
StyleGuide: 'https://rails.rubystyle.guide/#three-state-boolean'
|
|
1165
|
-
Enabled: pending
|
|
1166
|
-
VersionAdded: '2.19'
|
|
1167
|
-
Include:
|
|
1168
|
-
- db/**/*.rb
|
|
1169
|
-
|
|
1170
|
-
Rails/TimeZone:
|
|
1171
|
-
Description: 'Checks the correct usage of time zone aware methods.'
|
|
1172
|
-
StyleGuide: 'https://rails.rubystyle.guide#time'
|
|
1173
|
-
Reference: 'https://danilenko.org/2012/7/6/rails_timezones'
|
|
1174
|
-
Enabled: true
|
|
1175
|
-
SafeAutoCorrect: false
|
|
1176
|
-
VersionAdded: '0.30'
|
|
1177
|
-
VersionChanged: '2.13'
|
|
1178
|
-
# The value `strict` means that `Time` should be used with `zone`.
|
|
1179
|
-
# The value `flexible` allows usage of `in_time_zone` instead of `zone`.
|
|
1180
|
-
EnforcedStyle: flexible
|
|
1181
|
-
SupportedStyles:
|
|
1182
|
-
- strict
|
|
1183
|
-
- flexible
|
|
1184
|
-
Exclude:
|
|
1185
|
-
- '**/*.gemspec'
|
|
1186
|
-
|
|
1187
|
-
Rails/TimeZoneAssignment:
|
|
1188
|
-
Description: 'Prefer the usage of `Time.use_zone` instead of manually updating `Time.zone` value.'
|
|
1189
|
-
Reference: 'https://thoughtbot.com/blog/its-about-time-zones'
|
|
1190
|
-
Enabled: 'pending'
|
|
1191
|
-
VersionAdded: '2.10'
|
|
1192
|
-
Include:
|
|
1193
|
-
- spec/**/*.rb
|
|
1194
|
-
- test/**/*.rb
|
|
1195
|
-
|
|
1196
|
-
Rails/ToFormattedS:
|
|
1197
|
-
Description: 'Checks for consistent uses of `to_fs` or `to_formatted_s`.'
|
|
1198
|
-
StyleGuide: 'https://rails.rubystyle.guide/#prefer-to-fs'
|
|
1199
|
-
Enabled: pending
|
|
1200
|
-
EnforcedStyle: to_fs
|
|
1201
|
-
SupportedStyles:
|
|
1202
|
-
- to_fs
|
|
1203
|
-
- to_formatted_s
|
|
1204
|
-
VersionAdded: '2.15'
|
|
1205
|
-
|
|
1206
|
-
Rails/ToSWithArgument:
|
|
1207
|
-
Description: 'Identifies passing any argument to `#to_s`.'
|
|
1208
|
-
Enabled: pending
|
|
1209
|
-
Safe: false
|
|
1210
|
-
VersionAdded: '2.16'
|
|
1211
|
-
|
|
1212
|
-
Rails/TopLevelHashWithIndifferentAccess:
|
|
1213
|
-
Description: 'Identifies top-level `HashWithIndifferentAccess`.'
|
|
1214
|
-
Reference: 'https://guides.rubyonrails.org/upgrading_ruby_on_rails.html#top-level-hashwithindifferentaccess-is-soft-deprecated'
|
|
1215
|
-
Enabled: pending
|
|
1216
|
-
Severity: warning
|
|
1217
|
-
VersionAdded: '2.16'
|
|
1218
|
-
VersionChanged: '2.18'
|
|
1219
|
-
|
|
1220
|
-
Rails/TransactionExitStatement:
|
|
1221
|
-
Description: 'Avoid the usage of `return`, `break` and `throw` in transaction blocks.'
|
|
1222
|
-
Reference:
|
|
1223
|
-
- https://github.com/rails/rails/commit/15aa4200e083
|
|
1224
|
-
Enabled: pending
|
|
1225
|
-
VersionAdded: '2.14'
|
|
1226
|
-
TransactionMethods: []
|
|
1227
|
-
|
|
1228
|
-
Rails/UniqBeforePluck:
|
|
1229
|
-
Description: 'Prefer the use of uniq or distinct before pluck.'
|
|
1230
|
-
Enabled: true
|
|
1231
|
-
VersionAdded: '0.40'
|
|
1232
|
-
VersionChanged: '2.13'
|
|
1233
|
-
EnforcedStyle: conservative
|
|
1234
|
-
SupportedStyles:
|
|
1235
|
-
- conservative
|
|
1236
|
-
- aggressive
|
|
1237
|
-
SafeAutoCorrect: false
|
|
1238
|
-
|
|
1239
|
-
Rails/UniqueValidationWithoutIndex:
|
|
1240
|
-
Description: 'Uniqueness validation should have a unique index on the database column.'
|
|
1241
|
-
Enabled: true
|
|
1242
|
-
VersionAdded: '2.5'
|
|
1243
|
-
Include:
|
|
1244
|
-
- '**/app/models/**/*.rb'
|
|
1245
|
-
|
|
1246
|
-
Rails/UnknownEnv:
|
|
1247
|
-
Description: 'Use correct environment name.'
|
|
1248
|
-
Enabled: true
|
|
1249
|
-
Severity: warning
|
|
1250
|
-
VersionAdded: '0.51'
|
|
1251
|
-
VersionChanged: '2.18'
|
|
1252
|
-
Environments:
|
|
1253
|
-
- development
|
|
1254
|
-
- test
|
|
1255
|
-
- production
|
|
1256
|
-
|
|
1257
|
-
Rails/UnusedIgnoredColumns:
|
|
1258
|
-
Description: 'Remove a column that does not exist from `ignored_columns`.'
|
|
1259
|
-
Enabled: false
|
|
1260
|
-
VersionAdded: '2.11'
|
|
1261
|
-
VersionChanged: '2.25'
|
|
1262
|
-
Include:
|
|
1263
|
-
- '**/app/models/**/*.rb'
|
|
1264
|
-
|
|
1265
|
-
Rails/UnusedRenderContent:
|
|
1266
|
-
Description: 'Do not specify body content for a response with a non-content status code.'
|
|
1267
|
-
Enabled: pending
|
|
1268
|
-
Severity: warning
|
|
1269
|
-
VersionAdded: '2.21'
|
|
1270
|
-
|
|
1271
|
-
Rails/Validation:
|
|
1272
|
-
Description: 'Use validates :attribute, hash of validations.'
|
|
1273
|
-
Enabled: true
|
|
1274
|
-
VersionAdded: '0.9'
|
|
1275
|
-
VersionChanged: '0.41'
|
|
1276
|
-
Include:
|
|
1277
|
-
- '**/app/models/**/*.rb'
|
|
1278
|
-
|
|
1279
|
-
Rails/WhereEquals:
|
|
1280
|
-
Description: 'Pass conditions to `where` and `where.not` as a hash instead of manually constructing SQL.'
|
|
1281
|
-
StyleGuide: 'https://rails.rubystyle.guide/#hash-conditions'
|
|
1282
|
-
Enabled: 'pending'
|
|
1283
|
-
SafeAutoCorrect: false
|
|
1284
|
-
VersionAdded: '2.9'
|
|
1285
|
-
VersionChanged: '2.26'
|
|
1286
|
-
|
|
1287
|
-
Rails/WhereExists:
|
|
1288
|
-
Description: 'Prefer `exists?(...)` over `where(...).exists?`.'
|
|
1289
|
-
Enabled: 'pending'
|
|
1290
|
-
SafeAutoCorrect: false
|
|
1291
|
-
EnforcedStyle: exists
|
|
1292
|
-
SupportedStyles:
|
|
1293
|
-
- exists
|
|
1294
|
-
- where
|
|
1295
|
-
VersionAdded: '2.7'
|
|
1296
|
-
VersionChanged: '2.10'
|
|
1297
|
-
|
|
1298
|
-
Rails/WhereMissing:
|
|
1299
|
-
Description: 'Use `where.missing(...)` to find missing relationship records.'
|
|
1300
|
-
StyleGuide: 'https://rails.rubystyle.guide/#finding-missing-relationship-records'
|
|
1301
|
-
Enabled: pending
|
|
1302
|
-
VersionAdded: '2.16'
|
|
1303
|
-
|
|
1304
|
-
Rails/WhereNot:
|
|
1305
|
-
Description: 'Use `where.not(...)` instead of manually constructing negated SQL in `where`.'
|
|
1306
|
-
StyleGuide: 'https://rails.rubystyle.guide/#hash-conditions'
|
|
1307
|
-
Enabled: 'pending'
|
|
1308
|
-
VersionAdded: '2.8'
|
|
1309
|
-
|
|
1310
|
-
Rails/WhereNotWithMultipleConditions:
|
|
1311
|
-
Description: 'Do not use `where.not(...)` with multiple conditions.'
|
|
1312
|
-
StyleGuide: 'https://rails.rubystyle.guide/#where-not-with-multiple-attributes'
|
|
1313
|
-
Enabled: 'pending'
|
|
1314
|
-
Severity: warning
|
|
1315
|
-
VersionAdded: '2.17'
|
|
1316
|
-
VersionChanged: '2.18'
|
|
1317
|
-
|
|
1318
|
-
Rails/WhereRange:
|
|
1319
|
-
Description: 'Use ranges in `where` instead of manually constructing SQL.'
|
|
1320
|
-
StyleGuide: 'https://rails.rubystyle.guide/#where-ranges'
|
|
1321
|
-
Enabled: pending
|
|
1322
|
-
SafeAutoCorrect: false
|
|
1323
|
-
VersionAdded: '2.25'
|
|
1324
|
-
|
|
1325
|
-
# Accept `redirect_to(...) and return` and similar cases.
|
|
1326
|
-
Style/AndOr:
|
|
1327
|
-
EnforcedStyle: conditionals
|
|
1328
|
-
|
|
1329
|
-
Style/CollectionCompact:
|
|
1330
|
-
AllowedReceivers:
|
|
1331
|
-
- params
|
|
1332
|
-
|
|
1333
|
-
Style/FormatStringToken:
|
|
1334
|
-
AllowedMethods:
|
|
1335
|
-
- redirect
|
|
1336
|
-
|
|
1337
|
-
Style/InvertibleUnlessCondition:
|
|
1338
|
-
InverseMethods:
|
|
1339
|
-
# Active Support defines some common inverse methods. They are listed below:
|
|
1340
|
-
:present?: :blank?
|
|
1341
|
-
:blank?: :present?
|
|
1342
|
-
:include?: :exclude?
|
|
1343
|
-
:exclude?: :include?
|
|
1344
|
-
|
|
1345
|
-
Style/SymbolProc:
|
|
1346
|
-
AllowedMethods:
|
|
1347
|
-
- define_method
|
|
1348
|
-
- mail
|
|
1349
|
-
- respond_to
|