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,2297 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require_relative "errors"
|
|
4
|
-
require_relative "response_parser/parser_utils"
|
|
5
|
-
|
|
6
|
-
module Net
|
|
7
|
-
class IMAP < Protocol
|
|
8
|
-
|
|
9
|
-
# Parses an \IMAP server response.
|
|
10
|
-
class ResponseParser
|
|
11
|
-
include ParserUtils
|
|
12
|
-
extend ParserUtils::Generator
|
|
13
|
-
|
|
14
|
-
attr_reader :config
|
|
15
|
-
|
|
16
|
-
# Creates a new ResponseParser.
|
|
17
|
-
#
|
|
18
|
-
# When +config+ is frozen or global, the parser #config inherits from it.
|
|
19
|
-
# Otherwise, +config+ will be used directly.
|
|
20
|
-
def initialize(config: Config.global)
|
|
21
|
-
@str = nil
|
|
22
|
-
@pos = nil
|
|
23
|
-
@lex_state = nil
|
|
24
|
-
@token = nil
|
|
25
|
-
@config = Config[config]
|
|
26
|
-
@config = @config.new if @config == Config.global || @config.frozen?
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
# :call-seq:
|
|
30
|
-
# parse(str) -> ContinuationRequest
|
|
31
|
-
# parse(str) -> UntaggedResponse
|
|
32
|
-
# parse(str) -> TaggedResponse
|
|
33
|
-
#
|
|
34
|
-
# Raises ResponseParseError for unparsable strings.
|
|
35
|
-
def parse(str)
|
|
36
|
-
@str = str
|
|
37
|
-
@pos = 0
|
|
38
|
-
@lex_state = EXPR_BEG
|
|
39
|
-
@token = nil
|
|
40
|
-
return response
|
|
41
|
-
rescue ResponseParseError => error
|
|
42
|
-
if config.debug?
|
|
43
|
-
warn error.detailed_message(parser_state: true, parser_backtrace: true)
|
|
44
|
-
end
|
|
45
|
-
raise
|
|
46
|
-
end
|
|
47
|
-
|
|
48
|
-
private
|
|
49
|
-
|
|
50
|
-
# :stopdoc:
|
|
51
|
-
|
|
52
|
-
EXPR_BEG = :EXPR_BEG # the default, used in most places
|
|
53
|
-
EXPR_DATA = :EXPR_DATA # envelope, body(structure), namespaces
|
|
54
|
-
|
|
55
|
-
T_SPACE = :SPACE # atom special
|
|
56
|
-
T_ATOM = :ATOM # atom (subset of astring chars)
|
|
57
|
-
T_NIL = :NIL # subset of atom and label
|
|
58
|
-
T_NUMBER = :NUMBER # subset of atom
|
|
59
|
-
T_LBRA = :LBRA # subset of atom
|
|
60
|
-
T_PLUS = :PLUS # subset of atom; tag special
|
|
61
|
-
T_RBRA = :RBRA # atom special; resp_special; valid astring char
|
|
62
|
-
T_QUOTED = :QUOTED # starts/end with atom special
|
|
63
|
-
T_BSLASH = :BSLASH # atom special; quoted special
|
|
64
|
-
T_LPAR = :LPAR # atom special; paren list delimiter
|
|
65
|
-
T_RPAR = :RPAR # atom special; paren list delimiter
|
|
66
|
-
T_STAR = :STAR # atom special; list wildcard
|
|
67
|
-
T_PERCENT = :PERCENT # atom special; list wildcard
|
|
68
|
-
T_LITERAL = :LITERAL # starts with atom special
|
|
69
|
-
T_LITERAL8 = :LITERAL8 # starts with atom char "~"
|
|
70
|
-
T_CRLF = :CRLF # atom special; text special; quoted special
|
|
71
|
-
T_TEXT = :TEXT # any char except CRLF
|
|
72
|
-
T_EOF = :EOF # end of response string
|
|
73
|
-
|
|
74
|
-
module ResponseConditions
|
|
75
|
-
OK = "OK"
|
|
76
|
-
NO = "NO"
|
|
77
|
-
BAD = "BAD"
|
|
78
|
-
BYE = "BYE"
|
|
79
|
-
PREAUTH = "PREAUTH"
|
|
80
|
-
|
|
81
|
-
RESP_COND_STATES = [OK, NO, BAD ].freeze
|
|
82
|
-
RESP_DATA_CONDS = [OK, NO, BAD, BYE, ].freeze
|
|
83
|
-
AUTH_CONDS = [OK, PREAUTH].freeze
|
|
84
|
-
GREETING_CONDS = [OK, BYE, PREAUTH].freeze
|
|
85
|
-
RESP_CONDS = [OK, NO, BAD, BYE, PREAUTH].freeze
|
|
86
|
-
end
|
|
87
|
-
include ResponseConditions
|
|
88
|
-
|
|
89
|
-
module Patterns
|
|
90
|
-
|
|
91
|
-
module CharClassSubtraction
|
|
92
|
-
refine Regexp do
|
|
93
|
-
def -(rhs); /[#{source}&&[^#{rhs.source}]]/n.freeze end
|
|
94
|
-
end
|
|
95
|
-
end
|
|
96
|
-
using CharClassSubtraction
|
|
97
|
-
|
|
98
|
-
# From RFC5234, "Augmented BNF for Syntax Specifications: ABNF"
|
|
99
|
-
# >>>
|
|
100
|
-
# ALPHA = %x41-5A / %x61-7A ; A-Z / a-z
|
|
101
|
-
# CHAR = %x01-7F
|
|
102
|
-
# CRLF = CR LF
|
|
103
|
-
# ; Internet standard newline
|
|
104
|
-
# CTL = %x00-1F / %x7F
|
|
105
|
-
# ; controls
|
|
106
|
-
# DIGIT = %x30-39
|
|
107
|
-
# ; 0-9
|
|
108
|
-
# DQUOTE = %x22
|
|
109
|
-
# ; " (Double Quote)
|
|
110
|
-
# HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
|
|
111
|
-
# OCTET = %x00-FF
|
|
112
|
-
# SP = %x20
|
|
113
|
-
module RFC5234
|
|
114
|
-
ALPHA = /[A-Za-z]/n
|
|
115
|
-
CHAR = /[\x01-\x7f]/n
|
|
116
|
-
CRLF = /\r\n/n
|
|
117
|
-
CTL = /[\x00-\x1F\x7F]/n
|
|
118
|
-
DIGIT = /\d/n
|
|
119
|
-
DQUOTE = /"/n
|
|
120
|
-
HEXDIG = /\h/
|
|
121
|
-
OCTET = /[\x00-\xFF]/n # not using /./m for embedding purposes
|
|
122
|
-
SP = / /n
|
|
123
|
-
end
|
|
124
|
-
|
|
125
|
-
# UTF-8, a transformation format of ISO 10646
|
|
126
|
-
# >>>
|
|
127
|
-
# UTF8-1 = %x00-7F
|
|
128
|
-
# UTF8-tail = %x80-BF
|
|
129
|
-
# UTF8-2 = %xC2-DF UTF8-tail
|
|
130
|
-
# UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
|
|
131
|
-
# %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
|
|
132
|
-
# UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
|
|
133
|
-
# %xF4 %x80-8F 2( UTF8-tail )
|
|
134
|
-
# UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
|
|
135
|
-
# UTF8-octets = *( UTF8-char )
|
|
136
|
-
#
|
|
137
|
-
# n.b. String * Integer is used for repetition, rather than /x{3}/,
|
|
138
|
-
# because ruby 3.2's linear-time cache-based optimization doesn't work
|
|
139
|
-
# with "bounded or fixed times repetition nesting in another repetition
|
|
140
|
-
# (e.g. /(a{2,3})*/). It is an implementation issue entirely, but we
|
|
141
|
-
# believe it is hard to support this case correctly."
|
|
142
|
-
# See https://bugs.ruby-lang.org/issues/19104
|
|
143
|
-
module RFC3629
|
|
144
|
-
UTF8_1 = /[\x00-\x7f]/n # aka ASCII 7bit
|
|
145
|
-
UTF8_TAIL = /[\x80-\xBF]/n
|
|
146
|
-
UTF8_2 = /[\xC2-\xDF]#{UTF8_TAIL}/n
|
|
147
|
-
UTF8_3 = Regexp.union(/\xE0[\xA0-\xBF]#{UTF8_TAIL}/n,
|
|
148
|
-
/\xED[\x80-\x9F]#{UTF8_TAIL}/n,
|
|
149
|
-
/[\xE1-\xEC]#{ UTF8_TAIL.source * 2}/n,
|
|
150
|
-
/[\xEE-\xEF]#{ UTF8_TAIL.source * 2}/n)
|
|
151
|
-
UTF8_4 = Regexp.union(/[\xF1-\xF3]#{ UTF8_TAIL.source * 3}/n,
|
|
152
|
-
/\xF0[\x90-\xBF]#{UTF8_TAIL.source * 2}/n,
|
|
153
|
-
/\xF4[\x80-\x8F]#{UTF8_TAIL.source * 2}/n)
|
|
154
|
-
UTF8_CHAR = Regexp.union(UTF8_1, UTF8_2, UTF8_3, UTF8_4)
|
|
155
|
-
UTF8_OCTETS = /#{UTF8_CHAR}*/n
|
|
156
|
-
end
|
|
157
|
-
|
|
158
|
-
include RFC5234
|
|
159
|
-
include RFC3629
|
|
160
|
-
|
|
161
|
-
# CHAR8 = %x01-ff
|
|
162
|
-
# ; any OCTET except NUL, %x00
|
|
163
|
-
CHAR8 = /[\x01-\xff]/n
|
|
164
|
-
|
|
165
|
-
# list-wildcards = "%" / "*"
|
|
166
|
-
LIST_WILDCARDS = /[%*]/n
|
|
167
|
-
# quoted-specials = DQUOTE / "\"
|
|
168
|
-
QUOTED_SPECIALS = /["\\]/n
|
|
169
|
-
# resp-specials = "]"
|
|
170
|
-
RESP_SPECIALS = /[\]]/n
|
|
171
|
-
|
|
172
|
-
# atomish = 1*<any ATOM-CHAR except "[">
|
|
173
|
-
# ; We use "atomish" for msg-att and section, in order
|
|
174
|
-
# ; to simplify "BODY[HEADER.FIELDS (foo bar)]".
|
|
175
|
-
#
|
|
176
|
-
# atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards /
|
|
177
|
-
# quoted-specials / resp-specials
|
|
178
|
-
# ATOM-CHAR = <any CHAR except atom-specials>
|
|
179
|
-
# atom = 1*ATOM-CHAR
|
|
180
|
-
# ASTRING-CHAR = ATOM-CHAR / resp-specials
|
|
181
|
-
# tag = 1*<any ASTRING-CHAR except "+">
|
|
182
|
-
|
|
183
|
-
ATOM_SPECIALS = /[(){ \x00-\x1f\x7f%*"\\\]]/n
|
|
184
|
-
ASTRING_SPECIALS = /[(){ \x00-\x1f\x7f%*"\\]/n
|
|
185
|
-
|
|
186
|
-
ASTRING_CHAR = CHAR - ASTRING_SPECIALS
|
|
187
|
-
ATOM_CHAR = CHAR - ATOM_SPECIALS
|
|
188
|
-
|
|
189
|
-
ATOM = /#{ATOM_CHAR}+/n
|
|
190
|
-
ASTRING_CHARS = /#{ASTRING_CHAR}+/n
|
|
191
|
-
ATOMISH = /#{ATOM_CHAR - /[\[]/ }+/
|
|
192
|
-
TAG = /#{ASTRING_CHAR - /[+]/ }+/
|
|
193
|
-
|
|
194
|
-
# TEXT-CHAR = <any CHAR except CR and LF>
|
|
195
|
-
TEXT_CHAR = CHAR - /[\r\n]/
|
|
196
|
-
|
|
197
|
-
# resp-text-code = ... / atom [SP 1*<any TEXT-CHAR except "]">]
|
|
198
|
-
CODE_TEXT_CHAR = TEXT_CHAR - RESP_SPECIALS
|
|
199
|
-
CODE_TEXT = /#{CODE_TEXT_CHAR}+/n
|
|
200
|
-
|
|
201
|
-
# flag = "\Answered" / "\Flagged" / "\Deleted" /
|
|
202
|
-
# "\Seen" / "\Draft" / flag-keyword / flag-extension
|
|
203
|
-
# ; Does not include "\Recent"
|
|
204
|
-
# flag-extension = "\" atom
|
|
205
|
-
# ; Future expansion. Client implementations
|
|
206
|
-
# ; MUST accept flag-extension flags. Server
|
|
207
|
-
# ; implementations MUST NOT generate
|
|
208
|
-
# ; flag-extension flags except as defined by
|
|
209
|
-
# ; a future Standard or Standards Track
|
|
210
|
-
# ; revisions of this specification.
|
|
211
|
-
# flag-keyword = "$MDNSent" / "$Forwarded" / "$Junk" /
|
|
212
|
-
# "$NotJunk" / "$Phishing" / atom
|
|
213
|
-
#
|
|
214
|
-
# flag-perm = flag / "\*"
|
|
215
|
-
#
|
|
216
|
-
# Not checking for max one mbx-list-sflag in the parser.
|
|
217
|
-
# >>>
|
|
218
|
-
# mbx-list-oflag = "\Noinferiors" / child-mbox-flag /
|
|
219
|
-
# "\Subscribed" / "\Remote" / flag-extension
|
|
220
|
-
# ; Other flags; multiple from this list are
|
|
221
|
-
# ; possible per LIST response, but each flag
|
|
222
|
-
# ; can only appear once per LIST response
|
|
223
|
-
# mbx-list-sflag = "\NonExistent" / "\Noselect" / "\Marked" /
|
|
224
|
-
# "\Unmarked"
|
|
225
|
-
# ; Selectability flags; only one per LIST response
|
|
226
|
-
# child-mbox-flag = "\HasChildren" / "\HasNoChildren"
|
|
227
|
-
# ; attributes for the CHILDREN return option, at most
|
|
228
|
-
# ; one possible per LIST response
|
|
229
|
-
FLAG = /\\?#{ATOM}/n
|
|
230
|
-
FLAG_EXTENSION = /\\#{ATOM}/n
|
|
231
|
-
FLAG_KEYWORD = ATOM
|
|
232
|
-
FLAG_PERM = Regexp.union(FLAG, "\\*")
|
|
233
|
-
MBX_FLAG = FLAG_EXTENSION
|
|
234
|
-
|
|
235
|
-
# flag-list = "(" [flag *(SP flag)] ")"
|
|
236
|
-
# resp-text-code =/ "PERMANENTFLAGS" SP
|
|
237
|
-
# "(" [flag-perm *(SP flag-perm)] ")"
|
|
238
|
-
# mbx-list-flags = *(mbx-list-oflag SP) mbx-list-sflag
|
|
239
|
-
# *(SP mbx-list-oflag) /
|
|
240
|
-
# mbx-list-oflag *(SP mbx-list-oflag)
|
|
241
|
-
# (Not checking for max one mbx-list-sflag in the parser.)
|
|
242
|
-
FLAG_LIST = /\G\((#{FLAG }(?:#{SP}#{FLAG })*|)\)/ni
|
|
243
|
-
FLAG_PERM_LIST = /\G\((#{FLAG_PERM}(?:#{SP}#{FLAG_PERM})*|)\)/ni
|
|
244
|
-
MBX_LIST_FLAGS = /\G (#{MBX_FLAG }(?:#{SP}#{MBX_FLAG })*) /nix
|
|
245
|
-
|
|
246
|
-
# Gmail allows SP and "]" in flags.......
|
|
247
|
-
QUIRKY_FLAG = Regexp.union(/\\?#{ASTRING_CHARS}/n, "\\*")
|
|
248
|
-
QUIRKY_FLAGS_LIST = /\G\(( [^)]* )\)/nx
|
|
249
|
-
|
|
250
|
-
# RFC3501:
|
|
251
|
-
# QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
|
|
252
|
-
# "\" quoted-specials
|
|
253
|
-
# RFC9051:
|
|
254
|
-
# QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
|
|
255
|
-
# "\" quoted-specials / UTF8-2 / UTF8-3 / UTF8-4
|
|
256
|
-
# RFC3501 & RFC9051:
|
|
257
|
-
# quoted = DQUOTE *QUOTED-CHAR DQUOTE
|
|
258
|
-
QUOTED_CHAR_safe = TEXT_CHAR - QUOTED_SPECIALS
|
|
259
|
-
QUOTED_CHAR_esc = /\\#{QUOTED_SPECIALS}/n
|
|
260
|
-
QUOTED_CHAR_rev1 = Regexp.union(QUOTED_CHAR_safe, QUOTED_CHAR_esc)
|
|
261
|
-
QUOTED_CHAR_rev2 = Regexp.union(QUOTED_CHAR_rev1,
|
|
262
|
-
UTF8_2, UTF8_3, UTF8_4)
|
|
263
|
-
QUOTED_rev1 = /"(#{QUOTED_CHAR_rev1}*)"/n
|
|
264
|
-
QUOTED_rev2 = /"(#{QUOTED_CHAR_rev2}*)"/n
|
|
265
|
-
|
|
266
|
-
# RFC3501:
|
|
267
|
-
# text = 1*TEXT-CHAR
|
|
268
|
-
# RFC9051:
|
|
269
|
-
# text = 1*(TEXT-CHAR / UTF8-2 / UTF8-3 / UTF8-4)
|
|
270
|
-
# ; Non-ASCII text can only be returned
|
|
271
|
-
# ; after ENABLE IMAP4rev2 command
|
|
272
|
-
TEXT_rev1 = /#{TEXT_CHAR}+/
|
|
273
|
-
TEXT_rev2 = /#{Regexp.union TEXT_CHAR, UTF8_2, UTF8_3, UTF8_4}+/
|
|
274
|
-
|
|
275
|
-
# tagged-label-fchar = ALPHA / "-" / "_" / "."
|
|
276
|
-
TAGGED_LABEL_FCHAR = /[a-zA-Z\-_.]/n
|
|
277
|
-
# tagged-label-char = tagged-label-fchar / DIGIT / ":"
|
|
278
|
-
TAGGED_LABEL_CHAR = /[a-zA-Z\-_.0-9:]*/n
|
|
279
|
-
# tagged-ext-label = tagged-label-fchar *tagged-label-char
|
|
280
|
-
# ; Is a valid RFC 3501 "atom".
|
|
281
|
-
TAGGED_EXT_LABEL = /#{TAGGED_LABEL_FCHAR}#{TAGGED_LABEL_CHAR}*/n
|
|
282
|
-
|
|
283
|
-
# nz-number = digit-nz *DIGIT
|
|
284
|
-
# ; Non-zero unsigned 32-bit integer
|
|
285
|
-
# ; (0 < n < 4,294,967,296)
|
|
286
|
-
NZ_NUMBER = /[1-9]\d*/n
|
|
287
|
-
|
|
288
|
-
# seq-number = nz-number / "*"
|
|
289
|
-
# ; message sequence number (COPY, FETCH, STORE
|
|
290
|
-
# ; commands) or unique identifier (UID COPY,
|
|
291
|
-
# ; UID FETCH, UID STORE commands).
|
|
292
|
-
# ; * represents the largest number in use. In
|
|
293
|
-
# ; the case of message sequence numbers, it is
|
|
294
|
-
# ; the number of messages in a non-empty mailbox.
|
|
295
|
-
# ; In the case of unique identifiers, it is the
|
|
296
|
-
# ; unique identifier of the last message in the
|
|
297
|
-
# ; mailbox or, if the mailbox is empty, the
|
|
298
|
-
# ; mailbox's current UIDNEXT value.
|
|
299
|
-
# ; The server should respond with a tagged BAD
|
|
300
|
-
# ; response to a command that uses a message
|
|
301
|
-
# ; sequence number greater than the number of
|
|
302
|
-
# ; messages in the selected mailbox. This
|
|
303
|
-
# ; includes "*" if the selected mailbox is empty.
|
|
304
|
-
SEQ_NUMBER = /#{NZ_NUMBER}|\*/n
|
|
305
|
-
|
|
306
|
-
# seq-range = seq-number ":" seq-number
|
|
307
|
-
# ; two seq-number values and all values between
|
|
308
|
-
# ; these two regardless of order.
|
|
309
|
-
# ; Example: 2:4 and 4:2 are equivalent and
|
|
310
|
-
# ; indicate values 2, 3, and 4.
|
|
311
|
-
# ; Example: a unique identifier sequence range of
|
|
312
|
-
# ; 3291:* includes the UID of the last message in
|
|
313
|
-
# ; the mailbox, even if that value is less than
|
|
314
|
-
# ; 3291.
|
|
315
|
-
SEQ_RANGE = /#{SEQ_NUMBER}:#{SEQ_NUMBER}/n
|
|
316
|
-
|
|
317
|
-
# sequence-set = (seq-number / seq-range) ["," sequence-set]
|
|
318
|
-
# ; set of seq-number values, regardless of order.
|
|
319
|
-
# ; Servers MAY coalesce overlaps and/or execute
|
|
320
|
-
# ; the sequence in any order.
|
|
321
|
-
# ; Example: a message sequence number set of
|
|
322
|
-
# ; 2,4:7,9,12:* for a mailbox with 15 messages is
|
|
323
|
-
# ; equivalent to 2,4,5,6,7,9,12,13,14,15
|
|
324
|
-
# ; Example: a message sequence number set of
|
|
325
|
-
# ; *:4,5:7 for a mailbox with 10 messages is
|
|
326
|
-
# ; equivalent to 10,9,8,7,6,5,4,5,6,7 and MAY
|
|
327
|
-
# ; be reordered and overlap coalesced to be
|
|
328
|
-
# ; 4,5,6,7,8,9,10.
|
|
329
|
-
SEQUENCE_SET_ITEM = /#{SEQ_NUMBER}|#{SEQ_RANGE}/n
|
|
330
|
-
SEQUENCE_SET = /#{SEQUENCE_SET_ITEM}(?:,#{SEQUENCE_SET_ITEM})*/n
|
|
331
|
-
SEQUENCE_SET_STR = /\A#{SEQUENCE_SET}\z/n
|
|
332
|
-
|
|
333
|
-
# partial-range-first = nz-number ":" nz-number
|
|
334
|
-
# ;; Request to search from oldest (lowest UIDs) to
|
|
335
|
-
# ;; more recent messages.
|
|
336
|
-
# ;; A range 500:400 is the same as 400:500.
|
|
337
|
-
# ;; This is similar to <seq-range> from [RFC3501]
|
|
338
|
-
# ;; but cannot contain "*".
|
|
339
|
-
PARTIAL_RANGE_FIRST = /\A(#{NZ_NUMBER}):(#{NZ_NUMBER})\z/n
|
|
340
|
-
|
|
341
|
-
# partial-range-last = MINUS nz-number ":" MINUS nz-number
|
|
342
|
-
# ;; Request to search from newest (highest UIDs) to
|
|
343
|
-
# ;; oldest messages.
|
|
344
|
-
# ;; A range -500:-400 is the same as -400:-500.
|
|
345
|
-
PARTIAL_RANGE_LAST = /\A(-#{NZ_NUMBER}):(-#{NZ_NUMBER})\z/n
|
|
346
|
-
|
|
347
|
-
# partial-range = partial-range-first / partial-range-last
|
|
348
|
-
PARTIAL_RANGE = Regexp.union(PARTIAL_RANGE_FIRST,
|
|
349
|
-
PARTIAL_RANGE_LAST)
|
|
350
|
-
|
|
351
|
-
# RFC3501:
|
|
352
|
-
# literal = "{" number "}" CRLF *CHAR8
|
|
353
|
-
# ; Number represents the number of CHAR8s
|
|
354
|
-
# RFC9051:
|
|
355
|
-
# literal = "{" number64 ["+"] "}" CRLF *CHAR8
|
|
356
|
-
# ; <number64> represents the number of CHAR8s.
|
|
357
|
-
# ; A non-synchronizing literal is distinguished
|
|
358
|
-
# ; from a synchronizing literal by the presence of
|
|
359
|
-
# ; "+" before the closing "}".
|
|
360
|
-
# ; Non-synchronizing literals are not allowed when
|
|
361
|
-
# ; sent from server to the client.
|
|
362
|
-
LITERAL = /\{(\d+)\}\r\n/n
|
|
363
|
-
|
|
364
|
-
# RFC3516 (BINARY):
|
|
365
|
-
# literal8 = "~{" number "}" CRLF *OCTET
|
|
366
|
-
# ; <number> represents the number of OCTETs
|
|
367
|
-
# ; in the response string.
|
|
368
|
-
# RFC9051:
|
|
369
|
-
# literal8 = "~{" number64 "}" CRLF *OCTET
|
|
370
|
-
# ; <number64> represents the number of OCTETs
|
|
371
|
-
# ; in the response string.
|
|
372
|
-
LITERAL8 = /~\{(\d+)\}\r\n/n
|
|
373
|
-
|
|
374
|
-
module_function
|
|
375
|
-
|
|
376
|
-
def unescape_quoted!(quoted)
|
|
377
|
-
quoted
|
|
378
|
-
&.gsub!(/\\(#{QUOTED_SPECIALS})/n, "\\1")
|
|
379
|
-
&.force_encoding("UTF-8")
|
|
380
|
-
end
|
|
381
|
-
|
|
382
|
-
def unescape_quoted(quoted)
|
|
383
|
-
quoted
|
|
384
|
-
&.gsub(/\\(#{QUOTED_SPECIALS})/n, "\\1")
|
|
385
|
-
&.force_encoding("UTF-8")
|
|
386
|
-
end
|
|
387
|
-
|
|
388
|
-
end
|
|
389
|
-
|
|
390
|
-
# the default, used in most places
|
|
391
|
-
BEG_REGEXP = /\G(?:\
|
|
392
|
-
(?# 1: SPACE )( )|\
|
|
393
|
-
(?# 2: LITERAL8)#{Patterns::LITERAL8}|\
|
|
394
|
-
(?# 3: ATOM prefixed with a compatible subtype)\
|
|
395
|
-
((?:\
|
|
396
|
-
(?# 4: NIL )(NIL)|\
|
|
397
|
-
(?# 5: NUMBER )(\d+)|\
|
|
398
|
-
(?# 6: PLUS )(\+))\
|
|
399
|
-
(?# 7: ATOM remaining after prefix )(#{Patterns::ATOMISH})?\
|
|
400
|
-
(?# This enables greedy alternation without lookahead, in linear time.)\
|
|
401
|
-
)|\
|
|
402
|
-
(?# Also need to check for ATOM without a subtype prefix.)\
|
|
403
|
-
(?# 8: ATOM )(#{Patterns::ATOMISH})|\
|
|
404
|
-
(?# 9: QUOTED )#{Patterns::QUOTED_rev2}|\
|
|
405
|
-
(?# 10: LPAR )(\()|\
|
|
406
|
-
(?# 11: RPAR )(\))|\
|
|
407
|
-
(?# 12: BSLASH )(\\)|\
|
|
408
|
-
(?# 13: STAR )(\*)|\
|
|
409
|
-
(?# 14: LBRA )(\[)|\
|
|
410
|
-
(?# 15: RBRA )(\])|\
|
|
411
|
-
(?# 16: LITERAL )#{Patterns::LITERAL}|\
|
|
412
|
-
(?# 17: PERCENT )(%)|\
|
|
413
|
-
(?# 18: CRLF )(\r\n)|\
|
|
414
|
-
(?# 19: EOF )(\z))/ni
|
|
415
|
-
|
|
416
|
-
# envelope, body(structure), namespaces
|
|
417
|
-
DATA_REGEXP = /\G(?:\
|
|
418
|
-
(?# 1: SPACE )( )|\
|
|
419
|
-
(?# 2: NIL )(NIL)|\
|
|
420
|
-
(?# 3: NUMBER )(\d+)|\
|
|
421
|
-
(?# 4: QUOTED )#{Patterns::QUOTED_rev2}|\
|
|
422
|
-
(?# 5: LITERAL )#{Patterns::LITERAL}|\
|
|
423
|
-
(?# 6: LPAR )(\()|\
|
|
424
|
-
(?# 7: RPAR )(\)))/ni
|
|
425
|
-
|
|
426
|
-
# text, after 'resp-text-code "]"'
|
|
427
|
-
TEXT_REGEXP = /\G(#{Patterns::TEXT_rev2})/n
|
|
428
|
-
|
|
429
|
-
# resp-text-code, after 'atom SP'
|
|
430
|
-
CTEXT_REGEXP = /\G(#{Patterns::CODE_TEXT})/n
|
|
431
|
-
|
|
432
|
-
Token = Struct.new(:symbol, :value)
|
|
433
|
-
|
|
434
|
-
def_char_matchers :SP, " ", :T_SPACE
|
|
435
|
-
def_char_matchers :PLUS, "+", :T_PLUS
|
|
436
|
-
def_char_matchers :STAR, "*", :T_STAR
|
|
437
|
-
|
|
438
|
-
def_char_matchers :lpar, "(", :T_LPAR
|
|
439
|
-
def_char_matchers :rpar, ")", :T_RPAR
|
|
440
|
-
|
|
441
|
-
def_char_matchers :lbra, "[", :T_LBRA
|
|
442
|
-
def_char_matchers :rbra, "]", :T_RBRA
|
|
443
|
-
|
|
444
|
-
# valid number ranges are not enforced by parser
|
|
445
|
-
# number = 1*DIGIT
|
|
446
|
-
# ; Unsigned 32-bit integer
|
|
447
|
-
# ; (0 <= n < 4,294,967,296)
|
|
448
|
-
def_token_matchers :number, T_NUMBER, coerce: Integer
|
|
449
|
-
|
|
450
|
-
def_token_matchers :quoted, T_QUOTED
|
|
451
|
-
|
|
452
|
-
# string = quoted / literal
|
|
453
|
-
def_token_matchers :string, T_QUOTED, T_LITERAL
|
|
454
|
-
|
|
455
|
-
# used by nstring8 = nstring / literal8
|
|
456
|
-
def_token_matchers :string8, T_QUOTED, T_LITERAL, T_LITERAL8
|
|
457
|
-
|
|
458
|
-
# use where string represents "LABEL" values
|
|
459
|
-
def_token_matchers :case_insensitive__string,
|
|
460
|
-
T_QUOTED, T_LITERAL,
|
|
461
|
-
send: :upcase
|
|
462
|
-
|
|
463
|
-
# n.b: NIL? and NIL! return the "NIL" atom string (truthy) on success.
|
|
464
|
-
# NIL? returns nil when it does *not* match
|
|
465
|
-
def_token_matchers :NIL, T_NIL
|
|
466
|
-
|
|
467
|
-
# In addition to explicitly uses of +tagged-ext-label+, use this to match
|
|
468
|
-
# keywords when the grammar has not provided any extension syntax.
|
|
469
|
-
#
|
|
470
|
-
# Do *not* use this for labels where the grammar specifies extensions
|
|
471
|
-
# can be +atom+, even if all currently defined labels would match. For
|
|
472
|
-
# example response codes in +resp-text-code+.
|
|
473
|
-
#
|
|
474
|
-
# tagged-ext-label = tagged-label-fchar *tagged-label-char
|
|
475
|
-
# ; Is a valid RFC 3501 "atom".
|
|
476
|
-
# tagged-label-fchar = ALPHA / "-" / "_" / "."
|
|
477
|
-
# tagged-label-char = tagged-label-fchar / DIGIT / ":"
|
|
478
|
-
#
|
|
479
|
-
# TODO: add to lexer and only match tagged-ext-label
|
|
480
|
-
def_token_matchers :tagged_ext_label, T_ATOM, T_NIL, send: :upcase
|
|
481
|
-
|
|
482
|
-
def_token_matchers :CRLF, T_CRLF
|
|
483
|
-
def_token_matchers :EOF, T_EOF
|
|
484
|
-
|
|
485
|
-
# atom = 1*ATOM-CHAR
|
|
486
|
-
# ATOM-CHAR = <any CHAR except atom-specials>
|
|
487
|
-
ATOM_TOKENS = [T_ATOM, T_NUMBER, T_NIL, T_LBRA, T_PLUS]
|
|
488
|
-
|
|
489
|
-
SEQUENCE_SET_TOKENS = [T_ATOM, T_NUMBER, T_STAR]
|
|
490
|
-
|
|
491
|
-
# sequence-set = (seq-number / seq-range) ["," sequence-set]
|
|
492
|
-
# sequence-set =/ seq-last-command
|
|
493
|
-
# ; Allow for "result of the last command"
|
|
494
|
-
# ; indicator.
|
|
495
|
-
# seq-last-command = "$"
|
|
496
|
-
#
|
|
497
|
-
# *note*: doesn't match seq-last-command
|
|
498
|
-
def sequence_set
|
|
499
|
-
str = combine_adjacent(*SEQUENCE_SET_TOKENS)
|
|
500
|
-
if Patterns::SEQUENCE_SET_STR.match?(str)
|
|
501
|
-
SequenceSet[str]
|
|
502
|
-
else
|
|
503
|
-
parse_error("unexpected atom %p, expected sequence-set", str)
|
|
504
|
-
end
|
|
505
|
-
end
|
|
506
|
-
|
|
507
|
-
# ASTRING-CHAR = ATOM-CHAR / resp-specials
|
|
508
|
-
# resp-specials = "]"
|
|
509
|
-
ASTRING_CHARS_TOKENS = [*ATOM_TOKENS, T_RBRA].freeze
|
|
510
|
-
|
|
511
|
-
ASTRING_TOKENS = [T_QUOTED, *ASTRING_CHARS_TOKENS, T_LITERAL].freeze
|
|
512
|
-
|
|
513
|
-
# tag = 1*<any ASTRING-CHAR except "+">
|
|
514
|
-
TAG_TOKENS = (ASTRING_CHARS_TOKENS - [T_PLUS]).freeze
|
|
515
|
-
|
|
516
|
-
# TODO: handle atom, astring_chars, and tag entirely inside the lexer
|
|
517
|
-
def atom; combine_adjacent(*ATOM_TOKENS) end
|
|
518
|
-
def astring_chars; combine_adjacent(*ASTRING_CHARS_TOKENS) end
|
|
519
|
-
def tag; combine_adjacent(*TAG_TOKENS) end
|
|
520
|
-
|
|
521
|
-
# the #accept version of #atom
|
|
522
|
-
def atom?; -combine_adjacent(*ATOM_TOKENS) if lookahead?(*ATOM_TOKENS) end
|
|
523
|
-
|
|
524
|
-
# Returns <tt>atom.upcase</tt>
|
|
525
|
-
def case_insensitive__atom; -combine_adjacent(*ATOM_TOKENS).upcase end
|
|
526
|
-
|
|
527
|
-
# Returns <tt>atom?&.upcase</tt>
|
|
528
|
-
def case_insensitive__atom?
|
|
529
|
-
-combine_adjacent(*ATOM_TOKENS).upcase if lookahead?(*ATOM_TOKENS)
|
|
530
|
-
end
|
|
531
|
-
|
|
532
|
-
# astring = 1*ASTRING-CHAR / string
|
|
533
|
-
def astring
|
|
534
|
-
lookahead?(*ASTRING_CHARS_TOKENS) ? astring_chars : string
|
|
535
|
-
end
|
|
536
|
-
|
|
537
|
-
def astring?
|
|
538
|
-
lookahead?(*ASTRING_CHARS_TOKENS) ? astring_chars : string?
|
|
539
|
-
end
|
|
540
|
-
|
|
541
|
-
# Use #label or #label_in to assert specific known labels
|
|
542
|
-
# (+tagged-ext-label+ only, not +atom+).
|
|
543
|
-
def label(word)
|
|
544
|
-
(val = tagged_ext_label) == word and return val
|
|
545
|
-
parse_error("unexpected atom %p, expected %p instead", val, word)
|
|
546
|
-
end
|
|
547
|
-
|
|
548
|
-
# Use #label or #label_in to assert specific known labels
|
|
549
|
-
# (+tagged-ext-label+ only, not +atom+).
|
|
550
|
-
def label_in(*labels)
|
|
551
|
-
lbl = tagged_ext_label and labels.include?(lbl) and return lbl
|
|
552
|
-
parse_error("unexpected atom %p, expected one of %s instead",
|
|
553
|
-
lbl, labels.join(" or "))
|
|
554
|
-
end
|
|
555
|
-
|
|
556
|
-
# expects "OK" or "PREAUTH" and raises InvalidResponseError on failure
|
|
557
|
-
def resp_cond_auth__name
|
|
558
|
-
lbl = tagged_ext_label and AUTH_CONDS.include? lbl and return lbl
|
|
559
|
-
raise InvalidResponseError, "bad response type %p, expected %s" % [
|
|
560
|
-
lbl, AUTH_CONDS.join(" or ")
|
|
561
|
-
]
|
|
562
|
-
end
|
|
563
|
-
|
|
564
|
-
# expects "OK" or "NO" or "BAD" and raises InvalidResponseError on failure
|
|
565
|
-
def resp_cond_state__name
|
|
566
|
-
lbl = tagged_ext_label and RESP_COND_STATES.include? lbl and return lbl
|
|
567
|
-
raise InvalidResponseError, "bad response type %p, expected %s" % [
|
|
568
|
-
lbl, RESP_COND_STATES.join(" or ")
|
|
569
|
-
]
|
|
570
|
-
end
|
|
571
|
-
|
|
572
|
-
# nstring = string / nil
|
|
573
|
-
def nstring
|
|
574
|
-
NIL? ? nil : string
|
|
575
|
-
end
|
|
576
|
-
|
|
577
|
-
def nstring8
|
|
578
|
-
NIL? ? nil : string8
|
|
579
|
-
end
|
|
580
|
-
|
|
581
|
-
def nquoted
|
|
582
|
-
NIL? ? nil : quoted
|
|
583
|
-
end
|
|
584
|
-
|
|
585
|
-
# use where nstring represents "LABEL" values
|
|
586
|
-
def case_insensitive__nstring
|
|
587
|
-
NIL? ? nil : case_insensitive__string
|
|
588
|
-
end
|
|
589
|
-
|
|
590
|
-
# tagged-ext-comp = astring /
|
|
591
|
-
# tagged-ext-comp *(SP tagged-ext-comp) /
|
|
592
|
-
# "(" tagged-ext-comp ")"
|
|
593
|
-
# ; Extensions that follow this general
|
|
594
|
-
# ; syntax should use nstring instead of
|
|
595
|
-
# ; astring when appropriate in the context
|
|
596
|
-
# ; of the extension.
|
|
597
|
-
# ; Note that a message set or a "number"
|
|
598
|
-
# ; can always be represented as an "atom".
|
|
599
|
-
# ; A URL should be represented as
|
|
600
|
-
# ; a "quoted" string.
|
|
601
|
-
def tagged_ext_comp
|
|
602
|
-
vals = []
|
|
603
|
-
while true
|
|
604
|
-
vals << case lookahead!(*ASTRING_TOKENS, T_LPAR).symbol
|
|
605
|
-
when T_LPAR then lpar; ary = tagged_ext_comp; rpar; ary
|
|
606
|
-
when T_NUMBER then number
|
|
607
|
-
else astring
|
|
608
|
-
end
|
|
609
|
-
SP? or break
|
|
610
|
-
end
|
|
611
|
-
vals
|
|
612
|
-
end
|
|
613
|
-
|
|
614
|
-
# tagged-ext-simple is a subset of atom
|
|
615
|
-
# TODO: recognize sequence-set in the lexer
|
|
616
|
-
#
|
|
617
|
-
# tagged-ext-simple = sequence-set / number / number64
|
|
618
|
-
def tagged_ext_simple
|
|
619
|
-
number? || sequence_set
|
|
620
|
-
end
|
|
621
|
-
|
|
622
|
-
# tagged-ext-val = tagged-ext-simple /
|
|
623
|
-
# "(" [tagged-ext-comp] ")"
|
|
624
|
-
def tagged_ext_val
|
|
625
|
-
if lpar?
|
|
626
|
-
_ = peek_rpar? ? [] : tagged_ext_comp
|
|
627
|
-
rpar
|
|
628
|
-
_
|
|
629
|
-
else
|
|
630
|
-
tagged_ext_simple
|
|
631
|
-
end
|
|
632
|
-
end
|
|
633
|
-
|
|
634
|
-
# mailbox = "INBOX" / astring
|
|
635
|
-
# ; INBOX is case-insensitive. All case variants of
|
|
636
|
-
# ; INBOX (e.g., "iNbOx") MUST be interpreted as INBOX
|
|
637
|
-
# ; not as an astring. An astring which consists of
|
|
638
|
-
# ; the case-insensitive sequence "I" "N" "B" "O" "X"
|
|
639
|
-
# ; is considered to be INBOX and not an astring.
|
|
640
|
-
# ; Refer to section 5.1 for further
|
|
641
|
-
# ; semantic details of mailbox names.
|
|
642
|
-
alias mailbox astring
|
|
643
|
-
|
|
644
|
-
# valid number ranges are not enforced by parser
|
|
645
|
-
# number64 = 1*DIGIT
|
|
646
|
-
# ; Unsigned 63-bit integer
|
|
647
|
-
# ; (0 <= n <= 9,223,372,036,854,775,807)
|
|
648
|
-
alias number64 number
|
|
649
|
-
alias number64? number?
|
|
650
|
-
|
|
651
|
-
# valid number ranges are not enforced by parser
|
|
652
|
-
# nz-number = digit-nz *DIGIT
|
|
653
|
-
# ; Non-zero unsigned 32-bit integer
|
|
654
|
-
# ; (0 < n < 4,294,967,296)
|
|
655
|
-
alias nz_number number
|
|
656
|
-
alias nz_number? number?
|
|
657
|
-
|
|
658
|
-
# valid number ranges are not enforced by parser
|
|
659
|
-
# nz-number64 = digit-nz *DIGIT
|
|
660
|
-
# ; Unsigned 63-bit integer
|
|
661
|
-
# ; (0 < n <= 9,223,372,036,854,775,807)
|
|
662
|
-
alias nz_number64 nz_number
|
|
663
|
-
|
|
664
|
-
# valid number ranges are not enforced by parser
|
|
665
|
-
# uniqueid = nz-number
|
|
666
|
-
# ; Strictly ascending
|
|
667
|
-
alias uniqueid nz_number
|
|
668
|
-
|
|
669
|
-
# valid number ranges are not enforced by parser
|
|
670
|
-
#
|
|
671
|
-
# a 64-bit unsigned integer and is the decimal equivalent for the ID hex
|
|
672
|
-
# string used in the web interface and the Gmail API.
|
|
673
|
-
alias x_gm_id number
|
|
674
|
-
|
|
675
|
-
# [RFC3501 & RFC9051:]
|
|
676
|
-
# response = *(continue-req / response-data) response-done
|
|
677
|
-
#
|
|
678
|
-
# For simplicity, response isn't interpreted as the combination of the
|
|
679
|
-
# three response types, but instead represents any individual server
|
|
680
|
-
# response. Our simplified interpretation is defined as:
|
|
681
|
-
# response = continue-req | response_data | response-tagged
|
|
682
|
-
#
|
|
683
|
-
# n.b: our "response-tagged" definition parses "greeting" too.
|
|
684
|
-
def response
|
|
685
|
-
resp = case lookahead!(T_PLUS, T_STAR, *TAG_TOKENS).symbol
|
|
686
|
-
when T_PLUS then continue_req
|
|
687
|
-
when T_STAR then response_data
|
|
688
|
-
else response_tagged
|
|
689
|
-
end
|
|
690
|
-
accept_spaces # QUIRKY: Ignore trailing space (MS Exchange Server?)
|
|
691
|
-
CRLF!
|
|
692
|
-
EOF!
|
|
693
|
-
resp
|
|
694
|
-
rescue SystemStackError
|
|
695
|
-
parse_error("response recursion too deep")
|
|
696
|
-
end
|
|
697
|
-
|
|
698
|
-
# RFC3501 & RFC9051:
|
|
699
|
-
# continue-req = "+" SP (resp-text / base64) CRLF
|
|
700
|
-
#
|
|
701
|
-
# n.b: base64 is valid resp-text. And in the spirit of RFC9051 Appx E 23
|
|
702
|
-
# (and to workaround existing servers), we use the following grammar:
|
|
703
|
-
#
|
|
704
|
-
# continue-req = "+" (SP (resp-text)) CRLF
|
|
705
|
-
def continue_req
|
|
706
|
-
PLUS!
|
|
707
|
-
ContinuationRequest.new(SP? ? resp_text : ResponseText::EMPTY, @str)
|
|
708
|
-
end
|
|
709
|
-
|
|
710
|
-
RE_RESPONSE_TYPE = /\G(?:\d+ )?(?<type>#{Patterns::TAGGED_EXT_LABEL})/n
|
|
711
|
-
|
|
712
|
-
# [RFC3501:]
|
|
713
|
-
# response-data = "*" SP (resp-cond-state / resp-cond-bye /
|
|
714
|
-
# mailbox-data / message-data / capability-data) CRLF
|
|
715
|
-
# [RFC4466:]
|
|
716
|
-
# response-data = "*" SP response-payload CRLF
|
|
717
|
-
# response-payload = resp-cond-state / resp-cond-bye /
|
|
718
|
-
# mailbox-data / message-data / capability-data
|
|
719
|
-
# RFC5161 (ENABLE capability):
|
|
720
|
-
# response-data =/ "*" SP enable-data CRLF
|
|
721
|
-
# RFC5255 (LANGUAGE capability)
|
|
722
|
-
# response-payload =/ language-data
|
|
723
|
-
# RFC5255 (I18NLEVEL=1 and I18NLEVEL=2 capabilities)
|
|
724
|
-
# response-payload =/ comparator-data
|
|
725
|
-
# [RFC9051:]
|
|
726
|
-
# response-data = "*" SP (resp-cond-state / resp-cond-bye /
|
|
727
|
-
# mailbox-data / message-data / capability-data /
|
|
728
|
-
# enable-data) CRLF
|
|
729
|
-
#
|
|
730
|
-
# [merging in greeting and response-fatal:]
|
|
731
|
-
# greeting = "*" SP (resp-cond-auth / resp-cond-bye) CRLF
|
|
732
|
-
# response-fatal = "*" SP resp-cond-bye CRLF
|
|
733
|
-
# response-data =/ "*" SP (resp-cond-auth / resp-cond-bye) CRLF
|
|
734
|
-
# [removing duplicates, this is simply]
|
|
735
|
-
# response-payload =/ resp-cond-auth
|
|
736
|
-
#
|
|
737
|
-
# TODO: remove resp-cond-auth and handle greeting separately
|
|
738
|
-
def response_data
|
|
739
|
-
STAR!; SP!
|
|
740
|
-
m = peek_re(RE_RESPONSE_TYPE) or parse_error("unparsable response")
|
|
741
|
-
case m["type"].upcase
|
|
742
|
-
when "OK" then resp_cond_state__untagged # RFC3501, RFC9051
|
|
743
|
-
when "FETCH" then message_data__fetch # RFC3501, RFC9051
|
|
744
|
-
when "EXPUNGE" then message_data__expunge # RFC3501, RFC9051
|
|
745
|
-
when "EXISTS" then mailbox_data__exists # RFC3501, RFC9051
|
|
746
|
-
when "ESEARCH" then esearch_response # RFC4731, RFC9051, etc
|
|
747
|
-
when "VANISHED" then expunged_resp # RFC7162
|
|
748
|
-
when "UIDFETCH" then uidfetch_resp # RFC9586
|
|
749
|
-
when "SEARCH" then mailbox_data__search # RFC3501 (obsolete)
|
|
750
|
-
when "CAPABILITY" then capability_data__untagged # RFC3501, RFC9051
|
|
751
|
-
when "FLAGS" then mailbox_data__flags # RFC3501, RFC9051
|
|
752
|
-
when "LIST" then mailbox_data__list # RFC3501, RFC9051
|
|
753
|
-
when "STATUS" then mailbox_data__status # RFC3501, RFC9051
|
|
754
|
-
when "NAMESPACE" then namespace_response # RFC2342, RFC9051
|
|
755
|
-
when "ENABLED" then enable_data # RFC5161, RFC9051
|
|
756
|
-
when "BAD" then resp_cond_state__untagged # RFC3501, RFC9051
|
|
757
|
-
when "NO" then resp_cond_state__untagged # RFC3501, RFC9051
|
|
758
|
-
when "PREAUTH" then resp_cond_auth # RFC3501, RFC9051
|
|
759
|
-
when "BYE" then resp_cond_bye # RFC3501, RFC9051
|
|
760
|
-
when "RECENT" then mailbox_data__recent # RFC3501 (obsolete)
|
|
761
|
-
when "SORT" then sort_data # RFC5256, RFC7162
|
|
762
|
-
when "THREAD" then thread_data # RFC5256
|
|
763
|
-
when "QUOTA" then quota_response # RFC2087, RFC9208
|
|
764
|
-
when "QUOTAROOT" then quotaroot_response # RFC2087, RFC9208
|
|
765
|
-
when "ID" then id_response # RFC2971
|
|
766
|
-
when "ACL" then acl_data # RFC4314
|
|
767
|
-
when "LISTRIGHTS" then listrights_data # RFC4314
|
|
768
|
-
when "MYRIGHTS" then myrights_data # RFC4314
|
|
769
|
-
when "METADATA" then metadata_resp # RFC5464
|
|
770
|
-
when "LANGUAGE" then language_data # RFC5255
|
|
771
|
-
when "COMPARATOR" then comparator_data # RFC5255
|
|
772
|
-
when "CONVERTED" then message_data__converted # RFC5259
|
|
773
|
-
when "LSUB" then mailbox_data__lsub # RFC3501 (obsolete)
|
|
774
|
-
when "XLIST" then mailbox_data__xlist # deprecated
|
|
775
|
-
when "NOOP" then response_data__noop
|
|
776
|
-
else response_data__unhandled
|
|
777
|
-
end
|
|
778
|
-
end
|
|
779
|
-
|
|
780
|
-
def response_data__unhandled(klass = UntaggedResponse)
|
|
781
|
-
num = number?; SP?
|
|
782
|
-
type = tagged_ext_label; SP?
|
|
783
|
-
text = remaining_unparsed
|
|
784
|
-
data =
|
|
785
|
-
if num && text then UnparsedNumericResponseData.new(num, text)
|
|
786
|
-
elsif text then UnparsedData.new(text)
|
|
787
|
-
else num
|
|
788
|
-
end
|
|
789
|
-
klass.new(type, data, @str)
|
|
790
|
-
end
|
|
791
|
-
|
|
792
|
-
# reads all the way up until CRLF
|
|
793
|
-
def remaining_unparsed
|
|
794
|
-
str = @str[@pos...-2] and @pos += str.bytesize
|
|
795
|
-
str&.empty? ? nil : str
|
|
796
|
-
end
|
|
797
|
-
|
|
798
|
-
def response_data__ignored; response_data__unhandled(IgnoredResponse) end
|
|
799
|
-
alias response_data__noop response_data__ignored
|
|
800
|
-
|
|
801
|
-
alias listrights_data response_data__unhandled
|
|
802
|
-
alias myrights_data response_data__unhandled
|
|
803
|
-
alias metadata_resp response_data__unhandled
|
|
804
|
-
alias language_data response_data__unhandled
|
|
805
|
-
alias comparator_data response_data__unhandled
|
|
806
|
-
alias message_data__converted response_data__unhandled
|
|
807
|
-
|
|
808
|
-
# RFC3501 & RFC9051:
|
|
809
|
-
# response-tagged = tag SP resp-cond-state CRLF
|
|
810
|
-
def response_tagged
|
|
811
|
-
TaggedResponse.new(tag, *(SP!; resp_cond_state), @str)
|
|
812
|
-
end
|
|
813
|
-
|
|
814
|
-
# RFC3501 & RFC9051:
|
|
815
|
-
# resp-cond-state = ("OK" / "NO" / "BAD") SP resp-text
|
|
816
|
-
#
|
|
817
|
-
# NOTE: In the spirit of RFC9051 Appx E 23 (and to workaround existing
|
|
818
|
-
# servers), we don't require a final SP and instead parse this as:
|
|
819
|
-
#
|
|
820
|
-
# resp-cond-state = ("OK" / "NO" / "BAD") [SP resp-text]
|
|
821
|
-
def resp_cond_state
|
|
822
|
-
[resp_cond_state__name, SP? ? resp_text : ResponseText::EMPTY]
|
|
823
|
-
end
|
|
824
|
-
|
|
825
|
-
def resp_cond_state__untagged
|
|
826
|
-
UntaggedResponse.new(*resp_cond_state, @str)
|
|
827
|
-
end
|
|
828
|
-
|
|
829
|
-
# resp-cond-auth = ("OK" / "PREAUTH") SP resp-text
|
|
830
|
-
#
|
|
831
|
-
# NOTE: In the spirit of RFC9051 Appx E 23 (and to workaround existing
|
|
832
|
-
# servers), we don't require a final SP and instead parse this as:
|
|
833
|
-
#
|
|
834
|
-
# resp-cond-auth = ("OK" / "PREAUTH") [SP resp-text]
|
|
835
|
-
def resp_cond_auth
|
|
836
|
-
UntaggedResponse.new(resp_cond_auth__name,
|
|
837
|
-
SP? ? resp_text : ResponseText::EMPTY,
|
|
838
|
-
@str)
|
|
839
|
-
end
|
|
840
|
-
|
|
841
|
-
# resp-cond-bye = "BYE" SP resp-text
|
|
842
|
-
#
|
|
843
|
-
# NOTE: In the spirit of RFC9051 Appx E 23 (and to workaround existing
|
|
844
|
-
# servers), we don't require a final SP and instead parse this as:
|
|
845
|
-
#
|
|
846
|
-
# resp-cond-bye = "BYE" [SP resp-text]
|
|
847
|
-
def resp_cond_bye
|
|
848
|
-
UntaggedResponse.new(label(BYE),
|
|
849
|
-
SP? ? resp_text : ResponseText::EMPTY,
|
|
850
|
-
@str)
|
|
851
|
-
end
|
|
852
|
-
|
|
853
|
-
# message-data = nz-number SP ("EXPUNGE" / ("FETCH" SP msg-att))
|
|
854
|
-
def message_data__fetch
|
|
855
|
-
seq = nz_number; SP!
|
|
856
|
-
name = label "FETCH"; SP!
|
|
857
|
-
data = FetchData.new(seq, msg_att(seq))
|
|
858
|
-
UntaggedResponse.new(name, data, @str)
|
|
859
|
-
end
|
|
860
|
-
|
|
861
|
-
# uidfetch-resp = uniqueid SP "UIDFETCH" SP msg-att
|
|
862
|
-
def uidfetch_resp
|
|
863
|
-
uid = uniqueid; SP!
|
|
864
|
-
name = label "UIDFETCH"; SP!
|
|
865
|
-
data = UIDFetchData.new(uid, msg_att(uid))
|
|
866
|
-
UntaggedResponse.new(name, data, @str)
|
|
867
|
-
end
|
|
868
|
-
|
|
869
|
-
def response_data__simple_numeric
|
|
870
|
-
data = nz_number; SP!
|
|
871
|
-
name = tagged_ext_label
|
|
872
|
-
UntaggedResponse.new(name, data, @str)
|
|
873
|
-
end
|
|
874
|
-
|
|
875
|
-
alias message_data__expunge response_data__simple_numeric
|
|
876
|
-
alias mailbox_data__exists response_data__simple_numeric
|
|
877
|
-
alias mailbox_data__recent response_data__simple_numeric
|
|
878
|
-
|
|
879
|
-
# The name for this is confusing, because it *replaces* EXPUNGE
|
|
880
|
-
# >>>
|
|
881
|
-
# expunged-resp = "VANISHED" [SP "(EARLIER)"] SP known-uids
|
|
882
|
-
def expunged_resp
|
|
883
|
-
name = label "VANISHED"; SP!
|
|
884
|
-
earlier = if lpar? then label("EARLIER"); rpar; SP!; true else false end
|
|
885
|
-
uids = known_uids
|
|
886
|
-
data = VanishedData[uids, earlier]
|
|
887
|
-
UntaggedResponse.new name, data, @str
|
|
888
|
-
end
|
|
889
|
-
|
|
890
|
-
# TODO: replace with uid_set
|
|
891
|
-
alias known_uids sequence_set
|
|
892
|
-
|
|
893
|
-
# RFC3501 & RFC9051:
|
|
894
|
-
# msg-att = "(" (msg-att-dynamic / msg-att-static)
|
|
895
|
-
# *(SP (msg-att-dynamic / msg-att-static)) ")"
|
|
896
|
-
#
|
|
897
|
-
# msg-att-dynamic = "FLAGS" SP "(" [flag-fetch *(SP flag-fetch)] ")"
|
|
898
|
-
# RFC5257 (ANNOTATE extension):
|
|
899
|
-
# msg-att-dynamic =/ "ANNOTATION" SP
|
|
900
|
-
# ( "(" entry-att *(SP entry-att) ")" /
|
|
901
|
-
# "(" entry *(SP entry) ")" )
|
|
902
|
-
# RFC7162 (CONDSTORE extension):
|
|
903
|
-
# msg-att-dynamic =/ fetch-mod-resp
|
|
904
|
-
# fetch-mod-resp = "MODSEQ" SP "(" permsg-modsequence ")"
|
|
905
|
-
# RFC8970 (PREVIEW extension):
|
|
906
|
-
# msg-att-dynamic =/ "PREVIEW" SP nstring
|
|
907
|
-
#
|
|
908
|
-
# RFC3501:
|
|
909
|
-
# msg-att-static = "ENVELOPE" SP envelope /
|
|
910
|
-
# "INTERNALDATE" SP date-time /
|
|
911
|
-
# "RFC822" [".HEADER" / ".TEXT"] SP nstring /
|
|
912
|
-
# "RFC822.SIZE" SP number /
|
|
913
|
-
# "BODY" ["STRUCTURE"] SP body /
|
|
914
|
-
# "BODY" section ["<" number ">"] SP nstring /
|
|
915
|
-
# "UID" SP uniqueid
|
|
916
|
-
# RFC3516 (BINARY extension):
|
|
917
|
-
# msg-att-static =/ "BINARY" section-binary SP (nstring / literal8)
|
|
918
|
-
# / "BINARY.SIZE" section-binary SP number
|
|
919
|
-
# RFC8514 (SAVEDATE extension):
|
|
920
|
-
# msg-att-static =/ "SAVEDATE" SP (date-time / nil)
|
|
921
|
-
# RFC8474 (OBJECTID extension):
|
|
922
|
-
# msg-att-static =/ fetch-emailid-resp / fetch-threadid-resp
|
|
923
|
-
# fetch-emailid-resp = "EMAILID" SP "(" objectid ")"
|
|
924
|
-
# fetch-threadid-resp = "THREADID" SP ( "(" objectid ")" / nil )
|
|
925
|
-
# RFC9051:
|
|
926
|
-
# msg-att-static = "ENVELOPE" SP envelope /
|
|
927
|
-
# "INTERNALDATE" SP date-time /
|
|
928
|
-
# "RFC822.SIZE" SP number64 /
|
|
929
|
-
# "BODY" ["STRUCTURE"] SP body /
|
|
930
|
-
# "BODY" section ["<" number ">"] SP nstring /
|
|
931
|
-
# "BINARY" section-binary SP (nstring / literal8) /
|
|
932
|
-
# "BINARY.SIZE" section-binary SP number /
|
|
933
|
-
# "UID" SP uniqueid
|
|
934
|
-
#
|
|
935
|
-
# Re https://www.rfc-editor.org/errata/eid7246, I'm adding "offset" to the
|
|
936
|
-
# official "BINARY" ABNF, like so:
|
|
937
|
-
#
|
|
938
|
-
# msg-att-static =/ "BINARY" section-binary ["<" number ">"] SP
|
|
939
|
-
# (nstring / literal8)
|
|
940
|
-
def msg_att(n)
|
|
941
|
-
lpar
|
|
942
|
-
attr = {}
|
|
943
|
-
while true
|
|
944
|
-
name = msg_att__label; SP!
|
|
945
|
-
val =
|
|
946
|
-
case name
|
|
947
|
-
when "UID" then uniqueid
|
|
948
|
-
when "FLAGS" then flag_list
|
|
949
|
-
when "BODY" then body
|
|
950
|
-
when /\ABODY\[/ni then nstring
|
|
951
|
-
when "BODYSTRUCTURE" then body
|
|
952
|
-
when "ENVELOPE" then envelope
|
|
953
|
-
when "INTERNALDATE" then date_time
|
|
954
|
-
when "RFC822.SIZE" then number64
|
|
955
|
-
when /\ABINARY\[/ni then nstring8 # BINARY, IMAP4rev2
|
|
956
|
-
when /\ABINARY\.SIZE\[/ni then number # BINARY, IMAP4rev2
|
|
957
|
-
when "RFC822" then nstring # not in rev2
|
|
958
|
-
when "RFC822.HEADER" then nstring # not in rev2
|
|
959
|
-
when "RFC822.TEXT" then nstring # not in rev2
|
|
960
|
-
when "MODSEQ" then parens__modseq # CONDSTORE
|
|
961
|
-
when "EMAILID" then parens__objectid # OBJECTID
|
|
962
|
-
when "THREADID" then nparens__objectid # OBJECTID
|
|
963
|
-
when "X-GM-MSGID" then x_gm_id # GMail
|
|
964
|
-
when "X-GM-THRID" then x_gm_id # GMail
|
|
965
|
-
when "X-GM-LABELS" then x_gm_labels # GMail
|
|
966
|
-
else parse_error("unknown attribute `%s' for {%d}", name, n)
|
|
967
|
-
end
|
|
968
|
-
attr[name] = val
|
|
969
|
-
break unless SP?
|
|
970
|
-
break if lookahead_rpar?
|
|
971
|
-
end
|
|
972
|
-
rpar
|
|
973
|
-
attr
|
|
974
|
-
end
|
|
975
|
-
|
|
976
|
-
# appends "[section]" and "<partial>" to the base label
|
|
977
|
-
def msg_att__label
|
|
978
|
-
case (name = tagged_ext_label)
|
|
979
|
-
when /\A(?:RFC822(?:\.HEADER|\.TEXT)?)\z/ni
|
|
980
|
-
# ignoring "[]" fixes https://bugs.ruby-lang.org/issues/5620
|
|
981
|
-
lbra? and rbra
|
|
982
|
-
when "BODY"
|
|
983
|
-
peek_lbra? and name << section and
|
|
984
|
-
peek_str?("<") and name << gt__number__lt # partial
|
|
985
|
-
when "BINARY", "BINARY.SIZE"
|
|
986
|
-
name << section_binary
|
|
987
|
-
# see https://www.rfc-editor.org/errata/eid7246 and the note above
|
|
988
|
-
peek_str?("<") and name << gt__number__lt # partial
|
|
989
|
-
end
|
|
990
|
-
name
|
|
991
|
-
end
|
|
992
|
-
|
|
993
|
-
# this represents the partial size for BODY or BINARY
|
|
994
|
-
alias gt__number__lt atom
|
|
995
|
-
|
|
996
|
-
# RFC3501 & RFC9051:
|
|
997
|
-
# envelope = "(" env-date SP env-subject SP env-from SP
|
|
998
|
-
# env-sender SP env-reply-to SP env-to SP env-cc SP
|
|
999
|
-
# env-bcc SP env-in-reply-to SP env-message-id ")"
|
|
1000
|
-
def envelope
|
|
1001
|
-
@lex_state = EXPR_DATA
|
|
1002
|
-
lpar; date = env_date
|
|
1003
|
-
SP!; subject = env_subject
|
|
1004
|
-
SP!; from = env_from
|
|
1005
|
-
SP!; sender = env_sender
|
|
1006
|
-
SP!; reply_to = env_reply_to
|
|
1007
|
-
SP!; to = env_to
|
|
1008
|
-
SP!; cc = env_cc
|
|
1009
|
-
SP!; bcc = env_bcc
|
|
1010
|
-
SP!; in_reply_to = env_in_reply_to
|
|
1011
|
-
SP!; message_id = env_message_id
|
|
1012
|
-
rpar
|
|
1013
|
-
Envelope.new(date, subject, from, sender, reply_to,
|
|
1014
|
-
to, cc, bcc, in_reply_to, message_id)
|
|
1015
|
-
ensure
|
|
1016
|
-
@lex_state = EXPR_BEG
|
|
1017
|
-
end
|
|
1018
|
-
|
|
1019
|
-
# env-date = nstring
|
|
1020
|
-
# env-subject = nstring
|
|
1021
|
-
# env-in-reply-to = nstring
|
|
1022
|
-
# env-message-id = nstring
|
|
1023
|
-
alias env_date nstring
|
|
1024
|
-
alias env_subject nstring
|
|
1025
|
-
alias env_in_reply_to nstring
|
|
1026
|
-
alias env_message_id nstring
|
|
1027
|
-
|
|
1028
|
-
# env-from = "(" 1*address ")" / nil
|
|
1029
|
-
# env-sender = "(" 1*address ")" / nil
|
|
1030
|
-
# env-reply-to = "(" 1*address ")" / nil
|
|
1031
|
-
# env-to = "(" 1*address ")" / nil
|
|
1032
|
-
# env-cc = "(" 1*address ")" / nil
|
|
1033
|
-
# env-bcc = "(" 1*address ")" / nil
|
|
1034
|
-
def nlist__address
|
|
1035
|
-
return if NIL?
|
|
1036
|
-
lpar; list = [address]; list << address until (quirky_SP?; rpar?)
|
|
1037
|
-
list
|
|
1038
|
-
end
|
|
1039
|
-
|
|
1040
|
-
alias env_from nlist__address
|
|
1041
|
-
alias env_sender nlist__address
|
|
1042
|
-
alias env_reply_to nlist__address
|
|
1043
|
-
alias env_to nlist__address
|
|
1044
|
-
alias env_cc nlist__address
|
|
1045
|
-
alias env_bcc nlist__address
|
|
1046
|
-
|
|
1047
|
-
# Used when servers erroneously send an extra SP.
|
|
1048
|
-
#
|
|
1049
|
-
# As of 2023-11-28, Outlook.com (still) sends SP
|
|
1050
|
-
# between +address+ in <tt>env-*</tt> lists.
|
|
1051
|
-
alias quirky_SP? SP?
|
|
1052
|
-
|
|
1053
|
-
# date-time = DQUOTE date-day-fixed "-" date-month "-" date-year
|
|
1054
|
-
# SP time SP zone DQUOTE
|
|
1055
|
-
alias date_time quoted
|
|
1056
|
-
alias ndatetime nquoted
|
|
1057
|
-
|
|
1058
|
-
# RFC-3501 & RFC-9051:
|
|
1059
|
-
# body = "(" (body-type-1part / body-type-mpart) ")"
|
|
1060
|
-
def body
|
|
1061
|
-
@lex_state = EXPR_DATA
|
|
1062
|
-
lpar; result = peek_lpar? ? body_type_mpart : body_type_1part; rpar
|
|
1063
|
-
result
|
|
1064
|
-
ensure
|
|
1065
|
-
@lex_state = EXPR_BEG
|
|
1066
|
-
end
|
|
1067
|
-
alias lookahead_body? lookahead_lpar?
|
|
1068
|
-
|
|
1069
|
-
# RFC-3501 & RFC9051:
|
|
1070
|
-
# body-type-1part = (body-type-basic / body-type-msg / body-type-text)
|
|
1071
|
-
# [SP body-ext-1part]
|
|
1072
|
-
def body_type_1part
|
|
1073
|
-
# This regexp peek is a performance optimization.
|
|
1074
|
-
# The lookahead fallback would work fine too.
|
|
1075
|
-
m = peek_re(/\G(?:
|
|
1076
|
-
(?<TEXT> "TEXT" \s "[^"]+" )
|
|
1077
|
-
|(?<MESSAGE> "MESSAGE" \s "(?:RFC822|GLOBAL)" )
|
|
1078
|
-
|(?<BASIC> "[^"]+" \s "[^"]+" )
|
|
1079
|
-
|(?<MIXED> "MIXED" )
|
|
1080
|
-
)/nix)
|
|
1081
|
-
choice = m&.named_captures&.compact&.keys&.first
|
|
1082
|
-
# In practice, the following line should never be used. But the ABNF
|
|
1083
|
-
# *does* allow literals, and this will handle them.
|
|
1084
|
-
choice ||= lookahead_case_insensitive__string!
|
|
1085
|
-
case choice
|
|
1086
|
-
when "BASIC" then body_type_basic # => BodyTypeBasic
|
|
1087
|
-
when "MESSAGE" then body_type_msg # => BodyTypeMessage | BodyTypeBasic
|
|
1088
|
-
when "TEXT" then body_type_text # => BodyTypeText
|
|
1089
|
-
when "MIXED" then body_type_mixed # => BodyTypeMultipart (server bug)
|
|
1090
|
-
else body_type_basic # might be a bug; server's or ours?
|
|
1091
|
-
end
|
|
1092
|
-
end
|
|
1093
|
-
|
|
1094
|
-
# RFC-3501 & RFC9051:
|
|
1095
|
-
# body-type-basic = media-basic SP body-fields
|
|
1096
|
-
def body_type_basic
|
|
1097
|
-
type = media_basic # n.b. "basic" type isn't enforced here
|
|
1098
|
-
if lookahead_rpar? then return BodyTypeBasic.new(*type) end # invalid
|
|
1099
|
-
SP!; flds = body_fields
|
|
1100
|
-
SP? and exts = body_ext_1part
|
|
1101
|
-
BodyTypeBasic.new(*type, *flds, *exts)
|
|
1102
|
-
end
|
|
1103
|
-
|
|
1104
|
-
# RFC-3501 & RFC-9051:
|
|
1105
|
-
# body-type-text = media-text SP body-fields SP body-fld-lines
|
|
1106
|
-
def body_type_text
|
|
1107
|
-
type = media_text
|
|
1108
|
-
SP!; flds = body_fields
|
|
1109
|
-
SP!; lines = body_fld_lines
|
|
1110
|
-
SP? and exts = body_ext_1part
|
|
1111
|
-
BodyTypeText.new(*type, *flds, lines, *exts)
|
|
1112
|
-
end
|
|
1113
|
-
|
|
1114
|
-
# RFC-3501 & RFC-9051:
|
|
1115
|
-
# body-type-msg = media-message SP body-fields SP envelope
|
|
1116
|
-
# SP body SP body-fld-lines
|
|
1117
|
-
def body_type_msg
|
|
1118
|
-
# n.b. "message/rfc822" type isn't enforced here
|
|
1119
|
-
type = media_message
|
|
1120
|
-
SP!; flds = body_fields
|
|
1121
|
-
|
|
1122
|
-
# Sometimes servers send body-type-basic when body-type-msg should be.
|
|
1123
|
-
# E.g: when a message/rfc822 part has "Content-Disposition: attachment".
|
|
1124
|
-
#
|
|
1125
|
-
# * SP "(" --> SP envelope --> continue as body-type-msg
|
|
1126
|
-
# * ")" --> no body-ext-1part --> completed body-type-basic
|
|
1127
|
-
# * SP nstring --> SP body-fld-md5
|
|
1128
|
-
# --> SP body-ext-1part --> continue as body-type-basic
|
|
1129
|
-
#
|
|
1130
|
-
# It's probably better to return BodyTypeBasic---even for
|
|
1131
|
-
# "message/rfc822"---than BodyTypeMessage with invalid fields.
|
|
1132
|
-
unless peek_str?(" (")
|
|
1133
|
-
SP? and exts = body_ext_1part
|
|
1134
|
-
return BodyTypeBasic.new(*type, *flds, *exts)
|
|
1135
|
-
end
|
|
1136
|
-
|
|
1137
|
-
SP!; env = envelope
|
|
1138
|
-
SP!; bdy = body
|
|
1139
|
-
SP!; lines = body_fld_lines
|
|
1140
|
-
SP? and exts = body_ext_1part
|
|
1141
|
-
BodyTypeMessage.new(*type, *flds, env, bdy, lines, *exts)
|
|
1142
|
-
end
|
|
1143
|
-
|
|
1144
|
-
# This is a malformed body-type-mpart with no subparts.
|
|
1145
|
-
def body_type_mixed
|
|
1146
|
-
# warn "malformed body-type-mpart: multipart/mixed with no parts."
|
|
1147
|
-
type = media_subtype # => "MIXED"
|
|
1148
|
-
SP? and exts = body_ext_mpart
|
|
1149
|
-
BodyTypeMultipart.new("MULTIPART", type, nil, *exts)
|
|
1150
|
-
end
|
|
1151
|
-
|
|
1152
|
-
# RFC-3501 & RFC-9051:
|
|
1153
|
-
# body-type-mpart = 1*body SP media-subtype
|
|
1154
|
-
# [SP body-ext-mpart]
|
|
1155
|
-
def body_type_mpart
|
|
1156
|
-
parts = [body]; parts << body until SP?; msubtype = media_subtype
|
|
1157
|
-
SP? and exts = body_ext_mpart
|
|
1158
|
-
BodyTypeMultipart.new("MULTIPART", msubtype, parts, *exts)
|
|
1159
|
-
end
|
|
1160
|
-
|
|
1161
|
-
# n.b. this handles both type and subtype
|
|
1162
|
-
#
|
|
1163
|
-
# RFC-3501 vs RFC-9051:
|
|
1164
|
-
# media-basic = ((DQUOTE ("APPLICATION" / "AUDIO" / "IMAGE" /
|
|
1165
|
-
# "MESSAGE" /
|
|
1166
|
-
# "VIDEO") DQUOTE) / string) SP media-subtype
|
|
1167
|
-
# media-basic = ((DQUOTE ("APPLICATION" / "AUDIO" / "IMAGE" /
|
|
1168
|
-
# "FONT" / "MESSAGE" / "MODEL" /
|
|
1169
|
-
# "VIDEO") DQUOTE) / string) SP media-subtype
|
|
1170
|
-
#
|
|
1171
|
-
# media-message = DQUOTE "MESSAGE" DQUOTE SP
|
|
1172
|
-
# DQUOTE "RFC822" DQUOTE
|
|
1173
|
-
# media-message = DQUOTE "MESSAGE" DQUOTE SP
|
|
1174
|
-
# DQUOTE ("RFC822" / "GLOBAL") DQUOTE
|
|
1175
|
-
#
|
|
1176
|
-
# RFC-3501 & RFC-9051:
|
|
1177
|
-
# media-text = DQUOTE "TEXT" DQUOTE SP media-subtype
|
|
1178
|
-
# media-subtype = string
|
|
1179
|
-
def media_type
|
|
1180
|
-
mtype = case_insensitive__string
|
|
1181
|
-
SP? or return mtype, nil # ??? quirky!
|
|
1182
|
-
msubtype = media_subtype
|
|
1183
|
-
return mtype, msubtype
|
|
1184
|
-
end
|
|
1185
|
-
|
|
1186
|
-
# TODO: check types
|
|
1187
|
-
alias media_basic media_type # */* --- catchall
|
|
1188
|
-
alias media_message media_type # message/rfc822, message/global
|
|
1189
|
-
alias media_text media_type # text/*
|
|
1190
|
-
|
|
1191
|
-
alias media_subtype case_insensitive__string
|
|
1192
|
-
|
|
1193
|
-
# RFC-3501 & RFC-9051:
|
|
1194
|
-
# body-fields = body-fld-param SP body-fld-id SP body-fld-desc SP
|
|
1195
|
-
# body-fld-enc SP body-fld-octets
|
|
1196
|
-
def body_fields
|
|
1197
|
-
fields = []
|
|
1198
|
-
fields << body_fld_param; SP!
|
|
1199
|
-
fields << body_fld_id; SP!
|
|
1200
|
-
fields << body_fld_desc; SP!
|
|
1201
|
-
fields << body_fld_enc; SP!
|
|
1202
|
-
fields << body_fld_octets
|
|
1203
|
-
fields
|
|
1204
|
-
end
|
|
1205
|
-
|
|
1206
|
-
# RFC3501, RFC9051:
|
|
1207
|
-
# body-fld-param = "(" string SP string *(SP string SP string) ")" / nil
|
|
1208
|
-
def body_fld_param
|
|
1209
|
-
quirky_SP? # See comments on test_bodystructure_extra_space
|
|
1210
|
-
return if NIL?
|
|
1211
|
-
param = {}
|
|
1212
|
-
lpar
|
|
1213
|
-
name = case_insensitive__string; SP!; param[name] = string
|
|
1214
|
-
while SP?
|
|
1215
|
-
name = case_insensitive__string; SP!; param[name] = string
|
|
1216
|
-
end
|
|
1217
|
-
rpar
|
|
1218
|
-
param
|
|
1219
|
-
end
|
|
1220
|
-
|
|
1221
|
-
# RFC2060
|
|
1222
|
-
# body_ext_1part ::= body_fld_md5 [SPACE body_fld_dsp
|
|
1223
|
-
# [SPACE body_fld_lang
|
|
1224
|
-
# [SPACE 1#body_extension]]]
|
|
1225
|
-
# ;; MUST NOT be returned on non-extensible
|
|
1226
|
-
# ;; "BODY" fetch
|
|
1227
|
-
# RFC3501 & RFC9051
|
|
1228
|
-
# body-ext-1part = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
|
|
1229
|
-
# [SP body-fld-loc *(SP body-extension)]]]
|
|
1230
|
-
# ; MUST NOT be returned on non-extensible
|
|
1231
|
-
# ; "BODY" fetch
|
|
1232
|
-
def body_ext_1part
|
|
1233
|
-
fields = []; fields << body_fld_md5
|
|
1234
|
-
SP? or return fields; fields << body_fld_dsp
|
|
1235
|
-
SP? or return fields; fields << body_fld_lang
|
|
1236
|
-
SP? or return fields; fields << body_fld_loc
|
|
1237
|
-
SP? or return fields; fields << body_extensions
|
|
1238
|
-
fields
|
|
1239
|
-
end
|
|
1240
|
-
|
|
1241
|
-
# RFC-2060:
|
|
1242
|
-
# body_ext_mpart = body_fld_param [SP body_fld_dsp SP body_fld_lang
|
|
1243
|
-
# [SP 1#body_extension]]
|
|
1244
|
-
# ;; MUST NOT be returned on non-extensible
|
|
1245
|
-
# ;; "BODY" fetch
|
|
1246
|
-
# RFC-3501 & RFC-9051:
|
|
1247
|
-
# body-ext-mpart = body-fld-param [SP body-fld-dsp [SP body-fld-lang
|
|
1248
|
-
# [SP body-fld-loc *(SP body-extension)]]]
|
|
1249
|
-
# ; MUST NOT be returned on non-extensible
|
|
1250
|
-
# ; "BODY" fetch
|
|
1251
|
-
def body_ext_mpart
|
|
1252
|
-
fields = []; fields << body_fld_param
|
|
1253
|
-
SP? or return fields; fields << body_fld_dsp
|
|
1254
|
-
SP? or return fields; fields << body_fld_lang
|
|
1255
|
-
SP? or return fields; fields << body_fld_loc
|
|
1256
|
-
SP? or return fields; fields << body_extensions
|
|
1257
|
-
fields
|
|
1258
|
-
end
|
|
1259
|
-
|
|
1260
|
-
alias body_fld_desc nstring
|
|
1261
|
-
alias body_fld_id nstring
|
|
1262
|
-
alias body_fld_loc nstring
|
|
1263
|
-
alias body_fld_lines number64 # number in 3501, number64 in 9051
|
|
1264
|
-
alias body_fld_md5 nstring
|
|
1265
|
-
alias body_fld_octets number
|
|
1266
|
-
|
|
1267
|
-
# RFC-3501 & RFC-9051:
|
|
1268
|
-
# body-fld-enc = (DQUOTE ("7BIT" / "8BIT" / "BINARY" / "BASE64"/
|
|
1269
|
-
# "QUOTED-PRINTABLE") DQUOTE) / string
|
|
1270
|
-
alias body_fld_enc case_insensitive__string
|
|
1271
|
-
|
|
1272
|
-
# body-fld-dsp = "(" string SP body-fld-param ")" / nil
|
|
1273
|
-
def body_fld_dsp
|
|
1274
|
-
return if NIL?
|
|
1275
|
-
lpar; dsp_type = case_insensitive__string
|
|
1276
|
-
SP!; param = body_fld_param
|
|
1277
|
-
rpar
|
|
1278
|
-
ContentDisposition.new(dsp_type, param)
|
|
1279
|
-
end
|
|
1280
|
-
|
|
1281
|
-
# body-fld-lang = nstring / "(" string *(SP string) ")"
|
|
1282
|
-
def body_fld_lang
|
|
1283
|
-
if lpar?
|
|
1284
|
-
result = [case_insensitive__string]
|
|
1285
|
-
result << case_insensitive__string while SP?
|
|
1286
|
-
rpar
|
|
1287
|
-
result
|
|
1288
|
-
else
|
|
1289
|
-
case_insensitive__nstring
|
|
1290
|
-
end
|
|
1291
|
-
end
|
|
1292
|
-
|
|
1293
|
-
# body-extension *(SP body-extension)
|
|
1294
|
-
def body_extensions
|
|
1295
|
-
result = []
|
|
1296
|
-
result << body_extension; while SP? do result << body_extension end
|
|
1297
|
-
result
|
|
1298
|
-
end
|
|
1299
|
-
|
|
1300
|
-
# body-extension = nstring / number / number64 /
|
|
1301
|
-
# "(" body-extension *(SP body-extension) ")"
|
|
1302
|
-
# ; Future expansion. Client implementations
|
|
1303
|
-
# ; MUST accept body-extension fields. Server
|
|
1304
|
-
# ; implementations MUST NOT generate
|
|
1305
|
-
# ; body-extension fields except as defined by
|
|
1306
|
-
# ; future Standard or Standards Track
|
|
1307
|
-
# ; revisions of this specification.
|
|
1308
|
-
def body_extension
|
|
1309
|
-
if (uint = number64?) then uint
|
|
1310
|
-
elsif lpar? then exts = body_extensions; rpar; exts
|
|
1311
|
-
else nstring
|
|
1312
|
-
end
|
|
1313
|
-
end
|
|
1314
|
-
|
|
1315
|
-
# section = "[" [section-spec] "]"
|
|
1316
|
-
def section
|
|
1317
|
-
str = +lbra
|
|
1318
|
-
str << section_spec unless peek_rbra?
|
|
1319
|
-
str << rbra
|
|
1320
|
-
end
|
|
1321
|
-
|
|
1322
|
-
# section-binary = "[" [section-part] "]"
|
|
1323
|
-
def section_binary
|
|
1324
|
-
str = +lbra
|
|
1325
|
-
str << section_part unless peek_rbra?
|
|
1326
|
-
str << rbra
|
|
1327
|
-
end
|
|
1328
|
-
|
|
1329
|
-
# section-spec = section-msgtext / (section-part ["." section-text])
|
|
1330
|
-
# section-msgtext = "HEADER" /
|
|
1331
|
-
# "HEADER.FIELDS" [".NOT"] SP header-list /
|
|
1332
|
-
# "TEXT"
|
|
1333
|
-
# ; top-level or MESSAGE/RFC822 or
|
|
1334
|
-
# ; MESSAGE/GLOBAL part
|
|
1335
|
-
# section-part = nz-number *("." nz-number)
|
|
1336
|
-
# ; body part reference.
|
|
1337
|
-
# ; Allows for accessing nested body parts.
|
|
1338
|
-
# section-text = section-msgtext / "MIME"
|
|
1339
|
-
# ; text other than actual body part (headers,
|
|
1340
|
-
# ; etc.)
|
|
1341
|
-
#
|
|
1342
|
-
# n.b: we could "cheat" here and just grab all text inside the brackets,
|
|
1343
|
-
# but literals would need special treatment.
|
|
1344
|
-
def section_spec
|
|
1345
|
-
str = "".b
|
|
1346
|
-
str << atom # grabs everything up to "SP header-list" or "]"
|
|
1347
|
-
str << " " << header_list if SP?
|
|
1348
|
-
str
|
|
1349
|
-
end
|
|
1350
|
-
|
|
1351
|
-
# header-list = "(" header-fld-name *(SP header-fld-name) ")"
|
|
1352
|
-
def header_list
|
|
1353
|
-
str = +""
|
|
1354
|
-
str << lpar << header_fld_name
|
|
1355
|
-
str << " " << header_fld_name while SP?
|
|
1356
|
-
str << rpar
|
|
1357
|
-
end
|
|
1358
|
-
|
|
1359
|
-
# section-part = nz-number *("." nz-number)
|
|
1360
|
-
# ; body part reference.
|
|
1361
|
-
# ; Allows for accessing nested body parts.
|
|
1362
|
-
alias section_part atom
|
|
1363
|
-
|
|
1364
|
-
# RFC3501 & RFC9051:
|
|
1365
|
-
# header-fld-name = astring
|
|
1366
|
-
#
|
|
1367
|
-
# NOTE: Previously, Net::IMAP recreated the raw original source string.
|
|
1368
|
-
# Now, it returns the decoded astring value. Although this is technically
|
|
1369
|
-
# incompatible, it should almost never make a difference: all standard
|
|
1370
|
-
# header field names are valid atoms:
|
|
1371
|
-
#
|
|
1372
|
-
# https://www.iana.org/assignments/message-headers/message-headers.xhtml
|
|
1373
|
-
#
|
|
1374
|
-
# See also RFC5233:
|
|
1375
|
-
# optional-field = field-name ":" unstructured CRLF
|
|
1376
|
-
# field-name = 1*ftext
|
|
1377
|
-
# ftext = %d33-57 / ; Printable US-ASCII
|
|
1378
|
-
# %d59-126 ; characters not including
|
|
1379
|
-
# ; ":".
|
|
1380
|
-
alias header_fld_name astring
|
|
1381
|
-
|
|
1382
|
-
# mailbox-data = "FLAGS" SP flag-list / "LIST" SP mailbox-list /
|
|
1383
|
-
# "LSUB" SP mailbox-list / "SEARCH" *(SP nz-number) /
|
|
1384
|
-
# "STATUS" SP mailbox SP "(" [status-att-list] ")" /
|
|
1385
|
-
# number SP "EXISTS" / number SP "RECENT"
|
|
1386
|
-
|
|
1387
|
-
def mailbox_data__flags
|
|
1388
|
-
name = label("FLAGS")
|
|
1389
|
-
SP!
|
|
1390
|
-
UntaggedResponse.new(name, flag_list, @str)
|
|
1391
|
-
end
|
|
1392
|
-
|
|
1393
|
-
def mailbox_data__list
|
|
1394
|
-
name = label_in("LIST", "LSUB", "XLIST")
|
|
1395
|
-
SP!
|
|
1396
|
-
UntaggedResponse.new(name, mailbox_list, @str)
|
|
1397
|
-
end
|
|
1398
|
-
alias mailbox_data__lsub mailbox_data__list
|
|
1399
|
-
alias mailbox_data__xlist mailbox_data__list
|
|
1400
|
-
|
|
1401
|
-
# mailbox-list = "(" [mbx-list-flags] ")" SP
|
|
1402
|
-
# (DQUOTE QUOTED-CHAR DQUOTE / nil) SP mailbox
|
|
1403
|
-
# [SP mbox-list-extended]
|
|
1404
|
-
# ; This is the list information pointed to by the ABNF
|
|
1405
|
-
# ; item "mailbox-data", which is defined above
|
|
1406
|
-
def mailbox_list
|
|
1407
|
-
lpar; attr = peek_rpar? ? [] : mbx_list_flags; rpar
|
|
1408
|
-
SP!; delim = nquoted
|
|
1409
|
-
SP!; name = mailbox
|
|
1410
|
-
# TODO: mbox-list-extended
|
|
1411
|
-
MailboxList.new(attr, delim, name)
|
|
1412
|
-
end
|
|
1413
|
-
|
|
1414
|
-
def quota_response
|
|
1415
|
-
# If quota never established, get back
|
|
1416
|
-
# `NO Quota root does not exist'.
|
|
1417
|
-
# If quota removed, get `()' after the
|
|
1418
|
-
# folder spec with no mention of `STORAGE'.
|
|
1419
|
-
token = match(T_ATOM)
|
|
1420
|
-
name = token.value.upcase
|
|
1421
|
-
match(T_SPACE)
|
|
1422
|
-
mailbox = astring
|
|
1423
|
-
match(T_SPACE)
|
|
1424
|
-
match(T_LPAR)
|
|
1425
|
-
token = lookahead
|
|
1426
|
-
case token.symbol
|
|
1427
|
-
when T_RPAR
|
|
1428
|
-
shift_token
|
|
1429
|
-
data = MailboxQuota.new(mailbox, nil, nil)
|
|
1430
|
-
return UntaggedResponse.new(name, data, @str)
|
|
1431
|
-
when T_ATOM
|
|
1432
|
-
shift_token
|
|
1433
|
-
match(T_SPACE)
|
|
1434
|
-
token = match(T_NUMBER)
|
|
1435
|
-
usage = token.value
|
|
1436
|
-
match(T_SPACE)
|
|
1437
|
-
token = match(T_NUMBER)
|
|
1438
|
-
quota = token.value
|
|
1439
|
-
match(T_RPAR)
|
|
1440
|
-
data = MailboxQuota.new(mailbox, usage, quota)
|
|
1441
|
-
return UntaggedResponse.new(name, data, @str)
|
|
1442
|
-
else
|
|
1443
|
-
parse_error("unexpected token %s", token.symbol)
|
|
1444
|
-
end
|
|
1445
|
-
end
|
|
1446
|
-
|
|
1447
|
-
def quotaroot_response
|
|
1448
|
-
# Similar to getquota, but only admin can use getquota.
|
|
1449
|
-
token = match(T_ATOM)
|
|
1450
|
-
name = token.value.upcase
|
|
1451
|
-
match(T_SPACE)
|
|
1452
|
-
mailbox = astring
|
|
1453
|
-
quotaroots = []
|
|
1454
|
-
while true
|
|
1455
|
-
token = lookahead
|
|
1456
|
-
break unless token.symbol == T_SPACE
|
|
1457
|
-
shift_token
|
|
1458
|
-
quotaroots.push(astring)
|
|
1459
|
-
end
|
|
1460
|
-
data = MailboxQuotaRoot.new(mailbox, quotaroots)
|
|
1461
|
-
return UntaggedResponse.new(name, data, @str)
|
|
1462
|
-
end
|
|
1463
|
-
|
|
1464
|
-
# acl-data = "ACL" SP mailbox *(SP identifier SP rights)
|
|
1465
|
-
def acl_data
|
|
1466
|
-
token = match(T_ATOM)
|
|
1467
|
-
name = token.value.upcase
|
|
1468
|
-
match(T_SPACE)
|
|
1469
|
-
mailbox = astring
|
|
1470
|
-
data = []
|
|
1471
|
-
token = lookahead
|
|
1472
|
-
if token.symbol == T_SPACE
|
|
1473
|
-
shift_token
|
|
1474
|
-
while true
|
|
1475
|
-
token = lookahead
|
|
1476
|
-
case token.symbol
|
|
1477
|
-
when T_CRLF
|
|
1478
|
-
break
|
|
1479
|
-
when T_SPACE
|
|
1480
|
-
shift_token
|
|
1481
|
-
end
|
|
1482
|
-
user = astring
|
|
1483
|
-
match(T_SPACE)
|
|
1484
|
-
rights = astring
|
|
1485
|
-
data.push(MailboxACLItem.new(user, rights, mailbox))
|
|
1486
|
-
end
|
|
1487
|
-
end
|
|
1488
|
-
return UntaggedResponse.new(name, data, @str)
|
|
1489
|
-
end
|
|
1490
|
-
|
|
1491
|
-
# RFC3501:
|
|
1492
|
-
# mailbox-data = "SEARCH" *(SP nz-number) / ...
|
|
1493
|
-
# RFC5256: SORT
|
|
1494
|
-
# sort-data = "SORT" *(SP nz-number)
|
|
1495
|
-
# RFC7162: CONDSTORE, QRESYNC
|
|
1496
|
-
# mailbox-data =/ "SEARCH" [1*(SP nz-number) SP
|
|
1497
|
-
# search-sort-mod-seq]
|
|
1498
|
-
# sort-data = "SORT" [1*(SP nz-number) SP
|
|
1499
|
-
# search-sort-mod-seq]
|
|
1500
|
-
# ; Updates the SORT response from RFC 5256.
|
|
1501
|
-
# search-sort-mod-seq = "(" "MODSEQ" SP mod-sequence-value ")"
|
|
1502
|
-
# RFC9051:
|
|
1503
|
-
# mailbox-data = obsolete-search-response / ...
|
|
1504
|
-
# obsolete-search-response = "SEARCH" *(SP nz-number)
|
|
1505
|
-
def mailbox_data__search
|
|
1506
|
-
name = label_in("SEARCH", "SORT")
|
|
1507
|
-
data = []
|
|
1508
|
-
while _ = SP? && nz_number? do data << _ end
|
|
1509
|
-
if lpar?
|
|
1510
|
-
label("MODSEQ"); SP!
|
|
1511
|
-
modseq = mod_sequence_value
|
|
1512
|
-
rpar
|
|
1513
|
-
end
|
|
1514
|
-
data = SearchResult.new(data, modseq: modseq)
|
|
1515
|
-
UntaggedResponse.new(name, data, @str)
|
|
1516
|
-
end
|
|
1517
|
-
alias sort_data mailbox_data__search
|
|
1518
|
-
|
|
1519
|
-
# esearch-response = "ESEARCH" [search-correlator] [SP "UID"]
|
|
1520
|
-
# *(SP search-return-data)
|
|
1521
|
-
# ;; Note that SEARCH and ESEARCH responses
|
|
1522
|
-
# ;; SHOULD be mutually exclusive,
|
|
1523
|
-
# ;; i.e., only one of the response types
|
|
1524
|
-
# ;; should be
|
|
1525
|
-
# ;; returned as a result of a command.
|
|
1526
|
-
# esearch-response = "ESEARCH" [search-correlator] [SP "UID"]
|
|
1527
|
-
# *(SP search-return-data)
|
|
1528
|
-
# ; ESEARCH response replaces SEARCH response
|
|
1529
|
-
# ; from IMAP4rev1.
|
|
1530
|
-
# search-correlator = SP "(" "TAG" SP tag-string ")"
|
|
1531
|
-
def esearch_response
|
|
1532
|
-
name = label("ESEARCH")
|
|
1533
|
-
tag = search_correlator if peek_str?(" (")
|
|
1534
|
-
uid = peek_re?(/\G UID\b/i) && (SP!; label("UID"); true)
|
|
1535
|
-
data = []
|
|
1536
|
-
data << search_return_data while SP?
|
|
1537
|
-
esearch = ESearchResult.new(tag, uid, data)
|
|
1538
|
-
UntaggedResponse.new(name, esearch, @str)
|
|
1539
|
-
end
|
|
1540
|
-
|
|
1541
|
-
# From RFC4731 (ESEARCH):
|
|
1542
|
-
# search-return-data = "MIN" SP nz-number /
|
|
1543
|
-
# "MAX" SP nz-number /
|
|
1544
|
-
# "ALL" SP sequence-set /
|
|
1545
|
-
# "COUNT" SP number /
|
|
1546
|
-
# search-ret-data-ext
|
|
1547
|
-
# ; All return data items conform to
|
|
1548
|
-
# ; search-ret-data-ext syntax.
|
|
1549
|
-
# search-ret-data-ext = search-modifier-name SP search-return-value
|
|
1550
|
-
# search-modifier-name = tagged-ext-label
|
|
1551
|
-
# search-return-value = tagged-ext-val
|
|
1552
|
-
#
|
|
1553
|
-
# From RFC4731 (ESEARCH):
|
|
1554
|
-
# search-return-data =/ "MODSEQ" SP mod-sequence-value
|
|
1555
|
-
#
|
|
1556
|
-
# From RFC9394 (PARTIAL):
|
|
1557
|
-
# search-return-data =/ ret-data-partial
|
|
1558
|
-
#
|
|
1559
|
-
def search_return_data
|
|
1560
|
-
label = search_modifier_name; SP!
|
|
1561
|
-
value =
|
|
1562
|
-
case label
|
|
1563
|
-
when "MIN" then nz_number
|
|
1564
|
-
when "MAX" then nz_number
|
|
1565
|
-
when "ALL" then sequence_set
|
|
1566
|
-
when "COUNT" then number
|
|
1567
|
-
when "MODSEQ" then mod_sequence_value # RFC7162: CONDSTORE
|
|
1568
|
-
when "PARTIAL" then ret_data_partial__value # RFC9394: PARTIAL
|
|
1569
|
-
else search_return_value
|
|
1570
|
-
end
|
|
1571
|
-
[label, value]
|
|
1572
|
-
end
|
|
1573
|
-
|
|
1574
|
-
# From RFC5267 (CONTEXT=SEARCH, CONTEXT=SORT) and RFC9394 (PARTIAL):
|
|
1575
|
-
# ret-data-partial = "PARTIAL"
|
|
1576
|
-
# SP "(" partial-range SP partial-results ")"
|
|
1577
|
-
def ret_data_partial__value
|
|
1578
|
-
lpar
|
|
1579
|
-
range = partial_range; SP!
|
|
1580
|
-
results = partial_results
|
|
1581
|
-
rpar
|
|
1582
|
-
ESearchResult::PartialResult.new(range, results)
|
|
1583
|
-
end
|
|
1584
|
-
|
|
1585
|
-
# partial-range = partial-range-first / partial-range-last
|
|
1586
|
-
# tagged-ext-simple =/ partial-range-last
|
|
1587
|
-
def partial_range
|
|
1588
|
-
case (str = atom)
|
|
1589
|
-
when Patterns::PARTIAL_RANGE_FIRST, Patterns::PARTIAL_RANGE_LAST
|
|
1590
|
-
min, max = [Integer($1), Integer($2)].minmax
|
|
1591
|
-
min..max
|
|
1592
|
-
else
|
|
1593
|
-
parse_error("unexpected atom %p, expected partial-range", str)
|
|
1594
|
-
end
|
|
1595
|
-
end
|
|
1596
|
-
|
|
1597
|
-
# partial-results = sequence-set / "NIL"
|
|
1598
|
-
# ;; <sequence-set> from [RFC3501].
|
|
1599
|
-
# ;; NIL indicates that no results correspond to
|
|
1600
|
-
# ;; the requested range.
|
|
1601
|
-
def partial_results; NIL? ? nil : sequence_set end
|
|
1602
|
-
|
|
1603
|
-
# search-modifier-name = tagged-ext-label
|
|
1604
|
-
alias search_modifier_name tagged_ext_label
|
|
1605
|
-
|
|
1606
|
-
# search-return-value = tagged-ext-val
|
|
1607
|
-
# ; Data for the returned search option.
|
|
1608
|
-
# ; A single "nz-number"/"number"/"number64" value
|
|
1609
|
-
# ; can be returned as an atom (i.e., without
|
|
1610
|
-
# ; quoting). A sequence-set can be returned
|
|
1611
|
-
# ; as an atom as well.
|
|
1612
|
-
def search_return_value; ExtensionData.new(tagged_ext_val) end
|
|
1613
|
-
|
|
1614
|
-
# search-correlator = SP "(" "TAG" SP tag-string ")"
|
|
1615
|
-
def search_correlator
|
|
1616
|
-
SP!; lpar; label("TAG"); SP!; tag = tag_string; rpar
|
|
1617
|
-
tag
|
|
1618
|
-
end
|
|
1619
|
-
|
|
1620
|
-
# tag-string = astring
|
|
1621
|
-
# ; <tag> represented as <astring>
|
|
1622
|
-
alias tag_string astring
|
|
1623
|
-
|
|
1624
|
-
# RFC5256: THREAD
|
|
1625
|
-
# thread-data = "THREAD" [SP 1*thread-list]
|
|
1626
|
-
def thread_data
|
|
1627
|
-
name = label("THREAD")
|
|
1628
|
-
threads = []
|
|
1629
|
-
if SP?
|
|
1630
|
-
threads << thread_list while lookahead_thread_list?
|
|
1631
|
-
end
|
|
1632
|
-
UntaggedResponse.new(name, threads, @str)
|
|
1633
|
-
end
|
|
1634
|
-
|
|
1635
|
-
alias lookahead_thread_list? lookahead_lpar?
|
|
1636
|
-
alias lookahead_thread_nested? lookahead_thread_list?
|
|
1637
|
-
|
|
1638
|
-
# RFC5256: THREAD
|
|
1639
|
-
# thread-list = "(" (thread-members / thread-nested) ")"
|
|
1640
|
-
def thread_list
|
|
1641
|
-
lpar
|
|
1642
|
-
thread = if lookahead_thread_nested?
|
|
1643
|
-
ThreadMember.new(nil, thread_nested)
|
|
1644
|
-
else
|
|
1645
|
-
thread_members
|
|
1646
|
-
end
|
|
1647
|
-
rpar
|
|
1648
|
-
thread
|
|
1649
|
-
end
|
|
1650
|
-
|
|
1651
|
-
# RFC5256: THREAD
|
|
1652
|
-
# thread-members = nz-number *(SP nz-number) [SP thread-nested]
|
|
1653
|
-
def thread_members
|
|
1654
|
-
members = []
|
|
1655
|
-
members << nz_number # thread root
|
|
1656
|
-
while SP?
|
|
1657
|
-
case lookahead!(T_NUMBER, T_LPAR).symbol
|
|
1658
|
-
when T_NUMBER then members << nz_number
|
|
1659
|
-
else nested = thread_nested; break
|
|
1660
|
-
end
|
|
1661
|
-
end
|
|
1662
|
-
members.reverse.inject(nested || []) {|subthreads, number|
|
|
1663
|
-
[ThreadMember.new(number, subthreads)]
|
|
1664
|
-
}.first
|
|
1665
|
-
end
|
|
1666
|
-
|
|
1667
|
-
# RFC5256: THREAD
|
|
1668
|
-
# thread-nested = 2*thread-list
|
|
1669
|
-
def thread_nested
|
|
1670
|
-
nested = [thread_list, thread_list]
|
|
1671
|
-
while lookahead_thread_list? do nested << thread_list end
|
|
1672
|
-
nested
|
|
1673
|
-
end
|
|
1674
|
-
|
|
1675
|
-
# mailbox-data =/ "STATUS" SP mailbox SP "(" [status-att-list] ")"
|
|
1676
|
-
def mailbox_data__status
|
|
1677
|
-
resp_name = label("STATUS"); SP!
|
|
1678
|
-
mbox_name = mailbox; SP!
|
|
1679
|
-
lpar; attr = status_att_list; rpar
|
|
1680
|
-
UntaggedResponse.new(resp_name, StatusData.new(mbox_name, attr), @str)
|
|
1681
|
-
end
|
|
1682
|
-
|
|
1683
|
-
# RFC3501
|
|
1684
|
-
# status-att-list = status-att SP number *(SP status-att SP number)
|
|
1685
|
-
# RFC4466, RFC9051, and RFC3501 Errata
|
|
1686
|
-
# status-att-list = status-att-val *(SP status-att-val)
|
|
1687
|
-
def status_att_list
|
|
1688
|
-
attrs = [status_att_val]
|
|
1689
|
-
while SP? do attrs << status_att_val end
|
|
1690
|
-
attrs.to_h
|
|
1691
|
-
end
|
|
1692
|
-
|
|
1693
|
-
# RFC3501 Errata:
|
|
1694
|
-
# status-att-val = ("MESSAGES" SP number) / ("RECENT" SP number) /
|
|
1695
|
-
# ("UIDNEXT" SP nz-number) / ("UIDVALIDITY" SP nz-number) /
|
|
1696
|
-
# ("UNSEEN" SP number)
|
|
1697
|
-
# RFC4466:
|
|
1698
|
-
# status-att-val = ("MESSAGES" SP number) /
|
|
1699
|
-
# ("RECENT" SP number) /
|
|
1700
|
-
# ("UIDNEXT" SP nz-number) /
|
|
1701
|
-
# ("UIDVALIDITY" SP nz-number) /
|
|
1702
|
-
# ("UNSEEN" SP number)
|
|
1703
|
-
# ;; Extensions to the STATUS responses
|
|
1704
|
-
# ;; should extend this production.
|
|
1705
|
-
# ;; Extensions should use the generic
|
|
1706
|
-
# ;; syntax defined by tagged-ext.
|
|
1707
|
-
# RFC9051:
|
|
1708
|
-
# status-att-val = ("MESSAGES" SP number) /
|
|
1709
|
-
# ("UIDNEXT" SP nz-number) /
|
|
1710
|
-
# ("UIDVALIDITY" SP nz-number) /
|
|
1711
|
-
# ("UNSEEN" SP number) /
|
|
1712
|
-
# ("DELETED" SP number) /
|
|
1713
|
-
# ("SIZE" SP number64)
|
|
1714
|
-
# ; Extensions to the STATUS responses
|
|
1715
|
-
# ; should extend this production.
|
|
1716
|
-
# ; Extensions should use the generic
|
|
1717
|
-
# ; syntax defined by tagged-ext.
|
|
1718
|
-
# RFC7162:
|
|
1719
|
-
# status-att-val =/ "HIGHESTMODSEQ" SP mod-sequence-valzer
|
|
1720
|
-
# ;; Extends non-terminal defined in [RFC4466].
|
|
1721
|
-
# ;; Value 0 denotes that the mailbox doesn't
|
|
1722
|
-
# ;; support persistent mod-sequences
|
|
1723
|
-
# ;; as described in Section 3.1.2.2.
|
|
1724
|
-
# RFC7889:
|
|
1725
|
-
# status-att-val =/ "APPENDLIMIT" SP (number / nil)
|
|
1726
|
-
# ;; status-att-val is defined in RFC 4466
|
|
1727
|
-
# RFC8438:
|
|
1728
|
-
# status-att-val =/ "SIZE" SP number64
|
|
1729
|
-
# RFC8474:
|
|
1730
|
-
# status-att-val =/ "MAILBOXID" SP "(" objectid ")"
|
|
1731
|
-
# ; follows tagged-ext production from [RFC4466]
|
|
1732
|
-
def status_att_val
|
|
1733
|
-
key = tagged_ext_label
|
|
1734
|
-
SP!
|
|
1735
|
-
val =
|
|
1736
|
-
case key
|
|
1737
|
-
when "MESSAGES" then number # RFC3501, RFC9051
|
|
1738
|
-
when "UNSEEN" then number # RFC3501, RFC9051
|
|
1739
|
-
when "DELETED" then number # RFC3501, RFC9051
|
|
1740
|
-
when "UIDNEXT" then nz_number # RFC3501, RFC9051
|
|
1741
|
-
when "UIDVALIDITY" then nz_number # RFC3501, RFC9051
|
|
1742
|
-
when "RECENT" then number # RFC3501 (obsolete)
|
|
1743
|
-
when "SIZE" then number64 # RFC8483, RFC9051
|
|
1744
|
-
when "HIGHESTMODSEQ" then mod_sequence_valzer # RFC7162
|
|
1745
|
-
when "MAILBOXID" then parens__objectid # RFC8474
|
|
1746
|
-
else
|
|
1747
|
-
number? || ExtensionData.new(tagged_ext_val)
|
|
1748
|
-
end
|
|
1749
|
-
[key, val]
|
|
1750
|
-
end
|
|
1751
|
-
|
|
1752
|
-
# The presence of "IMAP4rev1" or "IMAP4rev2" is unenforced here.
|
|
1753
|
-
# The grammar rule is used by both response-data and resp-text-code.
|
|
1754
|
-
# But this method only returns UntaggedResponse (response-data).
|
|
1755
|
-
#
|
|
1756
|
-
# RFC3501:
|
|
1757
|
-
# capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev1"
|
|
1758
|
-
# *(SP capability)
|
|
1759
|
-
# RFC9051:
|
|
1760
|
-
# capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev2"
|
|
1761
|
-
# *(SP capability)
|
|
1762
|
-
def capability_data__untagged
|
|
1763
|
-
UntaggedResponse.new label("CAPABILITY"), capability__list, @str
|
|
1764
|
-
end
|
|
1765
|
-
|
|
1766
|
-
# enable-data = "ENABLED" *(SP capability)
|
|
1767
|
-
def enable_data
|
|
1768
|
-
UntaggedResponse.new label("ENABLED"), capability__list, @str
|
|
1769
|
-
end
|
|
1770
|
-
|
|
1771
|
-
# As a workaround for buggy servers, allow a trailing SP:
|
|
1772
|
-
# *(SP capability) [SP]
|
|
1773
|
-
def capability__list
|
|
1774
|
-
list = []; while SP? && (capa = capability?) do list << capa end; list
|
|
1775
|
-
end
|
|
1776
|
-
|
|
1777
|
-
alias resp_code__capability capability__list
|
|
1778
|
-
|
|
1779
|
-
# capability = ("AUTH=" auth-type) / atom
|
|
1780
|
-
# ; New capabilities MUST begin with "X" or be
|
|
1781
|
-
# ; registered with IANA as standard or
|
|
1782
|
-
# ; standards-track
|
|
1783
|
-
alias capability case_insensitive__atom
|
|
1784
|
-
alias capability? case_insensitive__atom?
|
|
1785
|
-
|
|
1786
|
-
def id_response
|
|
1787
|
-
token = match(T_ATOM)
|
|
1788
|
-
name = token.value.upcase
|
|
1789
|
-
match(T_SPACE)
|
|
1790
|
-
token = match(T_LPAR, T_NIL)
|
|
1791
|
-
if token.symbol == T_NIL
|
|
1792
|
-
return UntaggedResponse.new(name, nil, @str)
|
|
1793
|
-
else
|
|
1794
|
-
data = {}
|
|
1795
|
-
while true
|
|
1796
|
-
token = lookahead
|
|
1797
|
-
case token.symbol
|
|
1798
|
-
when T_RPAR
|
|
1799
|
-
shift_token
|
|
1800
|
-
break
|
|
1801
|
-
when T_SPACE
|
|
1802
|
-
shift_token
|
|
1803
|
-
next
|
|
1804
|
-
else
|
|
1805
|
-
key = string
|
|
1806
|
-
match(T_SPACE)
|
|
1807
|
-
val = nstring
|
|
1808
|
-
data[key] = val
|
|
1809
|
-
end
|
|
1810
|
-
end
|
|
1811
|
-
return UntaggedResponse.new(name, data, @str)
|
|
1812
|
-
end
|
|
1813
|
-
end
|
|
1814
|
-
|
|
1815
|
-
# namespace-response = "NAMESPACE" SP namespace
|
|
1816
|
-
# SP namespace SP namespace
|
|
1817
|
-
# ; The first Namespace is the Personal Namespace(s).
|
|
1818
|
-
# ; The second Namespace is the Other Users'
|
|
1819
|
-
# ; Namespace(s).
|
|
1820
|
-
# ; The third Namespace is the Shared Namespace(s).
|
|
1821
|
-
def namespace_response
|
|
1822
|
-
name = label("NAMESPACE")
|
|
1823
|
-
@lex_state = EXPR_DATA
|
|
1824
|
-
data = Namespaces.new((SP!; namespace),
|
|
1825
|
-
(SP!; namespace),
|
|
1826
|
-
(SP!; namespace))
|
|
1827
|
-
UntaggedResponse.new(name, data, @str)
|
|
1828
|
-
ensure
|
|
1829
|
-
@lex_state = EXPR_BEG
|
|
1830
|
-
end
|
|
1831
|
-
|
|
1832
|
-
# namespace = nil / "(" 1*namespace-descr ")"
|
|
1833
|
-
def namespace
|
|
1834
|
-
NIL? and return []
|
|
1835
|
-
lpar
|
|
1836
|
-
list = [namespace_descr]
|
|
1837
|
-
list << namespace_descr until rpar?
|
|
1838
|
-
list
|
|
1839
|
-
end
|
|
1840
|
-
|
|
1841
|
-
# namespace-descr = "(" string SP
|
|
1842
|
-
# (DQUOTE QUOTED-CHAR DQUOTE / nil)
|
|
1843
|
-
# [namespace-response-extensions] ")"
|
|
1844
|
-
def namespace_descr
|
|
1845
|
-
lpar
|
|
1846
|
-
prefix = string; SP!
|
|
1847
|
-
delimiter = nquoted # n.b: should only accept single char
|
|
1848
|
-
extensions = namespace_response_extensions
|
|
1849
|
-
rpar
|
|
1850
|
-
Namespace.new(prefix, delimiter, extensions)
|
|
1851
|
-
end
|
|
1852
|
-
|
|
1853
|
-
# namespace-response-extensions = *namespace-response-extension
|
|
1854
|
-
# namespace-response-extension = SP string SP
|
|
1855
|
-
# "(" string *(SP string) ")"
|
|
1856
|
-
def namespace_response_extensions
|
|
1857
|
-
data = {}
|
|
1858
|
-
while SP?
|
|
1859
|
-
name = string; SP!
|
|
1860
|
-
lpar
|
|
1861
|
-
data[name] ||= []
|
|
1862
|
-
data[name] << string
|
|
1863
|
-
data[name] << string while SP?
|
|
1864
|
-
rpar
|
|
1865
|
-
end
|
|
1866
|
-
data
|
|
1867
|
-
end
|
|
1868
|
-
|
|
1869
|
-
# TEXT-CHAR = <any CHAR except CR and LF>
|
|
1870
|
-
# RFC3501:
|
|
1871
|
-
# text = 1*TEXT-CHAR
|
|
1872
|
-
# RFC9051:
|
|
1873
|
-
# text = 1*(TEXT-CHAR / UTF8-2 / UTF8-3 / UTF8-4)
|
|
1874
|
-
# ; Non-ASCII text can only be returned
|
|
1875
|
-
# ; after ENABLE IMAP4rev2 command
|
|
1876
|
-
def text
|
|
1877
|
-
match_re(TEXT_REGEXP, "text")[0].force_encoding("UTF-8")
|
|
1878
|
-
end
|
|
1879
|
-
|
|
1880
|
-
# an "accept" versiun of #text
|
|
1881
|
-
def text?
|
|
1882
|
-
accept_re(TEXT_REGEXP)&.[](0)&.force_encoding("UTF-8")
|
|
1883
|
-
end
|
|
1884
|
-
|
|
1885
|
-
# RFC3501:
|
|
1886
|
-
# resp-text = ["[" resp-text-code "]" SP] text
|
|
1887
|
-
# RFC9051:
|
|
1888
|
-
# resp-text = ["[" resp-text-code "]" SP] [text]
|
|
1889
|
-
#
|
|
1890
|
-
# We leniently re-interpret this as
|
|
1891
|
-
# resp-text = ["[" resp-text-code "]" [SP [text]] / [text]
|
|
1892
|
-
def resp_text
|
|
1893
|
-
begin
|
|
1894
|
-
state = current_state
|
|
1895
|
-
if lbra?
|
|
1896
|
-
code = resp_text_code; rbra
|
|
1897
|
-
return ResponseText.new(code, SP? && text? || "")
|
|
1898
|
-
end
|
|
1899
|
-
rescue ResponseParseError => error
|
|
1900
|
-
raise if /\buid-set\b/i.match? error.message
|
|
1901
|
-
restore_state state
|
|
1902
|
-
end
|
|
1903
|
-
ResponseText.new(nil, text? || "")
|
|
1904
|
-
end
|
|
1905
|
-
|
|
1906
|
-
# RFC3501 (See https://www.rfc-editor.org/errata/rfc3501):
|
|
1907
|
-
# resp-text-code = "ALERT" /
|
|
1908
|
-
# "BADCHARSET" [SP "(" charset *(SP charset) ")" ] /
|
|
1909
|
-
# capability-data / "PARSE" /
|
|
1910
|
-
# "PERMANENTFLAGS" SP "(" [flag-perm *(SP flag-perm)] ")" /
|
|
1911
|
-
# "READ-ONLY" / "READ-WRITE" / "TRYCREATE" /
|
|
1912
|
-
# "UIDNEXT" SP nz-number / "UIDVALIDITY" SP nz-number /
|
|
1913
|
-
# "UNSEEN" SP nz-number /
|
|
1914
|
-
# atom [SP 1*<any TEXT-CHAR except "]">]
|
|
1915
|
-
# capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev1"
|
|
1916
|
-
# *(SP capability)
|
|
1917
|
-
#
|
|
1918
|
-
# RFC5530:
|
|
1919
|
-
# resp-text-code =/ "UNAVAILABLE" / "AUTHENTICATIONFAILED" /
|
|
1920
|
-
# "AUTHORIZATIONFAILED" / "EXPIRED" /
|
|
1921
|
-
# "PRIVACYREQUIRED" / "CONTACTADMIN" / "NOPERM" /
|
|
1922
|
-
# "INUSE" / "EXPUNGEISSUED" / "CORRUPTION" /
|
|
1923
|
-
# "SERVERBUG" / "CLIENTBUG" / "CANNOT" /
|
|
1924
|
-
# "LIMIT" / "OVERQUOTA" / "ALREADYEXISTS" /
|
|
1925
|
-
# "NONEXISTENT"
|
|
1926
|
-
# RFC9051:
|
|
1927
|
-
# resp-text-code = "ALERT" /
|
|
1928
|
-
# "BADCHARSET" [SP "(" charset *(SP charset) ")" ] /
|
|
1929
|
-
# capability-data / "PARSE" /
|
|
1930
|
-
# "PERMANENTFLAGS" SP "(" [flag-perm *(SP flag-perm)] ")" /
|
|
1931
|
-
# "READ-ONLY" / "READ-WRITE" / "TRYCREATE" /
|
|
1932
|
-
# "UIDNEXT" SP nz-number / "UIDVALIDITY" SP nz-number /
|
|
1933
|
-
# resp-code-apnd / resp-code-copy / "UIDNOTSTICKY" /
|
|
1934
|
-
# "UNAVAILABLE" / "AUTHENTICATIONFAILED" /
|
|
1935
|
-
# "AUTHORIZATIONFAILED" / "EXPIRED" /
|
|
1936
|
-
# "PRIVACYREQUIRED" / "CONTACTADMIN" / "NOPERM" /
|
|
1937
|
-
# "INUSE" / "EXPUNGEISSUED" / "CORRUPTION" /
|
|
1938
|
-
# "SERVERBUG" / "CLIENTBUG" / "CANNOT" /
|
|
1939
|
-
# "LIMIT" / "OVERQUOTA" / "ALREADYEXISTS" /
|
|
1940
|
-
# "NONEXISTENT" / "NOTSAVED" / "HASCHILDREN" /
|
|
1941
|
-
# "CLOSED" /
|
|
1942
|
-
# "UNKNOWN-CTE" /
|
|
1943
|
-
# atom [SP 1*<any TEXT-CHAR except "]">]
|
|
1944
|
-
# capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev2"
|
|
1945
|
-
# *(SP capability)
|
|
1946
|
-
#
|
|
1947
|
-
# RFC4315 (UIDPLUS), RFC9051 (IMAP4rev2):
|
|
1948
|
-
# resp-code-apnd = "APPENDUID" SP nz-number SP append-uid
|
|
1949
|
-
# resp-code-copy = "COPYUID" SP nz-number SP uid-set SP uid-set
|
|
1950
|
-
# resp-text-code =/ resp-code-apnd / resp-code-copy / "UIDNOTSTICKY"
|
|
1951
|
-
#
|
|
1952
|
-
# RFC7162 (CONDSTORE):
|
|
1953
|
-
# resp-text-code =/ "HIGHESTMODSEQ" SP mod-sequence-value /
|
|
1954
|
-
# "NOMODSEQ" /
|
|
1955
|
-
# "MODIFIED" SP sequence-set
|
|
1956
|
-
# RFC7162 (QRESYNC):
|
|
1957
|
-
# resp-text-code =/ "CLOSED"
|
|
1958
|
-
#
|
|
1959
|
-
# RFC8474: OBJECTID
|
|
1960
|
-
# resp-text-code =/ "MAILBOXID" SP "(" objectid ")"
|
|
1961
|
-
#
|
|
1962
|
-
# RFC9586: UIDONLY
|
|
1963
|
-
# resp-text-code =/ "UIDREQUIRED"
|
|
1964
|
-
def resp_text_code
|
|
1965
|
-
name = resp_text_code__name
|
|
1966
|
-
state = current_state
|
|
1967
|
-
data =
|
|
1968
|
-
case name
|
|
1969
|
-
when "CAPABILITY" then resp_code__capability
|
|
1970
|
-
when "PERMANENTFLAGS" then SP? ? flag_perm__list : []
|
|
1971
|
-
when "UIDNEXT" then SP!; nz_number
|
|
1972
|
-
when "UIDVALIDITY" then SP!; nz_number
|
|
1973
|
-
when "UNSEEN" then SP!; nz_number # rev1 only
|
|
1974
|
-
when "APPENDUID" then SP!; resp_code_apnd__data # rev2, UIDPLUS
|
|
1975
|
-
when "COPYUID" then SP!; resp_code_copy__data # rev2, UIDPLUS
|
|
1976
|
-
when "BADCHARSET" then SP? ? charset__list : []
|
|
1977
|
-
when "ALERT", "PARSE", "READ-ONLY", "READ-WRITE", "TRYCREATE",
|
|
1978
|
-
"UNAVAILABLE", "AUTHENTICATIONFAILED", "AUTHORIZATIONFAILED",
|
|
1979
|
-
"EXPIRED", "PRIVACYREQUIRED", "CONTACTADMIN", "NOPERM", "INUSE",
|
|
1980
|
-
"EXPUNGEISSUED", "CORRUPTION", "SERVERBUG", "CLIENTBUG", "CANNOT",
|
|
1981
|
-
"LIMIT", "OVERQUOTA", "ALREADYEXISTS", "NONEXISTENT", "CLOSED",
|
|
1982
|
-
"NOTSAVED", "UIDNOTSTICKY", "UNKNOWN-CTE", "HASCHILDREN"
|
|
1983
|
-
when "NOMODSEQ" then nil # CONDSTORE
|
|
1984
|
-
when "HIGHESTMODSEQ" then SP!; mod_sequence_value # CONDSTORE
|
|
1985
|
-
when "MODIFIED" then SP!; sequence_set # CONDSTORE
|
|
1986
|
-
when "MAILBOXID" then SP!; parens__objectid # RFC8474: OBJECTID
|
|
1987
|
-
when "UIDREQUIRED" then # RFC9586: UIDONLY
|
|
1988
|
-
else
|
|
1989
|
-
state = nil # don't backtrack
|
|
1990
|
-
SP? and text_chars_except_rbra
|
|
1991
|
-
end
|
|
1992
|
-
peek_rbra? or
|
|
1993
|
-
parse_error("expected resp-text-code %p to be complete", name)
|
|
1994
|
-
ResponseCode.new(name, data)
|
|
1995
|
-
rescue Net::IMAP::ResponseParseError => parse_error
|
|
1996
|
-
raise unless state
|
|
1997
|
-
raise if parse_error.message.include?("uid-set")
|
|
1998
|
-
restore_state state
|
|
1999
|
-
unparsed_data = SP? && text_chars_except_rbra
|
|
2000
|
-
data = InvalidParseData[parse_error:, unparsed_data:, parsed_data: data]
|
|
2001
|
-
ResponseCode.new(name, data)
|
|
2002
|
-
end
|
|
2003
|
-
|
|
2004
|
-
alias resp_text_code__name case_insensitive__atom
|
|
2005
|
-
|
|
2006
|
-
# 1*<any TEXT-CHAR except "]">
|
|
2007
|
-
def text_chars_except_rbra
|
|
2008
|
-
match_re(CTEXT_REGEXP, '1*<any TEXT-CHAR except "]">')[0]
|
|
2009
|
-
end
|
|
2010
|
-
|
|
2011
|
-
# "(" charset *(SP charset) ")"
|
|
2012
|
-
def charset__list
|
|
2013
|
-
lpar; list = [charset]; while SP? do list << charset end; rpar; list
|
|
2014
|
-
end
|
|
2015
|
-
|
|
2016
|
-
# already matched: "APPENDUID"
|
|
2017
|
-
#
|
|
2018
|
-
# +UIDPLUS+ ABNF:: https://www.rfc-editor.org/rfc/rfc4315.html#section-4
|
|
2019
|
-
# resp-code-apnd = "APPENDUID" SP nz-number SP append-uid
|
|
2020
|
-
# append-uid = uniqueid
|
|
2021
|
-
# append-uid =/ uid-set
|
|
2022
|
-
# ; only permitted if client uses [MULTIAPPEND]
|
|
2023
|
-
# ; to append multiple messages.
|
|
2024
|
-
#
|
|
2025
|
-
# n.b, uniqueid ⊂ uid-set. To avoid inconsistent return types, we always
|
|
2026
|
-
# match uid_set even if that returns a single-member array.
|
|
2027
|
-
def resp_code_apnd__data
|
|
2028
|
-
validity = number; SP!
|
|
2029
|
-
dst_uids = uid_set # uniqueid ⊂ uid-set
|
|
2030
|
-
AppendUID(validity, dst_uids)
|
|
2031
|
-
end
|
|
2032
|
-
|
|
2033
|
-
# already matched: "COPYUID"
|
|
2034
|
-
#
|
|
2035
|
-
# resp-code-copy = "COPYUID" SP nz-number SP uid-set SP uid-set
|
|
2036
|
-
def resp_code_copy__data
|
|
2037
|
-
validity = number; SP!
|
|
2038
|
-
src_uids = uid_set; SP!
|
|
2039
|
-
dst_uids = uid_set
|
|
2040
|
-
CopyUID(validity, src_uids, dst_uids)
|
|
2041
|
-
end
|
|
2042
|
-
|
|
2043
|
-
PARSER_PATH = File.expand_path(__FILE__).delete_suffix(".rb")
|
|
2044
|
-
|
|
2045
|
-
# TODO: remove this code in the v0.6.0 release
|
|
2046
|
-
def DeprecatedUIDPlus(validity, src_uids = nil, dst_uids)
|
|
2047
|
-
return unless config.parser_use_deprecated_uidplus_data
|
|
2048
|
-
uplevel = caller_locations
|
|
2049
|
-
.find_index { !_1.path.start_with?(PARSER_PATH) }
|
|
2050
|
-
&.succ
|
|
2051
|
-
warn("#{Config}#parser_use_deprecated_uidplus_data is ignored " \
|
|
2052
|
-
"since v0.6.0. Disable this warning by setting " \
|
|
2053
|
-
"config.parser_use_deprecated_uidplus_data = false.",
|
|
2054
|
-
category: :deprecated, uplevel:)
|
|
2055
|
-
nil
|
|
2056
|
-
end
|
|
2057
|
-
|
|
2058
|
-
def AppendUID(...) DeprecatedUIDPlus(...) || AppendUIDData.new(...) end
|
|
2059
|
-
def CopyUID(...) DeprecatedUIDPlus(...) || CopyUIDData.new(...) end
|
|
2060
|
-
|
|
2061
|
-
ADDRESS_REGEXP = /\G
|
|
2062
|
-
\( (?: NIL | #{Patterns::QUOTED_rev2} ) # 1: NAME
|
|
2063
|
-
\s (?: NIL | #{Patterns::QUOTED_rev2} ) # 2: ROUTE
|
|
2064
|
-
\s (?: NIL | #{Patterns::QUOTED_rev2} ) # 3: MAILBOX
|
|
2065
|
-
\s (?: NIL | #{Patterns::QUOTED_rev2} ) # 4: HOST
|
|
2066
|
-
\)
|
|
2067
|
-
/nix
|
|
2068
|
-
|
|
2069
|
-
# address = "(" addr-name SP addr-adl SP addr-mailbox SP
|
|
2070
|
-
# addr-host ")"
|
|
2071
|
-
# addr-adl = nstring
|
|
2072
|
-
# addr-host = nstring
|
|
2073
|
-
# addr-mailbox = nstring
|
|
2074
|
-
# addr-name = nstring
|
|
2075
|
-
def address
|
|
2076
|
-
if (match = accept_re(ADDRESS_REGEXP))
|
|
2077
|
-
# note that "NIL" isn't captured by the regexp
|
|
2078
|
-
name, route, mailbox, host = match.captures
|
|
2079
|
-
.map { Patterns.unescape_quoted _1 }
|
|
2080
|
-
else # address may include literals
|
|
2081
|
-
lpar; name = addr_name
|
|
2082
|
-
SP!; route = addr_adl
|
|
2083
|
-
SP!; mailbox = addr_mailbox
|
|
2084
|
-
SP!; host = addr_host
|
|
2085
|
-
rpar
|
|
2086
|
-
end
|
|
2087
|
-
Address.new(name, route, mailbox, host)
|
|
2088
|
-
end
|
|
2089
|
-
|
|
2090
|
-
alias addr_adl nstring
|
|
2091
|
-
alias addr_host nstring
|
|
2092
|
-
alias addr_mailbox nstring
|
|
2093
|
-
alias addr_name nstring
|
|
2094
|
-
|
|
2095
|
-
# flag-list = "(" [flag *(SP flag)] ")"
|
|
2096
|
-
def flag_list
|
|
2097
|
-
if (match = accept_re(Patterns::FLAG_LIST))
|
|
2098
|
-
match[1].split(nil)
|
|
2099
|
-
.map! { _1.delete_prefix!("\\") ? _1.capitalize.to_sym : _1 }
|
|
2100
|
-
else
|
|
2101
|
-
quirky__flag_list "flags-list"
|
|
2102
|
-
end
|
|
2103
|
-
end
|
|
2104
|
-
|
|
2105
|
-
# "(" [flag-perm *(SP flag-perm)] ")"
|
|
2106
|
-
def flag_perm__list
|
|
2107
|
-
if (match = accept_re(Patterns::FLAG_PERM_LIST))
|
|
2108
|
-
match[1].split(nil)
|
|
2109
|
-
.map! { _1.delete_prefix!("\\") ? _1.capitalize.to_sym : _1 }
|
|
2110
|
-
else
|
|
2111
|
-
quirky__flag_list "PERMANENTFLAGS flag-perm list"
|
|
2112
|
-
end
|
|
2113
|
-
end
|
|
2114
|
-
|
|
2115
|
-
# This allows illegal "]" in flag names (Gmail),
|
|
2116
|
-
# or "\*" in a FLAGS response (greenmail).
|
|
2117
|
-
def quirky__flag_list(name)
|
|
2118
|
-
match_re(Patterns::QUIRKY_FLAGS_LIST, "quirks mode #{name}")[1]
|
|
2119
|
-
.scan(Patterns::QUIRKY_FLAG)
|
|
2120
|
-
.map! { _1.delete_prefix!("\\") ? _1.capitalize.to_sym : _1 }
|
|
2121
|
-
end
|
|
2122
|
-
|
|
2123
|
-
# See Patterns::MBX_LIST_FLAGS
|
|
2124
|
-
def mbx_list_flags
|
|
2125
|
-
match_re(Patterns::MBX_LIST_FLAGS, "mbx-list-flags")[1]
|
|
2126
|
-
.split(nil)
|
|
2127
|
-
.map! { _1.delete_prefix!("\\"); _1.capitalize.to_sym }
|
|
2128
|
-
end
|
|
2129
|
-
|
|
2130
|
-
# See https://developers.google.com/gmail/imap/imap-extensions
|
|
2131
|
-
def x_gm_label; accept(T_BSLASH) ? atom.capitalize.to_sym : astring end
|
|
2132
|
-
|
|
2133
|
-
# See https://developers.google.com/gmail/imap/imap-extensions
|
|
2134
|
-
def x_gm_labels
|
|
2135
|
-
lpar; return [] if rpar?
|
|
2136
|
-
labels = []
|
|
2137
|
-
labels << x_gm_label
|
|
2138
|
-
labels << x_gm_label while SP?
|
|
2139
|
-
rpar
|
|
2140
|
-
labels
|
|
2141
|
-
end
|
|
2142
|
-
|
|
2143
|
-
# See https://www.rfc-editor.org/errata/rfc3501
|
|
2144
|
-
#
|
|
2145
|
-
# charset = atom / quoted
|
|
2146
|
-
def charset; quoted? || atom end
|
|
2147
|
-
|
|
2148
|
-
# RFC7162:
|
|
2149
|
-
# mod-sequence-value = 1*DIGIT
|
|
2150
|
-
# ;; Positive unsigned 63-bit integer
|
|
2151
|
-
# ;; (mod-sequence)
|
|
2152
|
-
# ;; (1 <= n <= 9,223,372,036,854,775,807).
|
|
2153
|
-
alias mod_sequence_value nz_number64
|
|
2154
|
-
|
|
2155
|
-
# RFC7162:
|
|
2156
|
-
# permsg-modsequence = mod-sequence-value
|
|
2157
|
-
# ;; Per-message mod-sequence.
|
|
2158
|
-
alias permsg_modsequence mod_sequence_value
|
|
2159
|
-
|
|
2160
|
-
# RFC7162:
|
|
2161
|
-
# mod-sequence-valzer = "0" / mod-sequence-value
|
|
2162
|
-
alias mod_sequence_valzer number64
|
|
2163
|
-
|
|
2164
|
-
def parens__modseq; lpar; _ = permsg_modsequence; rpar; _ end
|
|
2165
|
-
|
|
2166
|
-
# RFC8474:
|
|
2167
|
-
# objectid = 1*255(ALPHA / DIGIT / "_" / "-")
|
|
2168
|
-
# ; characters in object identifiers are case
|
|
2169
|
-
# ; significant
|
|
2170
|
-
alias objectid atom
|
|
2171
|
-
|
|
2172
|
-
def parens__objectid; lpar; _ = objectid; rpar; _ end
|
|
2173
|
-
def nparens__objectid; NIL? ? nil : parens__objectid end
|
|
2174
|
-
|
|
2175
|
-
# RFC-4315 (UIDPLUS) or RFC9051 (IMAP4rev2):
|
|
2176
|
-
# uid-set = (uniqueid / uid-range) *("," uid-set)
|
|
2177
|
-
# uid-range = (uniqueid ":" uniqueid)
|
|
2178
|
-
# ; two uniqueid values and all values
|
|
2179
|
-
# ; between these two regardless of order.
|
|
2180
|
-
# ; Example: 2:4 and 4:2 are equivalent.
|
|
2181
|
-
# uniqueid = nz-number
|
|
2182
|
-
# ; Strictly ascending
|
|
2183
|
-
def uid_set
|
|
2184
|
-
set = sequence_set
|
|
2185
|
-
parse_error("uid-set cannot contain '*'") if set.include_star?
|
|
2186
|
-
set
|
|
2187
|
-
end
|
|
2188
|
-
|
|
2189
|
-
def nil_atom
|
|
2190
|
-
match(T_NIL)
|
|
2191
|
-
return nil
|
|
2192
|
-
end
|
|
2193
|
-
|
|
2194
|
-
SPACES_REGEXP = /\G */n
|
|
2195
|
-
|
|
2196
|
-
# The RFC is very strict about this and usually we should be too.
|
|
2197
|
-
# But skipping spaces is usually a safe workaround for buggy servers.
|
|
2198
|
-
#
|
|
2199
|
-
# This advances @pos directly so it's safe before changing @lex_state.
|
|
2200
|
-
def accept_spaces
|
|
2201
|
-
return false unless SP?
|
|
2202
|
-
@str.index(SPACES_REGEXP, @pos) and
|
|
2203
|
-
@pos = $~.end(0)
|
|
2204
|
-
true
|
|
2205
|
-
end
|
|
2206
|
-
|
|
2207
|
-
def next_token
|
|
2208
|
-
case @lex_state
|
|
2209
|
-
when EXPR_BEG
|
|
2210
|
-
if @str.index(BEG_REGEXP, @pos)
|
|
2211
|
-
@pos = $~.end(0)
|
|
2212
|
-
if $1
|
|
2213
|
-
return Token.new(T_SPACE, $+)
|
|
2214
|
-
elsif $2
|
|
2215
|
-
len = $+.to_i
|
|
2216
|
-
val = @str[@pos, len]
|
|
2217
|
-
@pos += len
|
|
2218
|
-
return Token.new(T_LITERAL8, val)
|
|
2219
|
-
elsif $3 && $7
|
|
2220
|
-
# greedily match ATOM, prefixed with NUMBER, NIL, or PLUS.
|
|
2221
|
-
return Token.new(T_ATOM, $3)
|
|
2222
|
-
elsif $4
|
|
2223
|
-
return Token.new(T_NIL, $+)
|
|
2224
|
-
elsif $5
|
|
2225
|
-
return Token.new(T_NUMBER, $+)
|
|
2226
|
-
elsif $6
|
|
2227
|
-
return Token.new(T_PLUS, $+)
|
|
2228
|
-
elsif $8
|
|
2229
|
-
# match ATOM, without a NUMBER, NIL, or PLUS prefix
|
|
2230
|
-
return Token.new(T_ATOM, $+)
|
|
2231
|
-
elsif $9
|
|
2232
|
-
return Token.new(T_QUOTED, Patterns.unescape_quoted($+))
|
|
2233
|
-
elsif $10
|
|
2234
|
-
return Token.new(T_LPAR, $+)
|
|
2235
|
-
elsif $11
|
|
2236
|
-
return Token.new(T_RPAR, $+)
|
|
2237
|
-
elsif $12
|
|
2238
|
-
return Token.new(T_BSLASH, $+)
|
|
2239
|
-
elsif $13
|
|
2240
|
-
return Token.new(T_STAR, $+)
|
|
2241
|
-
elsif $14
|
|
2242
|
-
return Token.new(T_LBRA, $+)
|
|
2243
|
-
elsif $15
|
|
2244
|
-
return Token.new(T_RBRA, $+)
|
|
2245
|
-
elsif $16
|
|
2246
|
-
len = $+.to_i
|
|
2247
|
-
val = @str[@pos, len]
|
|
2248
|
-
@pos += len
|
|
2249
|
-
return Token.new(T_LITERAL, val)
|
|
2250
|
-
elsif $17
|
|
2251
|
-
return Token.new(T_PERCENT, $+)
|
|
2252
|
-
elsif $18
|
|
2253
|
-
return Token.new(T_CRLF, $+)
|
|
2254
|
-
elsif $19
|
|
2255
|
-
return Token.new(T_EOF, $+)
|
|
2256
|
-
else
|
|
2257
|
-
parse_error("[Net::IMAP BUG] BEG_REGEXP is invalid")
|
|
2258
|
-
end
|
|
2259
|
-
else
|
|
2260
|
-
@str.index(/\S*/n, @pos)
|
|
2261
|
-
parse_error("unknown token - %s", $&.dump)
|
|
2262
|
-
end
|
|
2263
|
-
when EXPR_DATA
|
|
2264
|
-
if @str.index(DATA_REGEXP, @pos)
|
|
2265
|
-
@pos = $~.end(0)
|
|
2266
|
-
if $1
|
|
2267
|
-
return Token.new(T_SPACE, $+)
|
|
2268
|
-
elsif $2
|
|
2269
|
-
return Token.new(T_NIL, $+)
|
|
2270
|
-
elsif $3
|
|
2271
|
-
return Token.new(T_NUMBER, $+)
|
|
2272
|
-
elsif $4
|
|
2273
|
-
return Token.new(T_QUOTED, Patterns.unescape_quoted($+))
|
|
2274
|
-
elsif $5
|
|
2275
|
-
len = $+.to_i
|
|
2276
|
-
val = @str[@pos, len]
|
|
2277
|
-
@pos += len
|
|
2278
|
-
return Token.new(T_LITERAL, val)
|
|
2279
|
-
elsif $6
|
|
2280
|
-
return Token.new(T_LPAR, $+)
|
|
2281
|
-
elsif $7
|
|
2282
|
-
return Token.new(T_RPAR, $+)
|
|
2283
|
-
else
|
|
2284
|
-
parse_error("[Net::IMAP BUG] DATA_REGEXP is invalid")
|
|
2285
|
-
end
|
|
2286
|
-
else
|
|
2287
|
-
@str.index(/\S*/n, @pos)
|
|
2288
|
-
parse_error("unknown token - %s", $&.dump)
|
|
2289
|
-
end
|
|
2290
|
-
else
|
|
2291
|
-
parse_error("invalid @lex_state - %s", @lex_state.inspect)
|
|
2292
|
-
end
|
|
2293
|
-
end
|
|
2294
|
-
|
|
2295
|
-
end
|
|
2296
|
-
end
|
|
2297
|
-
end
|