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,2962 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
# This file is auto-generated. Instead of editing this file, please
|
|
4
|
-
# add MIMEs to data/custom.xml or lib/marcel/mime_type/definitions.rb.
|
|
5
|
-
|
|
6
|
-
module Marcel
|
|
7
|
-
# @private
|
|
8
|
-
# :nodoc:
|
|
9
|
-
EXTENSIONS = {
|
|
10
|
-
'123' => 'application/vnd.lotus-1-2-3',
|
|
11
|
-
'3dml' => 'text/vnd.in3d.3dml',
|
|
12
|
-
'3ds' => 'image/x-3ds',
|
|
13
|
-
'3fr' => 'image/x-raw-hasselblad',
|
|
14
|
-
'3g2' => 'video/3gpp2',
|
|
15
|
-
'3gp' => 'video/3gpp',
|
|
16
|
-
'3mf' => 'application/vnd.ms-package.3dmanufacturing-3dmodel+xml',
|
|
17
|
-
'4th' => 'text/x-forth',
|
|
18
|
-
'7z' => 'application/x-7z-compressed',
|
|
19
|
-
'a' => 'application/x-archive',
|
|
20
|
-
'aab' => 'application/x-authorware-bin',
|
|
21
|
-
'aac' => 'audio/x-aac',
|
|
22
|
-
'aam' => 'application/x-authorware-map',
|
|
23
|
-
'aart' => 'text/plain',
|
|
24
|
-
'aas' => 'application/x-authorware-seg',
|
|
25
|
-
'abw' => 'application/x-abiword',
|
|
26
|
-
'ac' => 'text/plain',
|
|
27
|
-
'ac3' => 'audio/ac3',
|
|
28
|
-
'acc' => 'application/vnd.americandynamics.acc',
|
|
29
|
-
'accdb' => 'application/x-msaccess',
|
|
30
|
-
'ace' => 'application/x-ace-compressed',
|
|
31
|
-
'acfm' => 'application/x-font-adobe-metric',
|
|
32
|
-
'acu' => 'application/vnd.acucobol',
|
|
33
|
-
'acutc' => 'application/vnd.acucorp',
|
|
34
|
-
'ad' => 'text/x-asciidoc',
|
|
35
|
-
'ad.txt' => 'text/x-asciidoc',
|
|
36
|
-
'ada' => 'text/x-ada',
|
|
37
|
-
'adb' => 'text/x-ada',
|
|
38
|
-
'adf' => 'application/x-amiga-disk-format',
|
|
39
|
-
'adoc' => 'text/x-asciidoc',
|
|
40
|
-
'adoc.txt' => 'text/x-asciidoc',
|
|
41
|
-
'adp' => 'audio/adpcm',
|
|
42
|
-
'ads' => 'text/x-ada',
|
|
43
|
-
'aep' => 'application/vnd.adobe.aftereffects.project',
|
|
44
|
-
'aet' => 'application/vnd.adobe.aftereffects.template',
|
|
45
|
-
'afm' => 'application/x-font-adobe-metric',
|
|
46
|
-
'afp' => 'application/vnd.ibm.modcap',
|
|
47
|
-
'ai' => 'application/illustrator',
|
|
48
|
-
'aif' => 'audio/x-aiff',
|
|
49
|
-
'aifc' => 'audio/x-aiff',
|
|
50
|
-
'aiff' => 'audio/x-aiff',
|
|
51
|
-
'air' => 'application/vnd.adobe.air-application-installer-package+zip',
|
|
52
|
-
'aj' => 'text/x-aspectj',
|
|
53
|
-
'al' => 'text/x-perl',
|
|
54
|
-
'am' => 'text/plain',
|
|
55
|
-
'amf' => 'application/x-amf',
|
|
56
|
-
'amfm' => 'application/x-font-adobe-metric',
|
|
57
|
-
'ami' => 'application/vnd.amiga.ami',
|
|
58
|
-
'amr' => 'audio/amr',
|
|
59
|
-
'anpa' => 'text/vnd.iptc.anpa',
|
|
60
|
-
'apk' => 'application/vnd.android.package-archive',
|
|
61
|
-
'applescript' => 'text/x-applescript',
|
|
62
|
-
'application' => 'application/x-ms-application',
|
|
63
|
-
'apr' => 'application/vnd.lotus-approach',
|
|
64
|
-
'apt' => 'text/plain',
|
|
65
|
-
'ar' => 'application/x-archive',
|
|
66
|
-
'arc' => 'application/x-internet-archive',
|
|
67
|
-
'arj' => 'application/x-arj',
|
|
68
|
-
'arw' => 'image/x-raw-sony',
|
|
69
|
-
'as' => 'text/x-actionscript',
|
|
70
|
-
'asc' => 'application/pgp-signature',
|
|
71
|
-
'asciidoc' => 'text/x-asciidoc',
|
|
72
|
-
'asf' => 'video/x-ms-asf',
|
|
73
|
-
'asice' => 'application/vnd.etsi.asic-e+zip',
|
|
74
|
-
'asics' => 'application/vnd.etsi.asic-s+zip',
|
|
75
|
-
'asm' => 'text/x-assembly',
|
|
76
|
-
'asnd' => 'audio/vnd.adobe.soundbooth',
|
|
77
|
-
'aso' => 'application/vnd.accpac.simply.aso',
|
|
78
|
-
'asp' => 'text/asp',
|
|
79
|
-
'aspx' => 'text/aspdotnet',
|
|
80
|
-
'asx' => 'application/x-ms-asx',
|
|
81
|
-
'atc' => 'application/vnd.acucorp',
|
|
82
|
-
'atom' => 'application/atom+xml',
|
|
83
|
-
'atomcat' => 'application/atomcat+xml',
|
|
84
|
-
'atomsvc' => 'application/atomsvc+xml',
|
|
85
|
-
'atx' => 'application/vnd.antix.game-component',
|
|
86
|
-
'au' => 'audio/basic',
|
|
87
|
-
'avi' => 'video/x-msvideo',
|
|
88
|
-
'avif' => 'image/avif',
|
|
89
|
-
'aw' => 'application/applixware',
|
|
90
|
-
'awk' => 'text/x-awk',
|
|
91
|
-
'axx' => 'application/x-axcrypt',
|
|
92
|
-
'azf' => 'application/vnd.airzip.filesecure.azf',
|
|
93
|
-
'azs' => 'application/vnd.airzip.filesecure.azs',
|
|
94
|
-
'azw' => 'application/vnd.amazon.ebook',
|
|
95
|
-
'bas' => 'text/x-basic',
|
|
96
|
-
'bash' => 'application/x-sh',
|
|
97
|
-
'bat' => 'application/x-bat',
|
|
98
|
-
'bau' => 'application/vnd.openofficeorg.autotext',
|
|
99
|
-
'bay' => 'image/x-raw-casio',
|
|
100
|
-
'bcpio' => 'application/x-bcpio',
|
|
101
|
-
'bdf' => 'application/x-font-bdf',
|
|
102
|
-
'bdm' => 'application/vnd.syncml.dm+wbxml',
|
|
103
|
-
'bh2' => 'application/vnd.fujitsu.oasysprs',
|
|
104
|
-
'bib' => 'application/x-bibtex-text-file',
|
|
105
|
-
'bibtex' => 'application/x-bibtex-text-file',
|
|
106
|
-
'bin' => 'application/octet-stream',
|
|
107
|
-
'bmi' => 'application/vnd.bmi',
|
|
108
|
-
'bmp' => 'image/bmp',
|
|
109
|
-
'book' => 'application/vnd.framemaker',
|
|
110
|
-
'box' => 'application/vnd.previewsystems.box',
|
|
111
|
-
'boz' => 'application/x-bzip2',
|
|
112
|
-
'bpg' => 'image/x-bpg',
|
|
113
|
-
'bpk' => 'application/octet-stream',
|
|
114
|
-
'bpm' => 'application/bizagi-modeler',
|
|
115
|
-
'br' => 'application/x-brotli',
|
|
116
|
-
'brotli' => 'application/x-brotli',
|
|
117
|
-
'bsh' => 'text/plain',
|
|
118
|
-
'btif' => 'image/prs.btif',
|
|
119
|
-
'bup' => 'application/x-dvd-ifo',
|
|
120
|
-
'bz' => 'application/x-bzip',
|
|
121
|
-
'bz2' => 'application/x-bzip2',
|
|
122
|
-
'c' => 'text/x-c++src',
|
|
123
|
-
'c++' => 'text/x-c++src',
|
|
124
|
-
'c4d' => 'application/vnd.clonk.c4group',
|
|
125
|
-
'c4f' => 'application/vnd.clonk.c4group',
|
|
126
|
-
'c4g' => 'application/vnd.clonk.c4group',
|
|
127
|
-
'c4p' => 'application/vnd.clonk.c4group',
|
|
128
|
-
'c4u' => 'application/vnd.clonk.c4group',
|
|
129
|
-
'cab' => 'application/vnd.ms-cab-compressed',
|
|
130
|
-
'caf' => 'audio/x-caf',
|
|
131
|
-
'cap' => 'application/vnd.tcpdump.pcap',
|
|
132
|
-
'car' => 'application/vnd.curl.car',
|
|
133
|
-
'cat' => 'application/vnd.ms-pki.seccat',
|
|
134
|
-
'cbl' => 'text/x-cobol',
|
|
135
|
-
'cbor' => 'application/cbor',
|
|
136
|
-
'cc' => 'text/x-c++src',
|
|
137
|
-
'cct' => 'application/x-director',
|
|
138
|
-
'ccxml' => 'application/ccxml+xml',
|
|
139
|
-
'cda' => 'application/x-cdf',
|
|
140
|
-
'cdbcmsg' => 'application/vnd.contact.cmsg',
|
|
141
|
-
'cdf' => 'application/x-netcdf',
|
|
142
|
-
'cdkey' => 'application/vnd.mediastation.cdkey',
|
|
143
|
-
'cdr' => 'application/coreldraw',
|
|
144
|
-
'cdx' => 'chemical/x-cdx',
|
|
145
|
-
'cdxml' => 'application/vnd.chemdraw+xml',
|
|
146
|
-
'cdy' => 'application/vnd.cinderella',
|
|
147
|
-
'cel' => 'image/vnd.dgn',
|
|
148
|
-
'cer' => 'application/pkix-cert',
|
|
149
|
-
'cfc' => 'text/x-coldfusion',
|
|
150
|
-
'cfg' => 'text/x-config',
|
|
151
|
-
'cfm' => 'text/x-coldfusion',
|
|
152
|
-
'cfml' => 'text/x-coldfusion',
|
|
153
|
-
'cgi' => 'text/x-cgi',
|
|
154
|
-
'cgm' => 'image/cgm',
|
|
155
|
-
'chat' => 'application/x-chat',
|
|
156
|
-
'chm' => 'application/vnd.ms-htmlhelp',
|
|
157
|
-
'chrt' => 'application/vnd.kde.kchart',
|
|
158
|
-
'cif' => 'chemical/x-cif',
|
|
159
|
-
'cii' => 'application/vnd.anser-web-certificate-issue-initiation',
|
|
160
|
-
'cil' => 'application/vnd.ms-artgalry',
|
|
161
|
-
'cl' => 'text/x-common-lisp',
|
|
162
|
-
'cla' => 'application/vnd.claymore',
|
|
163
|
-
'class' => 'application/java-vm',
|
|
164
|
-
'classpath' => 'text/plain',
|
|
165
|
-
'clj' => 'text/x-clojure',
|
|
166
|
-
'clkk' => 'application/vnd.crick.clicker.keyboard',
|
|
167
|
-
'clkp' => 'application/vnd.crick.clicker.palette',
|
|
168
|
-
'clkt' => 'application/vnd.crick.clicker.template',
|
|
169
|
-
'clkw' => 'application/vnd.crick.clicker.wordbank',
|
|
170
|
-
'clkx' => 'application/vnd.crick.clicker',
|
|
171
|
-
'clp' => 'application/x-msclip',
|
|
172
|
-
'cls' => 'text/x-vbasic',
|
|
173
|
-
'cmc' => 'application/vnd.cosmocaller',
|
|
174
|
-
'cmd' => 'application/x-bat',
|
|
175
|
-
'cmdf' => 'chemical/x-cmdf',
|
|
176
|
-
'cml' => 'chemical/x-cml',
|
|
177
|
-
'cmp' => 'application/vnd.yellowriver-custom-menu',
|
|
178
|
-
'cmx' => 'image/x-cmx',
|
|
179
|
-
'cnd' => 'text/plain',
|
|
180
|
-
'cob' => 'text/x-cobol',
|
|
181
|
-
'cod' => 'application/vnd.rim.cod',
|
|
182
|
-
'coffee' => 'text/x-coffeescript',
|
|
183
|
-
'com' => 'application/x-msdownload',
|
|
184
|
-
'conf' => 'text/x-config',
|
|
185
|
-
'config' => 'text/x-config',
|
|
186
|
-
'cpio' => 'application/x-cpio',
|
|
187
|
-
'cpp' => 'text/x-c++src',
|
|
188
|
-
'cpt' => 'application/mac-compactpro',
|
|
189
|
-
'cr2' => 'image/x-canon-cr2',
|
|
190
|
-
'cr3' => 'image/x-canon-cr3',
|
|
191
|
-
'crd' => 'application/x-mscardfile',
|
|
192
|
-
'crl' => 'application/pkix-crl',
|
|
193
|
-
'crt' => 'application/x-x509-cert',
|
|
194
|
-
'crw' => 'image/x-raw-canon',
|
|
195
|
-
'crx' => 'application/x-chrome-package',
|
|
196
|
-
'cs' => 'text/x-csharp',
|
|
197
|
-
'csh' => 'application/x-csh',
|
|
198
|
-
'csml' => 'chemical/x-csml',
|
|
199
|
-
'csp' => 'application/vnd.commonspace',
|
|
200
|
-
'css' => 'text/css',
|
|
201
|
-
'cst' => 'application/x-director',
|
|
202
|
-
'csv' => 'text/csv',
|
|
203
|
-
'cu' => 'application/cu-seeme',
|
|
204
|
-
'curl' => 'text/vnd.curl',
|
|
205
|
-
'cwiki' => 'text/plain',
|
|
206
|
-
'cwk' => 'application/x-appleworks',
|
|
207
|
-
'cww' => 'application/prs.cww',
|
|
208
|
-
'cxt' => 'application/x-director',
|
|
209
|
-
'cxx' => 'text/x-c++src',
|
|
210
|
-
'd' => 'text/x-d',
|
|
211
|
-
'daf' => 'application/vnd.mobius.daf',
|
|
212
|
-
'data' => 'text/plain',
|
|
213
|
-
'dataless' => 'application/vnd.fdsn.seed',
|
|
214
|
-
'davmount' => 'application/davmount+xml',
|
|
215
|
-
'dbase' => 'application/x-dbf',
|
|
216
|
-
'dbase3' => 'application/x-dbf',
|
|
217
|
-
'dbf' => 'application/x-dbf',
|
|
218
|
-
'dcl' => 'text/plain',
|
|
219
|
-
'dcr' => 'application/x-director',
|
|
220
|
-
'dcs' => 'image/x-raw-kodak',
|
|
221
|
-
'dcurl' => 'text/vnd.curl.dcurl',
|
|
222
|
-
'dcx' => 'image/vnd.zbrush.dcx',
|
|
223
|
-
'dd2' => 'application/vnd.oma.dd2+xml',
|
|
224
|
-
'ddd' => 'application/vnd.fujixerox.ddd',
|
|
225
|
-
'deb' => 'application/x-debian-package',
|
|
226
|
-
'def' => 'text/plain',
|
|
227
|
-
'deploy' => 'application/octet-stream',
|
|
228
|
-
'der' => 'application/x-x509-cert;format=der',
|
|
229
|
-
'dex' => 'application/x-dex',
|
|
230
|
-
'dfac' => 'application/vnd.dreamfactory',
|
|
231
|
-
'dgn' => 'image/vnd.dgn',
|
|
232
|
-
'dgnlib' => 'image/vnd.dgn',
|
|
233
|
-
'dib' => 'image/bmp',
|
|
234
|
-
'dif' => 'application/dif+xml',
|
|
235
|
-
'diff' => 'text/x-diff',
|
|
236
|
-
'dir' => 'application/x-director',
|
|
237
|
-
'dis' => 'application/vnd.mobius.dis',
|
|
238
|
-
'dist' => 'application/octet-stream',
|
|
239
|
-
'distz' => 'application/octet-stream',
|
|
240
|
-
'dita' => 'application/dita+xml;format=topic',
|
|
241
|
-
'ditamap' => 'application/dita+xml;format=map',
|
|
242
|
-
'ditaval' => 'application/dita+xml;format=val',
|
|
243
|
-
'djv' => 'image/vnd.djvu',
|
|
244
|
-
'djvu' => 'image/vnd.djvu',
|
|
245
|
-
'dll' => 'application/x-msdownload',
|
|
246
|
-
'dmg' => 'application/x-apple-diskimage',
|
|
247
|
-
'dmp' => 'application/vnd.tcpdump.pcap',
|
|
248
|
-
'dms' => 'application/octet-stream',
|
|
249
|
-
'dna' => 'application/vnd.dna',
|
|
250
|
-
'dng' => 'image/x-raw-adobe',
|
|
251
|
-
'do' => 'application/x-stata-do',
|
|
252
|
-
'doc' => 'application/msword',
|
|
253
|
-
'docm' => 'application/vnd.ms-word.document.macroenabled.12',
|
|
254
|
-
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
255
|
-
'dot' => 'application/msword',
|
|
256
|
-
'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
|
|
257
|
-
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
|
258
|
-
'dp' => 'application/vnd.osgi.dp',
|
|
259
|
-
'dpg' => 'application/vnd.dpgraph',
|
|
260
|
-
'dpr' => 'text/x-pascal',
|
|
261
|
-
'dpx' => 'image/x-dpx',
|
|
262
|
-
'drc' => 'video/x-dirac',
|
|
263
|
-
'drf' => 'image/x-raw-kodak',
|
|
264
|
-
'dsc' => 'text/prs.lines.tag',
|
|
265
|
-
'dsp' => 'text/plain',
|
|
266
|
-
'dsw' => 'text/plain',
|
|
267
|
-
'dta' => 'application/x-stata-dta',
|
|
268
|
-
'dtb' => 'application/x-dtbook+xml',
|
|
269
|
-
'dtd' => 'application/xml-dtd',
|
|
270
|
-
'dts' => 'audio/vnd.dts',
|
|
271
|
-
'dtshd' => 'audio/vnd.dts.hd',
|
|
272
|
-
'dump' => 'application/octet-stream',
|
|
273
|
-
'dvi' => 'application/x-dvi',
|
|
274
|
-
'dwf' => 'model/vnd.dwf',
|
|
275
|
-
'dwfx' => 'model/vnd.dwfx+xps',
|
|
276
|
-
'dwg' => 'image/vnd.dwg',
|
|
277
|
-
'dxb' => 'image/vnd.dxb',
|
|
278
|
-
'dxf' => 'image/vnd.dxf',
|
|
279
|
-
'dxp' => 'application/vnd.spotfire.dxp',
|
|
280
|
-
'dxr' => 'application/x-director',
|
|
281
|
-
'e' => 'text/x-eiffel',
|
|
282
|
-
'e57' => 'model/e57',
|
|
283
|
-
'ear' => 'application/x-tika-java-enterprise-archive',
|
|
284
|
-
'ecelp4800' => 'audio/vnd.nuera.ecelp4800',
|
|
285
|
-
'ecelp7470' => 'audio/vnd.nuera.ecelp7470',
|
|
286
|
-
'ecelp9600' => 'audio/vnd.nuera.ecelp9600',
|
|
287
|
-
'ecma' => 'application/ecmascript',
|
|
288
|
-
'edm' => 'application/vnd.novadigm.edm',
|
|
289
|
-
'edx' => 'application/vnd.novadigm.edx',
|
|
290
|
-
'efif' => 'application/vnd.picsel',
|
|
291
|
-
'egrm' => 'text/plain',
|
|
292
|
-
'ei6' => 'application/vnd.pg.osasli',
|
|
293
|
-
'el' => 'text/x-emacs-lisp',
|
|
294
|
-
'elc' => 'application/octet-stream',
|
|
295
|
-
'emf' => 'image/emf',
|
|
296
|
-
'eml' => 'message/rfc822',
|
|
297
|
-
'emlx' => 'message/x-emlx',
|
|
298
|
-
'emma' => 'application/emma+xml',
|
|
299
|
-
'emz' => 'image/x-emf-compressed',
|
|
300
|
-
'enr' => 'application/x-endnote-refer',
|
|
301
|
-
'ens' => 'application/x-endnote-style',
|
|
302
|
-
'ent' => 'text/plain',
|
|
303
|
-
'enw' => 'application/x-endnote-refer',
|
|
304
|
-
'eol' => 'audio/vnd.digital-winds',
|
|
305
|
-
'eot' => 'application/vnd.ms-fontobject',
|
|
306
|
-
'eps' => 'application/postscript',
|
|
307
|
-
'epsf' => 'application/postscript',
|
|
308
|
-
'epsi' => 'application/postscript',
|
|
309
|
-
'epub' => 'application/epub+zip',
|
|
310
|
-
'erf' => 'image/x-raw-epson',
|
|
311
|
-
'erl' => 'text/x-erlang',
|
|
312
|
-
'es3' => 'application/vnd.eszigno3+xml',
|
|
313
|
-
'esf' => 'application/vnd.epson.esf',
|
|
314
|
-
'et3' => 'application/vnd.eszigno3+xml',
|
|
315
|
-
'etx' => 'text/x-setext',
|
|
316
|
-
'exe' => 'application/x-dosexec',
|
|
317
|
-
'exp' => 'text/x-expect',
|
|
318
|
-
'exr' => 'image/aces',
|
|
319
|
-
'ext' => 'application/vnd.novadigm.ext',
|
|
320
|
-
'ez' => 'application/andrew-inset',
|
|
321
|
-
'ez2' => 'application/vnd.ezpix-album',
|
|
322
|
-
'ez3' => 'application/vnd.ezpix-package',
|
|
323
|
-
'f' => 'text/x-fortran',
|
|
324
|
-
'f4v' => 'video/x-f4v',
|
|
325
|
-
'f77' => 'text/x-fortran',
|
|
326
|
-
'f90' => 'text/x-fortran',
|
|
327
|
-
'fb2' => 'application/x-fictionbook+xml',
|
|
328
|
-
'fbs' => 'image/vnd.fastbidsheet',
|
|
329
|
-
'fcs' => 'application/vnd.isac.fcs',
|
|
330
|
-
'fdf' => 'application/vnd.fdf',
|
|
331
|
-
'fe_launch' => 'application/vnd.denovo.fcselayout-link',
|
|
332
|
-
'fff' => 'image/x-raw-imacon',
|
|
333
|
-
'fg5' => 'application/vnd.fujitsu.oasysgp',
|
|
334
|
-
'fgd' => 'application/x-director',
|
|
335
|
-
'fh' => 'image/x-freehand',
|
|
336
|
-
'fh10' => 'image/x-freehand',
|
|
337
|
-
'fh11' => 'image/x-freehand',
|
|
338
|
-
'fh12' => 'image/x-freehand',
|
|
339
|
-
'fh4' => 'image/x-freehand',
|
|
340
|
-
'fh40' => 'image/x-freehand',
|
|
341
|
-
'fh5' => 'image/x-freehand',
|
|
342
|
-
'fh50' => 'image/x-freehand',
|
|
343
|
-
'fh7' => 'image/x-freehand',
|
|
344
|
-
'fh8' => 'image/x-freehand',
|
|
345
|
-
'fh9' => 'image/x-freehand',
|
|
346
|
-
'fhc' => 'image/x-freehand',
|
|
347
|
-
'fig' => 'application/x-xfig',
|
|
348
|
-
'fit' => 'application/fits',
|
|
349
|
-
'fits' => 'application/fits',
|
|
350
|
-
'flac' => 'audio/x-flac',
|
|
351
|
-
'flc' => 'video/x-flc',
|
|
352
|
-
'fli' => 'video/x-fli',
|
|
353
|
-
'flo' => 'application/vnd.micrografx.flo',
|
|
354
|
-
'flv' => 'video/x-flv',
|
|
355
|
-
'flw' => 'application/vnd.kde.kivio',
|
|
356
|
-
'flx' => 'text/vnd.fmi.flexstor',
|
|
357
|
-
'fly' => 'text/vnd.fly',
|
|
358
|
-
'fm' => 'application/vnd.framemaker',
|
|
359
|
-
'fn' => 'text/plain',
|
|
360
|
-
'fnc' => 'application/vnd.frogans.fnc',
|
|
361
|
-
'fo' => 'application/xslfo+xml',
|
|
362
|
-
'fodp' => 'application/vnd.oasis.opendocument.flat.presentation',
|
|
363
|
-
'fods' => 'application/vnd.oasis.opendocument.flat.spreadsheet',
|
|
364
|
-
'fodt' => 'application/vnd.oasis.opendocument.flat.text',
|
|
365
|
-
'for' => 'text/x-fortran',
|
|
366
|
-
'fp7' => 'application/x-filemaker',
|
|
367
|
-
'fpx' => 'image/vnd.fpx',
|
|
368
|
-
'frame' => 'application/vnd.framemaker',
|
|
369
|
-
'frm' => 'text/x-vbasic',
|
|
370
|
-
'fsc' => 'application/vnd.fsc.weblaunch',
|
|
371
|
-
'fst' => 'image/vnd.fst',
|
|
372
|
-
'ft' => 'text/plain',
|
|
373
|
-
'ft10' => 'image/x-freehand',
|
|
374
|
-
'ft11' => 'image/x-freehand',
|
|
375
|
-
'ft12' => 'image/x-freehand',
|
|
376
|
-
'ft7' => 'image/x-freehand',
|
|
377
|
-
'ft8' => 'image/x-freehand',
|
|
378
|
-
'ft9' => 'image/x-freehand',
|
|
379
|
-
'ftc' => 'application/vnd.fluxtime.clip',
|
|
380
|
-
'fti' => 'application/vnd.anser-web-funds-transfer-initiation',
|
|
381
|
-
'fts' => 'application/fits',
|
|
382
|
-
'fv' => 'text/plain',
|
|
383
|
-
'fvt' => 'video/vnd.fvt',
|
|
384
|
-
'fzs' => 'application/vnd.fuzzysheet',
|
|
385
|
-
'g' => 'text/plain',
|
|
386
|
-
'g3' => 'image/g3fax',
|
|
387
|
-
'gac' => 'application/vnd.groove-account',
|
|
388
|
-
'gdl' => 'model/vnd.gdl',
|
|
389
|
-
'geo' => 'application/vnd.dynageo',
|
|
390
|
-
'gex' => 'application/vnd.geometry-explorer',
|
|
391
|
-
'ggb' => 'application/vnd.geogebra.file',
|
|
392
|
-
'ggt' => 'application/vnd.geogebra.tool',
|
|
393
|
-
'ghf' => 'application/vnd.groove-help',
|
|
394
|
-
'gif' => 'image/gif',
|
|
395
|
-
'gim' => 'application/vnd.groove-identity-message',
|
|
396
|
-
'gmx' => 'application/vnd.gmx',
|
|
397
|
-
'gnucash' => 'application/x-gnucash',
|
|
398
|
-
'gnumeric' => 'application/x-gnumeric',
|
|
399
|
-
'go' => 'text/x-go',
|
|
400
|
-
'gp4' => 'application/x-guitar-pro',
|
|
401
|
-
'gpg' => 'application/pgp-encrypted',
|
|
402
|
-
'gph' => 'application/vnd.flographit',
|
|
403
|
-
'gpkg' => 'application/x-geopackage',
|
|
404
|
-
'gqf' => 'application/vnd.grafeq',
|
|
405
|
-
'gqs' => 'application/vnd.grafeq',
|
|
406
|
-
'gram' => 'application/srgs',
|
|
407
|
-
'grb' => 'application/x-grib',
|
|
408
|
-
'grb1' => 'application/x-grib',
|
|
409
|
-
'grb2' => 'application/x-grib',
|
|
410
|
-
'gre' => 'application/vnd.geometry-explorer',
|
|
411
|
-
'grm' => 'text/plain',
|
|
412
|
-
'groovy' => 'text/x-groovy',
|
|
413
|
-
'grv' => 'application/vnd.groove-injector',
|
|
414
|
-
'grxml' => 'application/srgs+xml',
|
|
415
|
-
'gsf' => 'application/x-font-ghostscript',
|
|
416
|
-
'gslib' => 'audio/x-psf',
|
|
417
|
-
'gtar' => 'application/x-gtar',
|
|
418
|
-
'gtm' => 'application/vnd.groove-tool-message',
|
|
419
|
-
'gtw' => 'model/vnd.gtw',
|
|
420
|
-
'gv' => 'text/vnd.graphviz',
|
|
421
|
-
'gz' => 'application/gzip',
|
|
422
|
-
'h' => 'text/x-c++hdr',
|
|
423
|
-
'h++' => 'text/x-c++hdr',
|
|
424
|
-
'h261' => 'video/h261',
|
|
425
|
-
'h263' => 'video/h263',
|
|
426
|
-
'h264' => 'video/h264',
|
|
427
|
-
'h5' => 'application/x-hdf',
|
|
428
|
-
'haml' => 'text/x-haml',
|
|
429
|
-
'handlers' => 'text/plain',
|
|
430
|
-
'hbci' => 'application/vnd.hbci',
|
|
431
|
-
'hdf' => 'application/x-hdf',
|
|
432
|
-
'hdr' => 'application/envi.hdr',
|
|
433
|
-
'he5' => 'application/x-hdf',
|
|
434
|
-
'heic' => 'image/heic',
|
|
435
|
-
'heif' => 'image/heif',
|
|
436
|
-
'hfa' => 'application/x-erdas-hfa',
|
|
437
|
-
'hh' => 'text/x-c++hdr',
|
|
438
|
-
'hlp' => 'application/winhlp',
|
|
439
|
-
'hp' => 'text/x-c++hdr',
|
|
440
|
-
'hpgl' => 'application/vnd.hp-hpgl',
|
|
441
|
-
'hpid' => 'application/vnd.hp-hpid',
|
|
442
|
-
'hpp' => 'text/x-c++hdr',
|
|
443
|
-
'hprof' => 'application/vnd.java.hprof ',
|
|
444
|
-
'hprof.txt' => 'application/vnd.java.hprof.text',
|
|
445
|
-
'hps' => 'application/vnd.hp-hps',
|
|
446
|
-
'hqx' => 'application/mac-binhex40',
|
|
447
|
-
'hs' => 'text/x-haskell',
|
|
448
|
-
'htc' => 'text/plain',
|
|
449
|
-
'htke' => 'application/vnd.kenameaapp',
|
|
450
|
-
'htm' => 'text/html',
|
|
451
|
-
'html' => 'text/html',
|
|
452
|
-
'hvd' => 'application/vnd.yamaha.hv-dic',
|
|
453
|
-
'hvp' => 'application/vnd.yamaha.hv-voice',
|
|
454
|
-
'hvs' => 'application/vnd.yamaha.hv-script',
|
|
455
|
-
'hwpx' => 'application/hwp+zip',
|
|
456
|
-
'hx' => 'text/x-haxe',
|
|
457
|
-
'hxx' => 'text/x-c++hdr',
|
|
458
|
-
'i3' => 'text/x-modula',
|
|
459
|
-
'ibooks' => 'application/x-ibooks+zip',
|
|
460
|
-
'icb' => 'image/x-tga',
|
|
461
|
-
'icc' => 'application/vnd.iccprofile',
|
|
462
|
-
'ice' => 'x-conference/x-cooltalk',
|
|
463
|
-
'icm' => 'application/vnd.iccprofile',
|
|
464
|
-
'icns' => 'image/icns',
|
|
465
|
-
'ico' => 'image/vnd.microsoft.icon',
|
|
466
|
-
'ics' => 'text/calendar',
|
|
467
|
-
'idl' => 'text/x-idl',
|
|
468
|
-
'idml' => 'application/vnd.adobe.indesign-idml-package',
|
|
469
|
-
'ief' => 'image/ief',
|
|
470
|
-
'ifb' => 'text/calendar',
|
|
471
|
-
'ifm' => 'application/vnd.shana.informed.formdata',
|
|
472
|
-
'ifo' => 'application/x-dvd-ifo',
|
|
473
|
-
'ig' => 'text/x-modula',
|
|
474
|
-
'iges' => 'model/iges',
|
|
475
|
-
'igl' => 'application/vnd.igloader',
|
|
476
|
-
'igs' => 'model/iges',
|
|
477
|
-
'igx' => 'application/vnd.micrografx.igx',
|
|
478
|
-
'ihtml' => 'text/plain',
|
|
479
|
-
'iif' => 'application/vnd.shana.informed.interchange',
|
|
480
|
-
'iiq' => 'image/x-raw-phaseone',
|
|
481
|
-
'imp' => 'application/vnd.accpac.simply.imp',
|
|
482
|
-
'ims' => 'application/vnd.ms-ims',
|
|
483
|
-
'in' => 'text/plain',
|
|
484
|
-
'indd' => 'application/x-adobe-indesign',
|
|
485
|
-
'ini' => 'text/x-ini',
|
|
486
|
-
'inx' => 'application/x-adobe-indesign-interchange',
|
|
487
|
-
'ipa' => 'application/x-itunes-ipa',
|
|
488
|
-
'ipk' => 'application/vnd.shana.informed.package',
|
|
489
|
-
'irm' => 'application/vnd.ibm.rights-management',
|
|
490
|
-
'irp' => 'application/vnd.irepository.package+xml',
|
|
491
|
-
'iso' => 'application/x-iso9660-image',
|
|
492
|
-
'iso19139' => 'text/iso19139+xml',
|
|
493
|
-
'itk' => 'text/x-tcl',
|
|
494
|
-
'itp' => 'application/vnd.shana.informed.formtemplate',
|
|
495
|
-
'ivp' => 'application/vnd.immervision-ivp',
|
|
496
|
-
'ivu' => 'application/vnd.immervision-ivu',
|
|
497
|
-
'j2c' => 'image/x-jp2-codestream',
|
|
498
|
-
'jad' => 'text/vnd.sun.j2me.app-descriptor',
|
|
499
|
-
'jam' => 'application/vnd.jam',
|
|
500
|
-
'jar' => 'application/java-archive',
|
|
501
|
-
'java' => 'text/x-java-source',
|
|
502
|
-
'jb2' => 'image/x-jbig2',
|
|
503
|
-
'jbig2' => 'image/x-jbig2',
|
|
504
|
-
'jdf' => 'application/x-jeol-jdf',
|
|
505
|
-
'jfi' => 'image/jpeg',
|
|
506
|
-
'jfif' => 'image/jpeg',
|
|
507
|
-
'jif' => 'image/jpeg',
|
|
508
|
-
'jisp' => 'application/vnd.jisp',
|
|
509
|
-
'jks' => 'application/x-java-keystore',
|
|
510
|
-
'jl' => 'text/x-common-lisp',
|
|
511
|
-
'jlt' => 'application/vnd.hp-jlyt',
|
|
512
|
-
'jmx' => 'text/plain',
|
|
513
|
-
'jng' => 'video/x-jng',
|
|
514
|
-
'jnilib' => 'application/x-java-jnilib',
|
|
515
|
-
'jnlp' => 'application/x-java-jnlp-file',
|
|
516
|
-
'joda' => 'application/vnd.joost.joda-archive',
|
|
517
|
-
'jp2' => 'image/jp2',
|
|
518
|
-
'jpe' => 'image/jpeg',
|
|
519
|
-
'jpeg' => 'image/jpeg',
|
|
520
|
-
'jpf' => 'image/jpx',
|
|
521
|
-
'jpg' => 'image/jpeg',
|
|
522
|
-
'jpgm' => 'image/jpm',
|
|
523
|
-
'jpgv' => 'video/jpeg',
|
|
524
|
-
'jpm' => 'image/jpm',
|
|
525
|
-
'js' => 'text/javascript',
|
|
526
|
-
'json' => 'application/json',
|
|
527
|
-
'jsp' => 'text/x-jsp',
|
|
528
|
-
'junit' => 'text/plain',
|
|
529
|
-
'jx' => 'text/plain',
|
|
530
|
-
'jxl' => 'image/jxl',
|
|
531
|
-
'k25' => 'image/x-raw-kodak',
|
|
532
|
-
'kar' => 'audio/midi',
|
|
533
|
-
'karbon' => 'application/vnd.kde.karbon',
|
|
534
|
-
'kdc' => 'image/x-raw-kodak',
|
|
535
|
-
'key' => 'application/vnd.apple.keynote',
|
|
536
|
-
'kfo' => 'application/vnd.kde.kformula',
|
|
537
|
-
'kia' => 'application/vnd.kidspiration',
|
|
538
|
-
'kil' => 'application/x-killustrator',
|
|
539
|
-
'kml' => 'application/vnd.google-earth.kml+xml',
|
|
540
|
-
'kmz' => 'application/vnd.google-earth.kmz',
|
|
541
|
-
'kne' => 'application/vnd.kinar',
|
|
542
|
-
'knp' => 'application/vnd.kinar',
|
|
543
|
-
'kon' => 'application/vnd.kde.kontour',
|
|
544
|
-
'kpr' => 'application/vnd.kde.kpresenter',
|
|
545
|
-
'kpt' => 'application/vnd.kde.kpresenter',
|
|
546
|
-
'ksp' => 'application/vnd.kde.kspread',
|
|
547
|
-
'ktr' => 'application/vnd.kahootz',
|
|
548
|
-
'ktz' => 'application/vnd.kahootz',
|
|
549
|
-
'kwd' => 'application/vnd.kde.kword',
|
|
550
|
-
'kwt' => 'application/vnd.kde.kword',
|
|
551
|
-
'l' => 'text/x-lex',
|
|
552
|
-
'las' => 'application/x-asprs',
|
|
553
|
-
'latex' => 'application/x-latex',
|
|
554
|
-
'laz' => 'application/x-asprs',
|
|
555
|
-
'lbd' => 'application/vnd.llamagraphics.life-balance.desktop',
|
|
556
|
-
'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml',
|
|
557
|
-
'les' => 'application/vnd.hhe.lesson-player',
|
|
558
|
-
'less' => 'text/x-less',
|
|
559
|
-
'lha' => 'application/octet-stream',
|
|
560
|
-
'lhs' => 'text/x-haskell',
|
|
561
|
-
'link66' => 'application/vnd.route66.link66+xml',
|
|
562
|
-
'lisp' => 'text/x-common-lisp',
|
|
563
|
-
'list' => 'text/plain',
|
|
564
|
-
'list3820' => 'application/vnd.ibm.modcap',
|
|
565
|
-
'listafp' => 'application/vnd.ibm.modcap',
|
|
566
|
-
'log' => 'text/x-log',
|
|
567
|
-
'lostxml' => 'application/lost+xml',
|
|
568
|
-
'lrf' => 'application/octet-stream',
|
|
569
|
-
'lrm' => 'application/vnd.ms-lrm',
|
|
570
|
-
'lsp' => 'text/x-common-lisp',
|
|
571
|
-
'ltf' => 'application/vnd.frogans.ltf',
|
|
572
|
-
'lua' => 'text/x-lua',
|
|
573
|
-
'lvp' => 'audio/vnd.lucent.voice',
|
|
574
|
-
'lwp' => 'application/vnd.lotus-wordpro',
|
|
575
|
-
'lyr' => 'application/x-esri-layer',
|
|
576
|
-
'lz' => 'application/x-lzip',
|
|
577
|
-
'lz4' => 'application/x-lz4',
|
|
578
|
-
'lzh' => 'application/octet-stream',
|
|
579
|
-
'lzma' => 'application/x-lzma',
|
|
580
|
-
'm' => 'text/x-objcsrc',
|
|
581
|
-
'm13' => 'application/x-msmediaview',
|
|
582
|
-
'm14' => 'application/x-msmediaview',
|
|
583
|
-
'm1v' => 'video/mpeg',
|
|
584
|
-
'm2a' => 'audio/mpeg',
|
|
585
|
-
'm2v' => 'video/mpeg',
|
|
586
|
-
'm3' => 'text/x-modula',
|
|
587
|
-
'm3a' => 'audio/mpeg',
|
|
588
|
-
'm3u' => 'audio/x-mpegurl',
|
|
589
|
-
'm3u8' => 'application/vnd.apple.mpegurl',
|
|
590
|
-
'm4' => 'text/plain',
|
|
591
|
-
'm4a' => 'audio/mp4',
|
|
592
|
-
'm4b' => 'audio/mp4',
|
|
593
|
-
'm4s' => 'video/iso.segment',
|
|
594
|
-
'm4u' => 'video/vnd.mpegurl',
|
|
595
|
-
'm4v' => 'video/x-m4v',
|
|
596
|
-
'ma' => 'application/mathematica',
|
|
597
|
-
'mag' => 'application/vnd.ecowin.chart',
|
|
598
|
-
'maker' => 'application/vnd.framemaker',
|
|
599
|
-
'man' => 'text/troff',
|
|
600
|
-
'manifest' => 'text/plain',
|
|
601
|
-
'markdown' => 'text/x-web-markdown',
|
|
602
|
-
'mat' => 'application/x-matlab-data',
|
|
603
|
-
'mathml' => 'application/mathml+xml',
|
|
604
|
-
'mb' => 'application/mathematica',
|
|
605
|
-
'mbk' => 'application/vnd.mobius.mbk',
|
|
606
|
-
'mbox' => 'application/mbox',
|
|
607
|
-
'mc1' => 'application/vnd.medcalcdata',
|
|
608
|
-
'mcd' => 'application/vnd.mcd',
|
|
609
|
-
'mcurl' => 'text/vnd.curl.mcurl',
|
|
610
|
-
'md' => 'text/x-web-markdown',
|
|
611
|
-
'mdb' => 'application/x-msaccess',
|
|
612
|
-
'mdi' => 'image/vnd.ms-modi',
|
|
613
|
-
'mdo' => 'text/plain',
|
|
614
|
-
'mdtext' => 'text/x-web-markdown',
|
|
615
|
-
'me' => 'text/troff',
|
|
616
|
-
'mef' => 'image/x-raw-mamiya',
|
|
617
|
-
'memgraph' => 'application/x-memgraph',
|
|
618
|
-
'mesh' => 'model/mesh',
|
|
619
|
-
'meta' => 'text/plain',
|
|
620
|
-
'mf' => 'text/plain',
|
|
621
|
-
'mfm' => 'application/vnd.mfmp',
|
|
622
|
-
'mg' => 'text/x-modula',
|
|
623
|
-
'mgz' => 'application/vnd.proteus.magazine',
|
|
624
|
-
'mht' => 'multipart/related',
|
|
625
|
-
'mhtml' => 'multipart/related',
|
|
626
|
-
'mid' => 'audio/midi',
|
|
627
|
-
'midi' => 'audio/midi',
|
|
628
|
-
'mif' => 'application/vnd.mif',
|
|
629
|
-
'mime' => 'message/rfc822',
|
|
630
|
-
'minigsf' => 'audio/x-psf',
|
|
631
|
-
'minipsf' => 'audio/x-psf',
|
|
632
|
-
'minipsf1' => 'audio/x-psf',
|
|
633
|
-
'mj2' => 'video/mj2',
|
|
634
|
-
'mjp2' => 'video/mj2',
|
|
635
|
-
'mjs' => 'text/javascript',
|
|
636
|
-
'mka' => 'audio/x-matroska',
|
|
637
|
-
'mkd' => 'text/x-web-markdown',
|
|
638
|
-
'mkv' => 'video/x-matroska',
|
|
639
|
-
'ml' => 'text/x-ml',
|
|
640
|
-
'mli' => 'text/x-ocaml',
|
|
641
|
-
'mlp' => 'application/vnd.dolby.mlp',
|
|
642
|
-
'mmap' => 'application/vnd.mindjet.mindmanager',
|
|
643
|
-
'mmas' => 'application/vnd.mindjet.mindmanager',
|
|
644
|
-
'mmat' => 'application/vnd.mindjet.mindmanager',
|
|
645
|
-
'mmd' => 'application/vnd.chipnuts.karaoke-mmd',
|
|
646
|
-
'mmf' => 'application/vnd.smaf',
|
|
647
|
-
'mmmp' => 'application/vnd.mindjet.mindmanager',
|
|
648
|
-
'mmp' => 'application/vnd.mindjet.mindmanager',
|
|
649
|
-
'mmpt' => 'application/vnd.mindjet.mindmanager',
|
|
650
|
-
'mmr' => 'image/vnd.fujixerox.edmics-mmr',
|
|
651
|
-
'mng' => 'video/x-mng',
|
|
652
|
-
'mny' => 'application/x-msmoney',
|
|
653
|
-
'mobi' => 'application/x-mobipocket-ebook',
|
|
654
|
-
'mod' => 'audio/x-mod',
|
|
655
|
-
'mos' => 'image/x-raw-leaf',
|
|
656
|
-
'mov' => 'video/quicktime',
|
|
657
|
-
'movie' => 'video/x-sgi-movie',
|
|
658
|
-
'mp2' => 'audio/mpeg',
|
|
659
|
-
'mp2a' => 'audio/mpeg',
|
|
660
|
-
'mp3' => 'audio/mpeg',
|
|
661
|
-
'mp4' => 'video/mp4',
|
|
662
|
-
'mp4a' => 'audio/mp4',
|
|
663
|
-
'mp4s' => 'application/mp4',
|
|
664
|
-
'mp4v' => 'video/mp4',
|
|
665
|
-
'mpc' => 'application/vnd.mophun.certificate',
|
|
666
|
-
'mpd' => 'application/dash+xml',
|
|
667
|
-
'mpe' => 'video/mpeg',
|
|
668
|
-
'mpeg' => 'video/mpeg',
|
|
669
|
-
'mpg' => 'video/mpeg',
|
|
670
|
-
'mpg4' => 'video/mp4',
|
|
671
|
-
'mpga' => 'audio/mpeg',
|
|
672
|
-
'mpkg' => 'application/vnd.apple.installer+xml',
|
|
673
|
-
'mpm' => 'application/vnd.blueice.multipass',
|
|
674
|
-
'mpn' => 'application/vnd.mophun.application',
|
|
675
|
-
'mpp' => 'application/vnd.ms-project',
|
|
676
|
-
'mpt' => 'application/vnd.ms-project',
|
|
677
|
-
'mpx' => 'application/x-project',
|
|
678
|
-
'mpy' => 'application/vnd.ibm.minipay',
|
|
679
|
-
'mqy' => 'application/vnd.mobius.mqy',
|
|
680
|
-
'mrc' => 'application/marc',
|
|
681
|
-
'mrw' => 'image/x-raw-minolta',
|
|
682
|
-
'ms' => 'text/troff',
|
|
683
|
-
'msa' => 'application/vnd.msa-disk-image',
|
|
684
|
-
'mscml' => 'application/mediaservercontrol+xml',
|
|
685
|
-
'mseed' => 'application/vnd.fdsn.mseed',
|
|
686
|
-
'mseq' => 'application/vnd.mseq',
|
|
687
|
-
'msf' => 'application/vnd.epson.msf',
|
|
688
|
-
'msg' => 'application/vnd.ms-outlook',
|
|
689
|
-
'msh' => 'model/mesh',
|
|
690
|
-
'msi' => 'application/x-ms-installer',
|
|
691
|
-
'msl' => 'application/vnd.mobius.msl',
|
|
692
|
-
'msp' => 'application/x-ms-installer',
|
|
693
|
-
'mst' => 'application/x-ms-installer',
|
|
694
|
-
'msty' => 'application/vnd.muvee.style',
|
|
695
|
-
'mts' => 'model/vnd.mts',
|
|
696
|
-
'mus' => 'application/vnd.musician',
|
|
697
|
-
'musicxml' => 'application/vnd.recordare.musicxml+xml',
|
|
698
|
-
'mvb' => 'application/x-msmediaview',
|
|
699
|
-
'mwf' => 'application/vnd.mfer',
|
|
700
|
-
'mxf' => 'application/mxf',
|
|
701
|
-
'mxl' => 'application/vnd.recordare.musicxml',
|
|
702
|
-
'mxml' => 'application/xv+xml',
|
|
703
|
-
'mxs' => 'application/vnd.triscape.mxs',
|
|
704
|
-
'mxu' => 'video/vnd.mpegurl',
|
|
705
|
-
'myd' => 'application/x-mysql-misam-data',
|
|
706
|
-
'myi' => 'application/x-mysql-misam-compressed-index',
|
|
707
|
-
'n-gage' => 'application/vnd.nokia.n-gage.symbian.install',
|
|
708
|
-
'n3' => 'text/plain',
|
|
709
|
-
'nar' => 'application/vnd.iptc.g2.newsmessage+xml',
|
|
710
|
-
'nb' => 'application/mathematica',
|
|
711
|
-
'nc' => 'application/x-netcdf',
|
|
712
|
-
'ncx' => 'application/x-dtbncx+xml',
|
|
713
|
-
'nef' => 'image/x-raw-nikon',
|
|
714
|
-
'nes' => 'application/x-nesrom',
|
|
715
|
-
'ngdat' => 'application/vnd.nokia.n-gage.data',
|
|
716
|
-
'nitf' => 'image/nitf',
|
|
717
|
-
'nlu' => 'application/vnd.neurolanguage.nlu',
|
|
718
|
-
'nml' => 'application/vnd.enliven',
|
|
719
|
-
'nnd' => 'application/vnd.noblenet-directory',
|
|
720
|
-
'nns' => 'application/vnd.noblenet-sealer',
|
|
721
|
-
'nnw' => 'application/vnd.noblenet-web',
|
|
722
|
-
'npx' => 'image/vnd.net-fpx',
|
|
723
|
-
'nroff' => 'text/troff',
|
|
724
|
-
'nrw' => 'image/x-raw-nikon',
|
|
725
|
-
'nsf' => 'application/vnd.lotus-notes',
|
|
726
|
-
'ntf' => 'image/nitf',
|
|
727
|
-
'numbers' => 'application/vnd.apple.numbers',
|
|
728
|
-
'oa2' => 'application/vnd.fujitsu.oasys2',
|
|
729
|
-
'oa3' => 'application/vnd.fujitsu.oasys3',
|
|
730
|
-
'oas' => 'application/vnd.fujitsu.oasys',
|
|
731
|
-
'obd' => 'application/x-msbinder',
|
|
732
|
-
'ocaml' => 'text/x-ocaml',
|
|
733
|
-
'oda' => 'application/oda',
|
|
734
|
-
'odb' => 'application/vnd.oasis.opendocument.base',
|
|
735
|
-
'odc' => 'application/vnd.oasis.opendocument.chart',
|
|
736
|
-
'odf' => 'application/vnd.oasis.opendocument.formula',
|
|
737
|
-
'odft' => 'application/vnd.oasis.opendocument.formula-template',
|
|
738
|
-
'odg' => 'application/vnd.oasis.opendocument.graphics',
|
|
739
|
-
'odi' => 'application/vnd.oasis.opendocument.image',
|
|
740
|
-
'odp' => 'application/vnd.oasis.opendocument.presentation',
|
|
741
|
-
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
|
|
742
|
-
'odt' => 'application/vnd.oasis.opendocument.text',
|
|
743
|
-
'oga' => 'audio/ogg',
|
|
744
|
-
'ogg' => 'audio/vorbis',
|
|
745
|
-
'ogm' => 'video/x-ogm',
|
|
746
|
-
'ogv' => 'video/ogg',
|
|
747
|
-
'ogx' => 'application/ogg',
|
|
748
|
-
'one' => 'application/onenote;format=one',
|
|
749
|
-
'onepkg' => 'application/onenote; format=package',
|
|
750
|
-
'onetmp' => 'application/onenote',
|
|
751
|
-
'onetoc' => 'application/onenote;format=onetoc2',
|
|
752
|
-
'onetoc2' => 'application/onenote;format=onetoc2',
|
|
753
|
-
'opf' => 'application/oebps-package+xml',
|
|
754
|
-
'oprc' => 'application/vnd.palm',
|
|
755
|
-
'opus' => 'audio/opus',
|
|
756
|
-
'orf' => 'image/x-raw-olympus',
|
|
757
|
-
'org' => 'application/vnd.lotus-organizer',
|
|
758
|
-
'osf' => 'application/vnd.yamaha.openscoreformat',
|
|
759
|
-
'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
|
|
760
|
-
'ost' => 'application/vnd.ms-outlook-pst',
|
|
761
|
-
'otc' => 'application/vnd.oasis.opendocument.chart-template',
|
|
762
|
-
'otf' => 'application/x-font-otf',
|
|
763
|
-
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
|
|
764
|
-
'oth' => 'application/vnd.oasis.opendocument.text-web',
|
|
765
|
-
'oti' => 'application/vnd.oasis.opendocument.image-template',
|
|
766
|
-
'otm' => 'application/vnd.oasis.opendocument.text-master',
|
|
767
|
-
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
|
|
768
|
-
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
|
|
769
|
-
'ott' => 'application/vnd.oasis.opendocument.text-template',
|
|
770
|
-
'owl' => 'application/rdf+xml',
|
|
771
|
-
'oxps' => 'application/vnd.ms-xpsdocument',
|
|
772
|
-
'oxt' => 'application/vnd.openofficeorg.extension',
|
|
773
|
-
'p' => 'text/x-pascal',
|
|
774
|
-
'p10' => 'application/pkcs10',
|
|
775
|
-
'p12' => 'application/x-pkcs12',
|
|
776
|
-
'p7b' => 'application/x-pkcs7-certificates',
|
|
777
|
-
'p7c' => 'application/pkcs7-mime',
|
|
778
|
-
'p7m' => 'application/pkcs7-mime',
|
|
779
|
-
'p7r' => 'application/x-pkcs7-certreqresp',
|
|
780
|
-
'p7s' => 'application/pkcs7-signature',
|
|
781
|
-
'pack' => 'application/x-java-pack200',
|
|
782
|
-
'pages' => 'application/vnd.apple.pages',
|
|
783
|
-
'pam' => 'image/x-portable-arbitrarymap',
|
|
784
|
-
'parquet' => 'application/x-parquet',
|
|
785
|
-
'pas' => 'text/x-pascal',
|
|
786
|
-
'patch' => 'text/x-diff',
|
|
787
|
-
'pbd' => 'application/vnd.powerbuilder6',
|
|
788
|
-
'pbm' => 'image/x-portable-bitmap',
|
|
789
|
-
'pcap' => 'application/vnd.tcpdump.pcap',
|
|
790
|
-
'pcapng' => 'application/vnd.tcpdump.pcapng',
|
|
791
|
-
'pcf' => 'application/x-font-pcf',
|
|
792
|
-
'pcl' => 'application/vnd.hp-pcl',
|
|
793
|
-
'pclxl' => 'application/vnd.hp-pclxl',
|
|
794
|
-
'pct' => 'image/x-pict',
|
|
795
|
-
'pcurl' => 'application/vnd.curl.pcurl',
|
|
796
|
-
'pcx' => 'image/vnd.zbrush.pcx',
|
|
797
|
-
'pdb' => 'chemical/x-pdb',
|
|
798
|
-
'pdf' => 'application/pdf',
|
|
799
|
-
'pef' => 'image/x-raw-pentax',
|
|
800
|
-
'pem' => 'application/x-x509-cert;format=pem',
|
|
801
|
-
'pen' => 'text/plain',
|
|
802
|
-
'perl' => 'text/x-perl',
|
|
803
|
-
'pfa' => 'application/x-font-type1',
|
|
804
|
-
'pfb' => 'application/x-font-type1',
|
|
805
|
-
'pfm' => 'application/x-font-printer-metric',
|
|
806
|
-
'pfr' => 'application/font-tdpfr',
|
|
807
|
-
'pfx' => 'application/x-pkcs12',
|
|
808
|
-
'pgm' => 'image/x-portable-graymap',
|
|
809
|
-
'pgn' => 'application/x-chess-pgn',
|
|
810
|
-
'pgp' => 'application/pgp-encrypted',
|
|
811
|
-
'php' => 'text/x-php',
|
|
812
|
-
'php3' => 'text/x-php',
|
|
813
|
-
'php4' => 'text/x-php',
|
|
814
|
-
'pic' => 'image/x-pict',
|
|
815
|
-
'pict' => 'image/x-pict',
|
|
816
|
-
'pkg' => 'application/octet-stream',
|
|
817
|
-
'pki' => 'application/pkixcmp',
|
|
818
|
-
'pkipath' => 'application/pkix-pkipath',
|
|
819
|
-
'pl' => 'text/x-perl',
|
|
820
|
-
'plb' => 'application/vnd.3gpp.pic-bw-large',
|
|
821
|
-
'plc' => 'application/vnd.mobius.plc',
|
|
822
|
-
'plf' => 'application/vnd.pocketlearn',
|
|
823
|
-
'pls' => 'application/pls+xml',
|
|
824
|
-
'pm' => 'text/x-perl',
|
|
825
|
-
'pml' => 'application/vnd.ctc-posml',
|
|
826
|
-
'png' => 'image/png',
|
|
827
|
-
'pnm' => 'image/x-portable-anymap',
|
|
828
|
-
'pod' => 'text/plain',
|
|
829
|
-
'pom' => 'text/plain',
|
|
830
|
-
'portpkg' => 'application/vnd.macports.portpkg',
|
|
831
|
-
'pot' => 'application/vnd.ms-powerpoint',
|
|
832
|
-
'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
|
|
833
|
-
'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
|
|
834
|
-
'pp' => 'text/x-pascal',
|
|
835
|
-
'ppa' => 'application/vnd.ms-powerpoint',
|
|
836
|
-
'ppam' => 'application/vnd.ms-powerpoint.addin.macroenabled.12',
|
|
837
|
-
'ppd' => 'application/vnd.cups-ppd',
|
|
838
|
-
'ppj' => 'image/vnd.adobe.premiere',
|
|
839
|
-
'ppm' => 'image/x-portable-pixmap',
|
|
840
|
-
'pps' => 'application/vnd.ms-powerpoint',
|
|
841
|
-
'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
|
|
842
|
-
'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
|
843
|
-
'ppt' => 'application/vnd.ms-powerpoint',
|
|
844
|
-
'pptm' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
|
|
845
|
-
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
846
|
-
'ppz' => 'application/vnd.ms-powerpoint',
|
|
847
|
-
'pqa' => 'application/vnd.palm',
|
|
848
|
-
'prc' => 'application/x-mobipocket-ebook',
|
|
849
|
-
'pre' => 'application/vnd.lotus-freelance',
|
|
850
|
-
'prf' => 'application/pics-rules',
|
|
851
|
-
'pro' => 'text/x-prolog',
|
|
852
|
-
'project' => 'text/plain',
|
|
853
|
-
'properties' => 'text/x-java-properties',
|
|
854
|
-
'prt' => 'application/x-prt',
|
|
855
|
-
'ps' => 'application/postscript',
|
|
856
|
-
'psb' => 'application/vnd.3gpp.pic-bw-small',
|
|
857
|
-
'psd' => 'image/vnd.adobe.photoshop',
|
|
858
|
-
'psf' => 'application/x-font-linux-psf',
|
|
859
|
-
'psf1' => 'audio/x-psf',
|
|
860
|
-
'psflib' => 'audio/x-psf',
|
|
861
|
-
'pst' => 'application/vnd.ms-outlook-pst',
|
|
862
|
-
'ptid' => 'application/vnd.pvi.ptid1',
|
|
863
|
-
'ptx' => 'image/x-raw-pentax',
|
|
864
|
-
'pub' => 'application/x-mspublisher',
|
|
865
|
-
'pvb' => 'application/vnd.3gpp.pic-bw-var',
|
|
866
|
-
'pwn' => 'application/vnd.3m.post-it-notes',
|
|
867
|
-
'pxn' => 'image/x-raw-logitech',
|
|
868
|
-
'py' => 'text/x-python',
|
|
869
|
-
'pya' => 'audio/vnd.ms-playready.media.pya',
|
|
870
|
-
'pyv' => 'video/vnd.ms-playready.media.pyv',
|
|
871
|
-
'qam' => 'application/vnd.epson.quickanime',
|
|
872
|
-
'qbo' => 'application/vnd.intu.qbo',
|
|
873
|
-
'qfx' => 'application/vnd.intu.qfx',
|
|
874
|
-
'qps' => 'application/vnd.publishare-delta-tree',
|
|
875
|
-
'qpw' => 'application/x-quattro-pro',
|
|
876
|
-
'qt' => 'video/quicktime',
|
|
877
|
-
'qwd' => 'application/vnd.quark.quarkxpress',
|
|
878
|
-
'qwt' => 'application/vnd.quark.quarkxpress',
|
|
879
|
-
'qxb' => 'application/vnd.quark.quarkxpress',
|
|
880
|
-
'qxd' => 'application/vnd.quark.quarkxpress',
|
|
881
|
-
'qxl' => 'application/vnd.quark.quarkxpress',
|
|
882
|
-
'qxt' => 'application/vnd.quark.quarkxpress',
|
|
883
|
-
'r' => 'text/x-rsrc',
|
|
884
|
-
'r3d' => 'image/x-raw-red',
|
|
885
|
-
'ra' => 'audio/x-pn-realaudio',
|
|
886
|
-
'raf' => 'image/x-raw-fuji',
|
|
887
|
-
'ram' => 'audio/x-pn-realaudio',
|
|
888
|
-
'rar' => 'application/x-rar-compressed',
|
|
889
|
-
'ras' => 'image/x-cmu-raster',
|
|
890
|
-
'raw' => 'image/x-raw-panasonic',
|
|
891
|
-
'rb' => 'text/x-ruby',
|
|
892
|
-
'rcprofile' => 'application/vnd.ipunplugged.rcprofile',
|
|
893
|
-
'rdf' => 'application/rdf+xml',
|
|
894
|
-
'rdz' => 'application/vnd.data-vision.rdz',
|
|
895
|
-
'rep' => 'application/vnd.businessobjects',
|
|
896
|
-
'res' => 'application/x-dtbresource+xml',
|
|
897
|
-
'rest' => 'text/x-rst',
|
|
898
|
-
'restx' => 'text/x-rst',
|
|
899
|
-
'rexx' => 'text/x-rexx',
|
|
900
|
-
'rgb' => 'image/x-rgb',
|
|
901
|
-
'rif' => 'application/reginfo+xml',
|
|
902
|
-
'rl' => 'application/resource-lists+xml',
|
|
903
|
-
'rlc' => 'image/vnd.fujixerox.edmics-rlc',
|
|
904
|
-
'rld' => 'application/resource-lists-diff+xml',
|
|
905
|
-
'rm' => 'application/vnd.rn-realmedia',
|
|
906
|
-
'rmi' => 'audio/midi',
|
|
907
|
-
'rmp' => 'audio/x-pn-realaudio-plugin',
|
|
908
|
-
'rms' => 'application/vnd.jcp.javame.midlet-rms',
|
|
909
|
-
'rnc' => 'application/relax-ng-compact-syntax',
|
|
910
|
-
'rng' => 'text/plain',
|
|
911
|
-
'rnx' => 'text/plain',
|
|
912
|
-
'roff' => 'text/troff',
|
|
913
|
-
'roles' => 'text/plain',
|
|
914
|
-
'rpm' => 'application/x-rpm',
|
|
915
|
-
'rpss' => 'application/vnd.nokia.radio-presets',
|
|
916
|
-
'rpst' => 'application/vnd.nokia.radio-preset',
|
|
917
|
-
'rq' => 'application/sparql-query',
|
|
918
|
-
'rs' => 'application/rls-services+xml',
|
|
919
|
-
'rsd' => 'application/rsd+xml',
|
|
920
|
-
'rss' => 'application/rss+xml',
|
|
921
|
-
'rst' => 'text/x-rst',
|
|
922
|
-
'rtf' => 'application/rtf',
|
|
923
|
-
'rtx' => 'text/richtext',
|
|
924
|
-
'rw2' => 'image/x-raw-panasonic',
|
|
925
|
-
'rwz' => 'image/x-raw-rawzor',
|
|
926
|
-
's' => 'text/x-assembly',
|
|
927
|
-
's7m' => 'application/x-sas-dmdb',
|
|
928
|
-
'sa7' => 'application/x-sas-access',
|
|
929
|
-
'saf' => 'application/vnd.yamaha.smaf-audio',
|
|
930
|
-
'sap' => 'audio/x-sap',
|
|
931
|
-
'sas' => 'application/x-sas',
|
|
932
|
-
'sas7bacs' => 'application/x-sas-access',
|
|
933
|
-
'sas7baud' => 'application/x-sas-audit',
|
|
934
|
-
'sas7bbak' => 'application/x-sas-backup',
|
|
935
|
-
'sas7bcat' => 'application/x-sas-catalog',
|
|
936
|
-
'sas7bdat' => 'application/x-sas-data',
|
|
937
|
-
'sas7bdmd' => 'application/x-sas-dmdb',
|
|
938
|
-
'sas7bfdb' => 'application/x-sas-fdb',
|
|
939
|
-
'sas7bitm' => 'application/x-sas-itemstor',
|
|
940
|
-
'sas7bmdb' => 'application/x-sas-mddb',
|
|
941
|
-
'sas7bndx' => 'application/x-sas-data-index',
|
|
942
|
-
'sas7bpgm' => 'application/x-sas-program-data',
|
|
943
|
-
'sas7bput' => 'application/x-sas-putility',
|
|
944
|
-
'sas7butl' => 'application/x-sas-utility',
|
|
945
|
-
'sas7bvew' => 'application/x-sas-view',
|
|
946
|
-
'sass' => 'text/x-sass',
|
|
947
|
-
'sav' => 'application/x-spss-sav',
|
|
948
|
-
'sbml' => 'application/sbml+xml',
|
|
949
|
-
'sc' => 'application/vnd.ibm.secure-container',
|
|
950
|
-
'sc7' => 'application/x-sas-catalog',
|
|
951
|
-
'scad' => 'application/x-openscad',
|
|
952
|
-
'scala' => 'text/x-scala',
|
|
953
|
-
'scd' => 'application/x-msschedule',
|
|
954
|
-
'schemas' => 'text/plain',
|
|
955
|
-
'scm' => 'text/x-scheme',
|
|
956
|
-
'scq' => 'application/scvp-cv-request',
|
|
957
|
-
'scs' => 'application/scvp-cv-response',
|
|
958
|
-
'scss' => 'text/x-scss',
|
|
959
|
-
'scurl' => 'text/vnd.curl.scurl',
|
|
960
|
-
'sd2' => 'application/x-sas-data-v6',
|
|
961
|
-
'sd7' => 'application/x-sas-data',
|
|
962
|
-
'sda' => 'application/vnd.stardivision.draw',
|
|
963
|
-
'sdc' => 'application/vnd.stardivision.calc',
|
|
964
|
-
'sdd' => 'application/vnd.stardivision.impress',
|
|
965
|
-
'sdkd' => 'application/vnd.solent.sdkm+xml',
|
|
966
|
-
'sdkm' => 'application/vnd.solent.sdkm+xml',
|
|
967
|
-
'sdp' => 'application/sdp',
|
|
968
|
-
'sdw' => 'application/vnd.stardivision.writer',
|
|
969
|
-
'sed' => 'text/x-sed',
|
|
970
|
-
'see' => 'application/vnd.seemail',
|
|
971
|
-
'seed' => 'application/vnd.fdsn.seed',
|
|
972
|
-
'sema' => 'application/vnd.sema',
|
|
973
|
-
'semd' => 'application/vnd.semd',
|
|
974
|
-
'semf' => 'application/vnd.semf',
|
|
975
|
-
'ser' => 'application/java-serialized-object',
|
|
976
|
-
'setpay' => 'application/set-payment-initiation',
|
|
977
|
-
'setreg' => 'application/set-registration-initiation',
|
|
978
|
-
'sf7' => 'application/x-sas-fdb',
|
|
979
|
-
'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data',
|
|
980
|
-
'sfdu' => 'application/x-sfdu',
|
|
981
|
-
'sfs' => 'application/vnd.spotfire.sfs',
|
|
982
|
-
'sgl' => 'application/vnd.stardivision.writer-global',
|
|
983
|
-
'sgm' => 'text/sgml',
|
|
984
|
-
'sgml' => 'text/sgml',
|
|
985
|
-
'sh' => 'application/x-sh',
|
|
986
|
-
'shar' => 'application/x-shar',
|
|
987
|
-
'shf' => 'application/shf+xml',
|
|
988
|
-
'shp' => 'application/x-shapefile',
|
|
989
|
-
'shw' => 'application/x-corelpresentations',
|
|
990
|
-
'si7' => 'application/x-sas-data-index',
|
|
991
|
-
'sib' => 'application/x-sibelius',
|
|
992
|
-
'sig' => 'application/pgp-signature',
|
|
993
|
-
'silo' => 'model/mesh',
|
|
994
|
-
'sis' => 'application/vnd.symbian.install',
|
|
995
|
-
'sisx' => 'application/vnd.symbian.install',
|
|
996
|
-
'sit' => 'application/x-stuffit',
|
|
997
|
-
'sitx' => 'application/x-stuffitx',
|
|
998
|
-
'skd' => 'application/vnd.koan',
|
|
999
|
-
'skm' => 'application/vnd.koan',
|
|
1000
|
-
'skp' => 'application/vnd.koan',
|
|
1001
|
-
'skt' => 'application/vnd.koan',
|
|
1002
|
-
'sldasm' => 'application/sldworks',
|
|
1003
|
-
'slddrw' => 'application/sldworks',
|
|
1004
|
-
'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12',
|
|
1005
|
-
'sldprt' => 'application/sldworks',
|
|
1006
|
-
'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
|
|
1007
|
-
'slt' => 'application/vnd.epson.salt',
|
|
1008
|
-
'sm7' => 'application/x-sas-mddb',
|
|
1009
|
-
'smf' => 'application/vnd.stardivision.math',
|
|
1010
|
-
'smi' => 'application/smil+xml',
|
|
1011
|
-
'smil' => 'application/smil+xml',
|
|
1012
|
-
'sml' => 'application/smil+xml',
|
|
1013
|
-
'snd' => 'audio/basic',
|
|
1014
|
-
'snf' => 'application/x-font-snf',
|
|
1015
|
-
'so' => 'application/octet-stream',
|
|
1016
|
-
'sp7' => 'application/x-sas-putility',
|
|
1017
|
-
'spc' => 'application/x-pkcs7-certificates',
|
|
1018
|
-
'spf' => 'application/vnd.yamaha.smaf-phrase',
|
|
1019
|
-
'spl' => 'application/x-futuresplash',
|
|
1020
|
-
'spot' => 'text/vnd.in3d.spot',
|
|
1021
|
-
'spp' => 'application/scvp-vp-response',
|
|
1022
|
-
'spq' => 'application/scvp-vp-request',
|
|
1023
|
-
'spx' => 'audio/speex',
|
|
1024
|
-
'sql' => 'text/x-sql',
|
|
1025
|
-
'sr2' => 'image/x-raw-sony',
|
|
1026
|
-
'sr7' => 'application/x-sas-itemstor',
|
|
1027
|
-
'src' => 'application/x-wais-source',
|
|
1028
|
-
'srf' => 'image/x-raw-sony',
|
|
1029
|
-
'srl' => 'application/sereal',
|
|
1030
|
-
'srt' => 'application/x-subrip',
|
|
1031
|
-
'srx' => 'application/sparql-results+xml',
|
|
1032
|
-
'ss7' => 'application/x-sas-program-data',
|
|
1033
|
-
'sse' => 'application/vnd.kodak-descriptor',
|
|
1034
|
-
'ssf' => 'application/vnd.epson.ssf',
|
|
1035
|
-
'ssml' => 'application/ssml+xml',
|
|
1036
|
-
'st' => 'text/x-stsrc',
|
|
1037
|
-
'st7' => 'application/x-sas-audit',
|
|
1038
|
-
'stc' => 'application/vnd.sun.xml.calc.template',
|
|
1039
|
-
'std' => 'application/vnd.sun.xml.draw.template',
|
|
1040
|
-
'stf' => 'application/vnd.wt.stf',
|
|
1041
|
-
'sti' => 'application/vnd.sun.xml.impress.template',
|
|
1042
|
-
'stk' => 'application/hyperstudio',
|
|
1043
|
-
'stl' => 'model/x.stl-binary',
|
|
1044
|
-
'str' => 'application/vnd.pg.format',
|
|
1045
|
-
'stw' => 'application/vnd.sun.xml.writer.template',
|
|
1046
|
-
'stx' => 'application/x-sas-transport',
|
|
1047
|
-
'su7' => 'application/x-sas-utility',
|
|
1048
|
-
'sus' => 'application/vnd.sus-calendar',
|
|
1049
|
-
'susp' => 'application/vnd.sus-calendar',
|
|
1050
|
-
'sv4cpio' => 'application/x-sv4cpio',
|
|
1051
|
-
'sv4crc' => 'application/x-sv4crc',
|
|
1052
|
-
'sv7' => 'application/x-sas-view',
|
|
1053
|
-
'svd' => 'application/vnd.svd',
|
|
1054
|
-
'svg' => 'image/svg+xml',
|
|
1055
|
-
'svgz' => 'image/svg+xml',
|
|
1056
|
-
'swa' => 'application/x-director',
|
|
1057
|
-
'swf' => 'application/x-shockwave-flash',
|
|
1058
|
-
'swi' => 'application/vnd.arastra.swi',
|
|
1059
|
-
'sxc' => 'application/vnd.sun.xml.calc',
|
|
1060
|
-
'sxd' => 'application/vnd.sun.xml.draw',
|
|
1061
|
-
'sxg' => 'application/vnd.sun.xml.writer.global',
|
|
1062
|
-
'sxi' => 'application/vnd.sun.xml.impress',
|
|
1063
|
-
'sxm' => 'application/vnd.sun.xml.math',
|
|
1064
|
-
'sxw' => 'application/vnd.sun.xml.writer',
|
|
1065
|
-
'sz' => 'application/x-snappy-framed',
|
|
1066
|
-
't' => 'text/troff',
|
|
1067
|
-
'tao' => 'application/vnd.tao.intent-module-archive',
|
|
1068
|
-
'tar' => 'application/x-tar',
|
|
1069
|
-
'tbz' => 'application/x-bzip',
|
|
1070
|
-
'tbz2' => 'application/x-bzip2',
|
|
1071
|
-
'tcap' => 'application/vnd.3gpp2.tcap',
|
|
1072
|
-
'tcl' => 'text/x-tcl',
|
|
1073
|
-
'tcsh' => 'application/x-csh',
|
|
1074
|
-
'teacher' => 'application/vnd.smart.teacher',
|
|
1075
|
-
'tex' => 'application/x-tex',
|
|
1076
|
-
'texi' => 'application/x-texinfo',
|
|
1077
|
-
'texinfo' => 'application/x-texinfo',
|
|
1078
|
-
'text' => 'text/plain',
|
|
1079
|
-
'tfm' => 'application/x-tex-tfm',
|
|
1080
|
-
'tga' => 'image/x-tga',
|
|
1081
|
-
'tgz' => 'application/gzip',
|
|
1082
|
-
'thmx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
1083
|
-
'tif' => 'image/tiff',
|
|
1084
|
-
'tiff' => 'image/tiff',
|
|
1085
|
-
'tk' => 'text/x-tcl',
|
|
1086
|
-
'tld' => 'text/plain',
|
|
1087
|
-
'tmo' => 'application/vnd.tmobile-livetv',
|
|
1088
|
-
'tmx' => 'application/x-tmx',
|
|
1089
|
-
'toast' => 'application/x-roxio-toast',
|
|
1090
|
-
'torrent' => 'application/x-bittorrent',
|
|
1091
|
-
'tpl' => 'application/vnd.groove-tool-template',
|
|
1092
|
-
'tpt' => 'application/vnd.trid.tpt',
|
|
1093
|
-
'tr' => 'text/troff',
|
|
1094
|
-
'tra' => 'application/vnd.trueapp',
|
|
1095
|
-
'trm' => 'application/x-msterminal',
|
|
1096
|
-
'tsd' => 'application/timestamped-data',
|
|
1097
|
-
'tsv' => 'text/tab-separated-values',
|
|
1098
|
-
'ttc' => 'application/x-font-ttf',
|
|
1099
|
-
'ttf' => 'application/x-font-ttf',
|
|
1100
|
-
'ttml' => 'application/ttml+xml',
|
|
1101
|
-
'twd' => 'application/vnd.simtech-mindmapper',
|
|
1102
|
-
'twds' => 'application/vnd.simtech-mindmapper',
|
|
1103
|
-
'txd' => 'application/vnd.genomatix.tuxedo',
|
|
1104
|
-
'txf' => 'application/vnd.mobius.txf',
|
|
1105
|
-
'txt' => 'text/plain',
|
|
1106
|
-
'types' => 'text/plain',
|
|
1107
|
-
'tzx' => 'application/x-spectrum-tzx',
|
|
1108
|
-
'u32' => 'application/x-authorware-bin',
|
|
1109
|
-
'uc2' => 'application/x-uc2-compressed',
|
|
1110
|
-
'udeb' => 'application/x-debian-package',
|
|
1111
|
-
'ufd' => 'application/vnd.ufdl',
|
|
1112
|
-
'ufdl' => 'application/vnd.ufdl',
|
|
1113
|
-
'umj' => 'application/vnd.umajin',
|
|
1114
|
-
'unityweb' => 'application/vnd.unity',
|
|
1115
|
-
'uoml' => 'application/vnd.uoml+xml',
|
|
1116
|
-
'uri' => 'text/uri-list',
|
|
1117
|
-
'uris' => 'text/uri-list',
|
|
1118
|
-
'urls' => 'text/uri-list',
|
|
1119
|
-
'ustar' => 'application/x-ustar',
|
|
1120
|
-
'utz' => 'application/vnd.uiq.theme',
|
|
1121
|
-
'uu' => 'text/x-uuencode',
|
|
1122
|
-
'v' => 'text/x-verilog',
|
|
1123
|
-
'vb' => 'text/x-vbdotnet',
|
|
1124
|
-
'vbs' => 'text/x-vbscript',
|
|
1125
|
-
'vcd' => 'application/x-cdlink',
|
|
1126
|
-
'vcf' => 'text/x-vcard',
|
|
1127
|
-
'vcg' => 'application/vnd.groove-vcard',
|
|
1128
|
-
'vcs' => 'text/x-vcalendar',
|
|
1129
|
-
'vcx' => 'application/vnd.vcx',
|
|
1130
|
-
'vda' => 'image/x-tga',
|
|
1131
|
-
'vf' => 'application/x-tex-virtual-font',
|
|
1132
|
-
'vhd' => 'text/x-vhdl',
|
|
1133
|
-
'vhdl' => 'text/x-vhdl',
|
|
1134
|
-
'vis' => 'application/vnd.visionary',
|
|
1135
|
-
'viv' => 'video/vnd.vivo',
|
|
1136
|
-
'vm' => 'text/plain',
|
|
1137
|
-
'vmdk' => 'application/x-vmdk',
|
|
1138
|
-
'vor' => 'application/x-staroffice-template',
|
|
1139
|
-
'vox' => 'application/x-authorware-bin',
|
|
1140
|
-
'vrml' => 'model/vrml',
|
|
1141
|
-
'vsd' => 'application/vnd.visio',
|
|
1142
|
-
'vsdm' => 'application/vnd.ms-visio.drawing.macroEnabled.12',
|
|
1143
|
-
'vsdx' => 'application/vnd.ms-visio.drawing',
|
|
1144
|
-
'vsf' => 'application/vnd.vsf',
|
|
1145
|
-
'vsl' => 'text/plain',
|
|
1146
|
-
'vss' => 'application/vnd.visio',
|
|
1147
|
-
'vssm' => 'application/vnd.ms-visio.stencil.macroEnabled.12',
|
|
1148
|
-
'vssx' => 'application/vnd.ms-visio.stencil',
|
|
1149
|
-
'vst' => 'application/vnd.visio',
|
|
1150
|
-
'vstm' => 'application/vnd.ms-visio.template.macroEnabled.12',
|
|
1151
|
-
'vstx' => 'application/vnd.ms-visio.template',
|
|
1152
|
-
'vsw' => 'application/vnd.visio',
|
|
1153
|
-
'vtt' => 'text/vtt',
|
|
1154
|
-
'vtu' => 'model/vnd.vtu',
|
|
1155
|
-
'vxml' => 'application/voicexml+xml',
|
|
1156
|
-
'w3d' => 'application/x-director',
|
|
1157
|
-
'w60' => 'application/vnd.wordperfect',
|
|
1158
|
-
'wad' => 'application/x-doom',
|
|
1159
|
-
'war' => 'application/x-tika-java-web-archive',
|
|
1160
|
-
'warc' => 'application/warc',
|
|
1161
|
-
'warc.gz' => 'application/warc+gz',
|
|
1162
|
-
'wasm' => 'application/wasm',
|
|
1163
|
-
'wav' => 'audio/vnd.wave',
|
|
1164
|
-
'wax' => 'audio/x-ms-wax',
|
|
1165
|
-
'wb1' => 'application/x-quattro-pro',
|
|
1166
|
-
'wb2' => 'application/x-quattro-pro',
|
|
1167
|
-
'wb3' => 'application/x-quattro-pro',
|
|
1168
|
-
'wbmp' => 'image/vnd.wap.wbmp',
|
|
1169
|
-
'wbs' => 'application/vnd.criticaltools.wbs+xml',
|
|
1170
|
-
'wbxml' => 'application/vnd.wap.wbxml',
|
|
1171
|
-
'wcm' => 'application/vnd.ms-works',
|
|
1172
|
-
'wdb' => 'application/vnd.ms-works',
|
|
1173
|
-
'webarchive' => 'application/x-webarchive',
|
|
1174
|
-
'webm' => 'video/webm',
|
|
1175
|
-
'webmanifest' => 'application/manifest+json',
|
|
1176
|
-
'webp' => 'image/webp',
|
|
1177
|
-
'wk1' => 'application/vnd.lotus-1-2-3',
|
|
1178
|
-
'wk2' => 'application/vnd.lotus-1-2-3',
|
|
1179
|
-
'wk3' => 'application/vnd.lotus-1-2-3',
|
|
1180
|
-
'wk4' => 'application/vnd.lotus-1-2-3',
|
|
1181
|
-
'wkq' => 'application/x-quattro-pro',
|
|
1182
|
-
'wks' => 'application/vnd.ms-works',
|
|
1183
|
-
'wl' => 'application/vnd.wolfram.wl',
|
|
1184
|
-
'wm' => 'video/x-ms-wm',
|
|
1185
|
-
'wma' => 'audio/x-ms-wma',
|
|
1186
|
-
'wmd' => 'application/x-ms-wmd',
|
|
1187
|
-
'wmf' => 'image/wmf',
|
|
1188
|
-
'wml' => 'text/vnd.wap.wml',
|
|
1189
|
-
'wmlc' => 'application/vnd.wap.wmlc',
|
|
1190
|
-
'wmls' => 'text/vnd.wap.wmlscript',
|
|
1191
|
-
'wmlsc' => 'application/vnd.wap.wmlscriptc',
|
|
1192
|
-
'wmv' => 'video/x-ms-wmv',
|
|
1193
|
-
'wmx' => 'video/x-ms-wmx',
|
|
1194
|
-
'wmz' => 'application/x-ms-wmz',
|
|
1195
|
-
'woff' => 'font/woff',
|
|
1196
|
-
'woff2' => 'font/woff2',
|
|
1197
|
-
'wp' => 'application/vnd.wordperfect',
|
|
1198
|
-
'wp5' => 'application/vnd.wordperfect',
|
|
1199
|
-
'wp6' => 'application/vnd.wordperfect',
|
|
1200
|
-
'wp61' => 'application/vnd.wordperfect',
|
|
1201
|
-
'wpd' => 'application/vnd.wordperfect',
|
|
1202
|
-
'wpl' => 'application/vnd.ms-wpl',
|
|
1203
|
-
'wps' => 'application/vnd.ms-works',
|
|
1204
|
-
'wpt' => 'application/vnd.wordperfect',
|
|
1205
|
-
'wq1' => 'application/x-quattro-pro',
|
|
1206
|
-
'wq2' => 'application/x-quattro-pro',
|
|
1207
|
-
'wqd' => 'application/vnd.wqd',
|
|
1208
|
-
'wri' => 'application/x-mswrite',
|
|
1209
|
-
'wrl' => 'model/vrml',
|
|
1210
|
-
'wsdd' => 'text/plain',
|
|
1211
|
-
'wsdl' => 'application/wsdl+xml',
|
|
1212
|
-
'wspolicy' => 'application/wspolicy+xml',
|
|
1213
|
-
'wtb' => 'application/vnd.webturbo',
|
|
1214
|
-
'wvx' => 'video/x-ms-wvx',
|
|
1215
|
-
'x32' => 'application/x-authorware-bin',
|
|
1216
|
-
'x3d' => 'application/vnd.hzn-3d-crossword',
|
|
1217
|
-
'x3f' => 'image/x-raw-sigma',
|
|
1218
|
-
'xap' => 'application/x-silverlight-app',
|
|
1219
|
-
'xar' => 'application/vnd.xara',
|
|
1220
|
-
'xargs' => 'text/plain',
|
|
1221
|
-
'xbap' => 'application/x-ms-xbap',
|
|
1222
|
-
'xbd' => 'application/vnd.fujixerox.docuworks.binder',
|
|
1223
|
-
'xbm' => 'image/x-xbitmap',
|
|
1224
|
-
'xcat' => 'text/plain',
|
|
1225
|
-
'xcf' => 'image/x-xcf',
|
|
1226
|
-
'xconf' => 'text/x-config',
|
|
1227
|
-
'xdm' => 'application/vnd.syncml.dm+xml',
|
|
1228
|
-
'xdp' => 'application/vnd.adobe.xdp+xml',
|
|
1229
|
-
'xdw' => 'application/vnd.fujixerox.docuworks',
|
|
1230
|
-
'xegrm' => 'text/plain',
|
|
1231
|
-
'xenc' => 'application/xenc+xml',
|
|
1232
|
-
'xer' => 'application/patch-ops-error+xml',
|
|
1233
|
-
'xfdf' => 'application/vnd.adobe.xfdf',
|
|
1234
|
-
'xfdl' => 'application/vnd.xfdl',
|
|
1235
|
-
'xgrm' => 'text/plain',
|
|
1236
|
-
'xht' => 'application/xhtml+xml',
|
|
1237
|
-
'xhtml' => 'application/xhtml+xml',
|
|
1238
|
-
'xhtml2' => 'application/xhtml+xml',
|
|
1239
|
-
'xhvml' => 'application/xv+xml',
|
|
1240
|
-
'xif' => 'image/vnd.xiff',
|
|
1241
|
-
'xla' => 'application/vnd.ms-excel',
|
|
1242
|
-
'xlam' => 'application/vnd.ms-excel.addin.macroenabled.12',
|
|
1243
|
-
'xlc' => 'application/vnd.ms-excel',
|
|
1244
|
-
'xld' => 'application/vnd.ms-excel',
|
|
1245
|
-
'xlex' => 'text/plain',
|
|
1246
|
-
'xlf' => 'application/x-xliff+xml',
|
|
1247
|
-
'xliff' => 'application/x-xliff+xml',
|
|
1248
|
-
'xll' => 'application/vnd.ms-excel',
|
|
1249
|
-
'xlm' => 'application/vnd.ms-excel',
|
|
1250
|
-
'xlog' => 'text/plain',
|
|
1251
|
-
'xlr' => 'application/x-tika-msworks-spreadsheet',
|
|
1252
|
-
'xls' => 'application/vnd.ms-excel',
|
|
1253
|
-
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
|
|
1254
|
-
'xlsm' => 'application/vnd.ms-excel.sheet.macroenabled.12',
|
|
1255
|
-
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
1256
|
-
'xlt' => 'application/vnd.ms-excel',
|
|
1257
|
-
'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
|
|
1258
|
-
'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
|
|
1259
|
-
'xlw' => 'application/vnd.ms-excel',
|
|
1260
|
-
'xlz' => 'application/x-xliff+zip',
|
|
1261
|
-
'xmap' => 'text/plain',
|
|
1262
|
-
'xmind' => 'application/x-xmind',
|
|
1263
|
-
'xml' => 'application/xml',
|
|
1264
|
-
'xmp' => 'application/rdf+xml',
|
|
1265
|
-
'xo' => 'application/vnd.olpc-sugar',
|
|
1266
|
-
'xop' => 'application/xop+xml',
|
|
1267
|
-
'xpi' => 'application/x-xpinstall',
|
|
1268
|
-
'xpm' => 'image/x-xpixmap',
|
|
1269
|
-
'xport' => 'application/x-sas-xport',
|
|
1270
|
-
'xpr' => 'application/vnd.is-xpr',
|
|
1271
|
-
'xps' => 'application/vnd.ms-xpsdocument',
|
|
1272
|
-
'xpt' => 'application/x-sas-xport',
|
|
1273
|
-
'xpw' => 'application/vnd.intercon.formnet',
|
|
1274
|
-
'xpx' => 'application/vnd.intercon.formnet',
|
|
1275
|
-
'xq' => 'application/xquery',
|
|
1276
|
-
'xquery' => 'application/xquery',
|
|
1277
|
-
'xroles' => 'text/plain',
|
|
1278
|
-
'xsamples' => 'text/plain',
|
|
1279
|
-
'xsd' => 'application/xml',
|
|
1280
|
-
'xsl' => 'application/xml',
|
|
1281
|
-
'xslfo' => 'application/xslfo+xml',
|
|
1282
|
-
'xslt' => 'application/xslt+xml',
|
|
1283
|
-
'xsm' => 'application/vnd.syncml+xml',
|
|
1284
|
-
'xsp' => 'text/plain',
|
|
1285
|
-
'xspf' => 'application/xspf+xml',
|
|
1286
|
-
'xtest' => 'text/plain',
|
|
1287
|
-
'xul' => 'application/vnd.mozilla.xul+xml',
|
|
1288
|
-
'xvm' => 'application/xv+xml',
|
|
1289
|
-
'xvml' => 'application/xv+xml',
|
|
1290
|
-
'xwd' => 'image/x-xwindowdump',
|
|
1291
|
-
'xweb' => 'text/plain',
|
|
1292
|
-
'xwelcome' => 'text/plain',
|
|
1293
|
-
'xyz' => 'chemical/x-xyz',
|
|
1294
|
-
'xz' => 'application/x-xz',
|
|
1295
|
-
'y' => 'text/x-yacc',
|
|
1296
|
-
'yaml' => 'text/x-yaml',
|
|
1297
|
-
'yml' => 'text/x-yaml',
|
|
1298
|
-
'z' => 'application/x-compress',
|
|
1299
|
-
'zaz' => 'application/vnd.zzazz.deck+xml',
|
|
1300
|
-
'zip' => 'application/zip',
|
|
1301
|
-
'zipx' => 'application/zip',
|
|
1302
|
-
'zir' => 'application/vnd.zul',
|
|
1303
|
-
'zirz' => 'application/vnd.zul',
|
|
1304
|
-
'zmm' => 'application/vnd.handheld-entertainment+xml',
|
|
1305
|
-
'zoo' => 'application/x-zoo',
|
|
1306
|
-
'zst' => 'application/zstd',
|
|
1307
|
-
}
|
|
1308
|
-
# @private
|
|
1309
|
-
# :nodoc:
|
|
1310
|
-
TYPE_EXTS = {
|
|
1311
|
-
'application/andrew-inset' => %w(ez),
|
|
1312
|
-
'application/applixware' => %w(aw),
|
|
1313
|
-
'application/atom+xml' => %w(atom),
|
|
1314
|
-
'application/atomcat+xml' => %w(atomcat),
|
|
1315
|
-
'application/atomsvc+xml' => %w(atomsvc),
|
|
1316
|
-
'application/bizagi-modeler' => %w(bpm), # BizAgi Process Modeler
|
|
1317
|
-
'application/cbor' => %w(cbor), # Concise Binary Object Representation container
|
|
1318
|
-
'application/ccxml+xml' => %w(ccxml),
|
|
1319
|
-
'application/coreldraw' => %w(cdr), # des: CorelDraw X4 and newer
|
|
1320
|
-
'application/cu-seeme' => %w(cu),
|
|
1321
|
-
'application/dash+xml' => %w(mpd),
|
|
1322
|
-
'application/davmount+xml' => %w(davmount),
|
|
1323
|
-
'application/dif+xml' => %w(dif),
|
|
1324
|
-
'application/dita+xml;format=map' => %w(ditamap), # DITA Map
|
|
1325
|
-
'application/dita+xml;format=topic' => %w(dita), # DITA Topic
|
|
1326
|
-
'application/dita+xml;format=val' => %w(ditaval), # DITA Conditional Processing Profile
|
|
1327
|
-
'application/ecmascript' => %w(ecma),
|
|
1328
|
-
'application/emma+xml' => %w(emma),
|
|
1329
|
-
'application/envi.hdr' => %w(hdr),
|
|
1330
|
-
'application/epub+zip' => %w(epub), # Electronic Publication
|
|
1331
|
-
'application/fits' => %w(fits fit fts), # Flexible Image Transport System
|
|
1332
|
-
'application/font-tdpfr' => %w(pfr),
|
|
1333
|
-
'application/gzip' => %w(gz tgz), # Gzip Compressed Archive
|
|
1334
|
-
'application/hwp+zip' => %w(hwpx), # Hangul Word Processor File, zip based
|
|
1335
|
-
'application/hyperstudio' => %w(stk),
|
|
1336
|
-
'application/illustrator' => %w(ai), # Adobe Illustrator Artwork
|
|
1337
|
-
'application/java-archive' => %w(jar), # Java Archive
|
|
1338
|
-
'application/java-serialized-object' => %w(ser),
|
|
1339
|
-
'application/java-vm' => %w(class), # Java Class File
|
|
1340
|
-
'application/json' => %w(json),
|
|
1341
|
-
'application/lost+xml' => %w(lostxml),
|
|
1342
|
-
'application/mac-binhex40' => %w(hqx),
|
|
1343
|
-
'application/mac-compactpro' => %w(cpt),
|
|
1344
|
-
'application/manifest+json' => %w(webmanifest), # Web Application Manifest file
|
|
1345
|
-
'application/marc' => %w(mrc),
|
|
1346
|
-
'application/mathematica' => %w(ma nb mb), # Wolfram Mathematica
|
|
1347
|
-
'application/mathml+xml' => %w(mathml),
|
|
1348
|
-
'application/mbox' => %w(mbox),
|
|
1349
|
-
'application/mediaservercontrol+xml' => %w(mscml),
|
|
1350
|
-
'application/mp4' => %w(mp4s), # MP4 container format
|
|
1351
|
-
'application/msword' => %w(doc dot), # Microsoft Word Document
|
|
1352
|
-
'application/mxf' => %w(mxf),
|
|
1353
|
-
'application/octet-stream' => %w(bin dms lha lrf lzh so dist distz pkg bpk dump elc deploy),
|
|
1354
|
-
'application/oda' => %w(oda),
|
|
1355
|
-
'application/oebps-package+xml' => %w(opf),
|
|
1356
|
-
'application/ogg' => %w(ogx),
|
|
1357
|
-
'application/onenote' => %w(onetmp),
|
|
1358
|
-
'application/onenote; format=package' => %w(onepkg), # OneNote Package
|
|
1359
|
-
'application/onenote;format=one' => %w(one),
|
|
1360
|
-
'application/onenote;format=onetoc2' => %w(onetoc onetoc2), # OneNote Table of Contents
|
|
1361
|
-
'application/patch-ops-error+xml' => %w(xer),
|
|
1362
|
-
'application/pdf' => %w(pdf), # Portable Document Format
|
|
1363
|
-
'application/pgp-encrypted' => %w(pgp gpg),
|
|
1364
|
-
'application/pgp-signature' => %w(asc sig),
|
|
1365
|
-
'application/pics-rules' => %w(prf),
|
|
1366
|
-
'application/pkcs10' => %w(p10),
|
|
1367
|
-
'application/pkcs7-mime' => %w(p7m p7c),
|
|
1368
|
-
'application/pkcs7-signature' => %w(p7s),
|
|
1369
|
-
'application/pkix-cert' => %w(cer),
|
|
1370
|
-
'application/pkix-crl' => %w(crl),
|
|
1371
|
-
'application/pkix-pkipath' => %w(pkipath),
|
|
1372
|
-
'application/pkixcmp' => %w(pki),
|
|
1373
|
-
'application/pls+xml' => %w(pls),
|
|
1374
|
-
'application/postscript' => %w(ps eps epsf epsi), # PostScript
|
|
1375
|
-
'application/prs.cww' => %w(cww),
|
|
1376
|
-
'application/rdf+xml' => %w(rdf owl xmp), # XML syntax for RDF graphs
|
|
1377
|
-
'application/reginfo+xml' => %w(rif),
|
|
1378
|
-
'application/relax-ng-compact-syntax' => %w(rnc),
|
|
1379
|
-
'application/resource-lists+xml' => %w(rl),
|
|
1380
|
-
'application/resource-lists-diff+xml' => %w(rld),
|
|
1381
|
-
'application/rls-services+xml' => %w(rs),
|
|
1382
|
-
'application/rsd+xml' => %w(rsd),
|
|
1383
|
-
'application/rss+xml' => %w(rss),
|
|
1384
|
-
'application/rtf' => %w(rtf), # Rich Text Format File
|
|
1385
|
-
'application/sbml+xml' => %w(sbml),
|
|
1386
|
-
'application/scvp-cv-request' => %w(scq),
|
|
1387
|
-
'application/scvp-cv-response' => %w(scs),
|
|
1388
|
-
'application/scvp-vp-request' => %w(spq),
|
|
1389
|
-
'application/scvp-vp-response' => %w(spp),
|
|
1390
|
-
'application/sdp' => %w(sdp),
|
|
1391
|
-
'application/sereal' => %w(srl), # Sereal binary serialization format
|
|
1392
|
-
'application/set-payment-initiation' => %w(setpay),
|
|
1393
|
-
'application/set-registration-initiation' => %w(setreg),
|
|
1394
|
-
'application/shf+xml' => %w(shf),
|
|
1395
|
-
'application/sldworks' => %w(sldprt sldasm slddrw), # SolidWorks CAD program
|
|
1396
|
-
'application/smil+xml' => %w(smi smil sml), # SMIL Multimedia
|
|
1397
|
-
'application/sparql-query' => %w(rq),
|
|
1398
|
-
'application/sparql-results+xml' => %w(srx),
|
|
1399
|
-
'application/srgs' => %w(gram),
|
|
1400
|
-
'application/srgs+xml' => %w(grxml),
|
|
1401
|
-
'application/ssml+xml' => %w(ssml),
|
|
1402
|
-
'application/timestamped-data' => %w(tsd),
|
|
1403
|
-
'application/ttml+xml' => %w(ttml),
|
|
1404
|
-
'application/vnd.3gpp.pic-bw-large' => %w(plb),
|
|
1405
|
-
'application/vnd.3gpp.pic-bw-small' => %w(psb),
|
|
1406
|
-
'application/vnd.3gpp.pic-bw-var' => %w(pvb),
|
|
1407
|
-
'application/vnd.3gpp2.tcap' => %w(tcap),
|
|
1408
|
-
'application/vnd.3m.post-it-notes' => %w(pwn),
|
|
1409
|
-
'application/vnd.accpac.simply.aso' => %w(aso),
|
|
1410
|
-
'application/vnd.accpac.simply.imp' => %w(imp),
|
|
1411
|
-
'application/vnd.acucobol' => %w(acu),
|
|
1412
|
-
'application/vnd.acucorp' => %w(atc acutc),
|
|
1413
|
-
'application/vnd.adobe.aftereffects.project' => %w(aep),
|
|
1414
|
-
'application/vnd.adobe.aftereffects.template' => %w(aet),
|
|
1415
|
-
'application/vnd.adobe.air-application-installer-package+zip' => %w(air),
|
|
1416
|
-
'application/vnd.adobe.indesign-idml-package' => %w(idml), # IDML
|
|
1417
|
-
'application/vnd.adobe.xdp+xml' => %w(xdp),
|
|
1418
|
-
'application/vnd.adobe.xfdf' => %w(xfdf),
|
|
1419
|
-
'application/vnd.airzip.filesecure.azf' => %w(azf),
|
|
1420
|
-
'application/vnd.airzip.filesecure.azs' => %w(azs),
|
|
1421
|
-
'application/vnd.amazon.ebook' => %w(azw),
|
|
1422
|
-
'application/vnd.americandynamics.acc' => %w(acc),
|
|
1423
|
-
'application/vnd.amiga.ami' => %w(ami),
|
|
1424
|
-
'application/vnd.android.package-archive' => %w(apk),
|
|
1425
|
-
'application/vnd.anser-web-certificate-issue-initiation' => %w(cii),
|
|
1426
|
-
'application/vnd.anser-web-funds-transfer-initiation' => %w(fti),
|
|
1427
|
-
'application/vnd.antix.game-component' => %w(atx),
|
|
1428
|
-
'application/vnd.apple.installer+xml' => %w(mpkg),
|
|
1429
|
-
'application/vnd.apple.keynote' => %w(key),
|
|
1430
|
-
'application/vnd.apple.mpegurl' => %w(m3u8),
|
|
1431
|
-
'application/vnd.apple.numbers' => %w(numbers),
|
|
1432
|
-
'application/vnd.apple.pages' => %w(pages),
|
|
1433
|
-
'application/vnd.arastra.swi' => %w(swi),
|
|
1434
|
-
'application/vnd.blueice.multipass' => %w(mpm),
|
|
1435
|
-
'application/vnd.bmi' => %w(bmi),
|
|
1436
|
-
'application/vnd.businessobjects' => %w(rep),
|
|
1437
|
-
'application/vnd.chemdraw+xml' => %w(cdxml),
|
|
1438
|
-
'application/vnd.chipnuts.karaoke-mmd' => %w(mmd),
|
|
1439
|
-
'application/vnd.cinderella' => %w(cdy),
|
|
1440
|
-
'application/vnd.claymore' => %w(cla),
|
|
1441
|
-
'application/vnd.clonk.c4group' => %w(c4g c4d c4f c4p c4u),
|
|
1442
|
-
'application/vnd.commonspace' => %w(csp),
|
|
1443
|
-
'application/vnd.contact.cmsg' => %w(cdbcmsg),
|
|
1444
|
-
'application/vnd.cosmocaller' => %w(cmc),
|
|
1445
|
-
'application/vnd.crick.clicker' => %w(clkx),
|
|
1446
|
-
'application/vnd.crick.clicker.keyboard' => %w(clkk),
|
|
1447
|
-
'application/vnd.crick.clicker.palette' => %w(clkp),
|
|
1448
|
-
'application/vnd.crick.clicker.template' => %w(clkt),
|
|
1449
|
-
'application/vnd.crick.clicker.wordbank' => %w(clkw),
|
|
1450
|
-
'application/vnd.criticaltools.wbs+xml' => %w(wbs),
|
|
1451
|
-
'application/vnd.ctc-posml' => %w(pml),
|
|
1452
|
-
'application/vnd.cups-ppd' => %w(ppd),
|
|
1453
|
-
'application/vnd.curl.car' => %w(car),
|
|
1454
|
-
'application/vnd.curl.pcurl' => %w(pcurl),
|
|
1455
|
-
'application/vnd.data-vision.rdz' => %w(rdz),
|
|
1456
|
-
'application/vnd.denovo.fcselayout-link' => %w(fe_launch),
|
|
1457
|
-
'application/vnd.dna' => %w(dna),
|
|
1458
|
-
'application/vnd.dolby.mlp' => %w(mlp),
|
|
1459
|
-
'application/vnd.dpgraph' => %w(dpg),
|
|
1460
|
-
'application/vnd.dreamfactory' => %w(dfac),
|
|
1461
|
-
'application/vnd.dynageo' => %w(geo),
|
|
1462
|
-
'application/vnd.ecowin.chart' => %w(mag),
|
|
1463
|
-
'application/vnd.enliven' => %w(nml),
|
|
1464
|
-
'application/vnd.epson.esf' => %w(esf),
|
|
1465
|
-
'application/vnd.epson.msf' => %w(msf),
|
|
1466
|
-
'application/vnd.epson.quickanime' => %w(qam),
|
|
1467
|
-
'application/vnd.epson.salt' => %w(slt),
|
|
1468
|
-
'application/vnd.epson.ssf' => %w(ssf),
|
|
1469
|
-
'application/vnd.eszigno3+xml' => %w(es3 et3),
|
|
1470
|
-
'application/vnd.etsi.asic-e+zip' => %w(asice), # Extended Associated Signature Container
|
|
1471
|
-
'application/vnd.etsi.asic-s+zip' => %w(asics), # Simple Associated Signature Container
|
|
1472
|
-
'application/vnd.ezpix-album' => %w(ez2),
|
|
1473
|
-
'application/vnd.ezpix-package' => %w(ez3),
|
|
1474
|
-
'application/vnd.fdf' => %w(fdf), # Forms Data Format
|
|
1475
|
-
'application/vnd.fdsn.mseed' => %w(mseed),
|
|
1476
|
-
'application/vnd.fdsn.seed' => %w(seed dataless),
|
|
1477
|
-
'application/vnd.flographit' => %w(gph),
|
|
1478
|
-
'application/vnd.fluxtime.clip' => %w(ftc),
|
|
1479
|
-
'application/vnd.framemaker' => %w(fm frame maker book),
|
|
1480
|
-
'application/vnd.frogans.fnc' => %w(fnc),
|
|
1481
|
-
'application/vnd.frogans.ltf' => %w(ltf),
|
|
1482
|
-
'application/vnd.fsc.weblaunch' => %w(fsc),
|
|
1483
|
-
'application/vnd.fujitsu.oasys' => %w(oas),
|
|
1484
|
-
'application/vnd.fujitsu.oasys2' => %w(oa2),
|
|
1485
|
-
'application/vnd.fujitsu.oasys3' => %w(oa3),
|
|
1486
|
-
'application/vnd.fujitsu.oasysgp' => %w(fg5),
|
|
1487
|
-
'application/vnd.fujitsu.oasysprs' => %w(bh2),
|
|
1488
|
-
'application/vnd.fujixerox.ddd' => %w(ddd),
|
|
1489
|
-
'application/vnd.fujixerox.docuworks' => %w(xdw),
|
|
1490
|
-
'application/vnd.fujixerox.docuworks.binder' => %w(xbd),
|
|
1491
|
-
'application/vnd.fuzzysheet' => %w(fzs),
|
|
1492
|
-
'application/vnd.genomatix.tuxedo' => %w(txd),
|
|
1493
|
-
'application/vnd.geogebra.file' => %w(ggb),
|
|
1494
|
-
'application/vnd.geogebra.tool' => %w(ggt),
|
|
1495
|
-
'application/vnd.geometry-explorer' => %w(gex gre),
|
|
1496
|
-
'application/vnd.gmx' => %w(gmx),
|
|
1497
|
-
'application/vnd.google-earth.kml+xml' => %w(kml), # Keyhole Markup Language
|
|
1498
|
-
'application/vnd.google-earth.kmz' => %w(kmz),
|
|
1499
|
-
'application/vnd.grafeq' => %w(gqf gqs),
|
|
1500
|
-
'application/vnd.groove-account' => %w(gac),
|
|
1501
|
-
'application/vnd.groove-help' => %w(ghf),
|
|
1502
|
-
'application/vnd.groove-identity-message' => %w(gim),
|
|
1503
|
-
'application/vnd.groove-injector' => %w(grv),
|
|
1504
|
-
'application/vnd.groove-tool-message' => %w(gtm),
|
|
1505
|
-
'application/vnd.groove-tool-template' => %w(tpl),
|
|
1506
|
-
'application/vnd.groove-vcard' => %w(vcg),
|
|
1507
|
-
'application/vnd.handheld-entertainment+xml' => %w(zmm),
|
|
1508
|
-
'application/vnd.hbci' => %w(hbci),
|
|
1509
|
-
'application/vnd.hhe.lesson-player' => %w(les),
|
|
1510
|
-
'application/vnd.hp-hpgl' => %w(hpgl),
|
|
1511
|
-
'application/vnd.hp-hpid' => %w(hpid),
|
|
1512
|
-
'application/vnd.hp-hps' => %w(hps),
|
|
1513
|
-
'application/vnd.hp-jlyt' => %w(jlt),
|
|
1514
|
-
'application/vnd.hp-pcl' => %w(pcl),
|
|
1515
|
-
'application/vnd.hp-pclxl' => %w(pclxl),
|
|
1516
|
-
'application/vnd.hydrostatix.sof-data' => %w(sfd-hdstx),
|
|
1517
|
-
'application/vnd.hzn-3d-crossword' => %w(x3d),
|
|
1518
|
-
'application/vnd.ibm.minipay' => %w(mpy),
|
|
1519
|
-
'application/vnd.ibm.modcap' => %w(afp listafp list3820),
|
|
1520
|
-
'application/vnd.ibm.rights-management' => %w(irm),
|
|
1521
|
-
'application/vnd.ibm.secure-container' => %w(sc),
|
|
1522
|
-
'application/vnd.iccprofile' => %w(icc icm),
|
|
1523
|
-
'application/vnd.igloader' => %w(igl),
|
|
1524
|
-
'application/vnd.immervision-ivp' => %w(ivp),
|
|
1525
|
-
'application/vnd.immervision-ivu' => %w(ivu),
|
|
1526
|
-
'application/vnd.intercon.formnet' => %w(xpw xpx),
|
|
1527
|
-
'application/vnd.intu.qbo' => %w(qbo),
|
|
1528
|
-
'application/vnd.intu.qfx' => %w(qfx),
|
|
1529
|
-
'application/vnd.iptc.g2.newsmessage+xml' => %w(nar), # XML syntax for IPTC NewsMessages
|
|
1530
|
-
'application/vnd.ipunplugged.rcprofile' => %w(rcprofile),
|
|
1531
|
-
'application/vnd.irepository.package+xml' => %w(irp),
|
|
1532
|
-
'application/vnd.is-xpr' => %w(xpr),
|
|
1533
|
-
'application/vnd.isac.fcs' => %w(fcs), # Flow Cytometry Standard File
|
|
1534
|
-
'application/vnd.jam' => %w(jam),
|
|
1535
|
-
'application/vnd.java.hprof ' => %w(hprof), # Java hprof text file
|
|
1536
|
-
'application/vnd.java.hprof.text' => %w(hprof.txt), # Java hprof text file
|
|
1537
|
-
'application/vnd.jcp.javame.midlet-rms' => %w(rms),
|
|
1538
|
-
'application/vnd.jisp' => %w(jisp),
|
|
1539
|
-
'application/vnd.joost.joda-archive' => %w(joda),
|
|
1540
|
-
'application/vnd.kahootz' => %w(ktz ktr),
|
|
1541
|
-
'application/vnd.kde.karbon' => %w(karbon),
|
|
1542
|
-
'application/vnd.kde.kchart' => %w(chrt), # KChart File
|
|
1543
|
-
'application/vnd.kde.kformula' => %w(kfo),
|
|
1544
|
-
'application/vnd.kde.kivio' => %w(flw),
|
|
1545
|
-
'application/vnd.kde.kontour' => %w(kon),
|
|
1546
|
-
'application/vnd.kde.kpresenter' => %w(kpr kpt), # KPresenter File
|
|
1547
|
-
'application/vnd.kde.kspread' => %w(ksp), # KSpread File
|
|
1548
|
-
'application/vnd.kde.kword' => %w(kwd kwt), # KWord File
|
|
1549
|
-
'application/vnd.kenameaapp' => %w(htke),
|
|
1550
|
-
'application/vnd.kidspiration' => %w(kia),
|
|
1551
|
-
'application/vnd.kinar' => %w(kne knp),
|
|
1552
|
-
'application/vnd.koan' => %w(skp skd skt skm), # SSEYO Koan File
|
|
1553
|
-
'application/vnd.kodak-descriptor' => %w(sse),
|
|
1554
|
-
'application/vnd.llamagraphics.life-balance.desktop' => %w(lbd),
|
|
1555
|
-
'application/vnd.llamagraphics.life-balance.exchange+xml' => %w(lbe),
|
|
1556
|
-
'application/vnd.lotus-1-2-3' => %w(wk1 wk2 wk3 wk4 123), # Lotus 1-2-3
|
|
1557
|
-
'application/vnd.lotus-1-2-3;version=2' => %w(wk1 wk2), # Lotus 1-2-3, version 2
|
|
1558
|
-
'application/vnd.lotus-1-2-3;version=3' => %w(wk3), # Lotus 1-2-3, version 3
|
|
1559
|
-
'application/vnd.lotus-1-2-3;version=4' => %w(wk4), # Lotus 1-2-3, version 4-5
|
|
1560
|
-
'application/vnd.lotus-1-2-3;version=97+9.x' => %w(123), # Lotus 1-2-3, version 97/9.x
|
|
1561
|
-
'application/vnd.lotus-approach' => %w(apr),
|
|
1562
|
-
'application/vnd.lotus-freelance' => %w(pre),
|
|
1563
|
-
'application/vnd.lotus-notes' => %w(nsf),
|
|
1564
|
-
'application/vnd.lotus-organizer' => %w(org),
|
|
1565
|
-
'application/vnd.lotus-wordpro' => %w(lwp),
|
|
1566
|
-
'application/vnd.macports.portpkg' => %w(portpkg),
|
|
1567
|
-
'application/vnd.mcd' => %w(mcd),
|
|
1568
|
-
'application/vnd.medcalcdata' => %w(mc1),
|
|
1569
|
-
'application/vnd.mediastation.cdkey' => %w(cdkey),
|
|
1570
|
-
'application/vnd.mfer' => %w(mwf),
|
|
1571
|
-
'application/vnd.mfmp' => %w(mfm),
|
|
1572
|
-
'application/vnd.micrografx.flo' => %w(flo),
|
|
1573
|
-
'application/vnd.micrografx.igx' => %w(igx),
|
|
1574
|
-
'application/vnd.mif' => %w(mif), # FrameMaker Interchange Format
|
|
1575
|
-
'application/vnd.mindjet.mindmanager' => %w(mmp mmap mmpt mmat mmmp mmas), # MindManager
|
|
1576
|
-
'application/vnd.mobius.daf' => %w(daf),
|
|
1577
|
-
'application/vnd.mobius.dis' => %w(dis),
|
|
1578
|
-
'application/vnd.mobius.mbk' => %w(mbk),
|
|
1579
|
-
'application/vnd.mobius.mqy' => %w(mqy),
|
|
1580
|
-
'application/vnd.mobius.msl' => %w(msl),
|
|
1581
|
-
'application/vnd.mobius.plc' => %w(plc),
|
|
1582
|
-
'application/vnd.mobius.txf' => %w(txf),
|
|
1583
|
-
'application/vnd.mophun.application' => %w(mpn),
|
|
1584
|
-
'application/vnd.mophun.certificate' => %w(mpc),
|
|
1585
|
-
'application/vnd.mozilla.xul+xml' => %w(xul),
|
|
1586
|
-
'application/vnd.ms-artgalry' => %w(cil),
|
|
1587
|
-
'application/vnd.ms-cab-compressed' => %w(cab),
|
|
1588
|
-
'application/vnd.ms-excel' => %w(xls xlm xla xlc xlt xlw xll xld), # Microsoft Excel Spreadsheet
|
|
1589
|
-
'application/vnd.ms-excel.addin.macroenabled.12' => %w(xlam), # Office Open XML Workbook Add-in (macro-enabled)
|
|
1590
|
-
'application/vnd.ms-excel.sheet.binary.macroenabled.12' => %w(xlsb), # Microsoft Excel 2007 Binary Spreadsheet
|
|
1591
|
-
'application/vnd.ms-excel.sheet.macroenabled.12' => %w(xlsm), # Office Open XML Workbook (macro-enabled)
|
|
1592
|
-
'application/vnd.ms-excel.template.macroenabled.12' => %w(xltm), # Office Open XML Workbook Template (macro-enabled)
|
|
1593
|
-
'application/vnd.ms-fontobject' => %w(eot),
|
|
1594
|
-
'application/vnd.ms-htmlhelp' => %w(chm),
|
|
1595
|
-
'application/vnd.ms-ims' => %w(ims),
|
|
1596
|
-
'application/vnd.ms-lrm' => %w(lrm),
|
|
1597
|
-
'application/vnd.ms-outlook' => %w(msg), # Microsoft Outlook Message
|
|
1598
|
-
'application/vnd.ms-outlook-pst' => %w(pst ost), # Outlook Personal Folders File Format
|
|
1599
|
-
'application/vnd.ms-package.3dmanufacturing-3dmodel+xml' => %w(3mf), # 3D manufacturing format
|
|
1600
|
-
'application/vnd.ms-pki.seccat' => %w(cat),
|
|
1601
|
-
'application/vnd.ms-powerpoint' => %w(ppt ppz pps pot ppa), # Microsoft Powerpoint Presentation
|
|
1602
|
-
'application/vnd.ms-powerpoint.addin.macroenabled.12' => %w(ppam), # Office Open XML Presentation Add-in (macro-enabled)
|
|
1603
|
-
'application/vnd.ms-powerpoint.presentation.macroenabled.12' => %w(pptm), # Office Open XML Presentation (macro-enabled)
|
|
1604
|
-
'application/vnd.ms-powerpoint.slide.macroenabled.12' => %w(sldm),
|
|
1605
|
-
'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => %w(ppsm), # Office Open XML Presentation Slideshow (macro-enabled)
|
|
1606
|
-
'application/vnd.ms-powerpoint.template.macroenabled.12' => %w(potm),
|
|
1607
|
-
'application/vnd.ms-project' => %w(mpp mpt),
|
|
1608
|
-
'application/vnd.ms-visio.drawing' => %w(vsdx), # Office Open XML Visio Drawing (macro-free)
|
|
1609
|
-
'application/vnd.ms-visio.drawing.macroEnabled.12' => %w(vsdm), # Office Open XML Visio Drawing (macro-enabled)
|
|
1610
|
-
'application/vnd.ms-visio.stencil' => %w(vssx), # Office Open XML Visio Stencil (macro-free)
|
|
1611
|
-
'application/vnd.ms-visio.stencil.macroEnabled.12' => %w(vssm), # Office Open XML Visio Stencil (macro-enabled)
|
|
1612
|
-
'application/vnd.ms-visio.template' => %w(vstx), # Office Open XML Visio Template (macro-free)
|
|
1613
|
-
'application/vnd.ms-visio.template.macroEnabled.12' => %w(vstm), # Office Open XML Visio Template (macro-enabled)
|
|
1614
|
-
'application/vnd.ms-word.document.macroenabled.12' => %w(docm), # Office Open XML Document (macro-enabled)
|
|
1615
|
-
'application/vnd.ms-word.template.macroenabled.12' => %w(dotm), # Office Open XML Document Template (macro-enabled)
|
|
1616
|
-
'application/vnd.ms-works' => %w(wps wks wcm wdb),
|
|
1617
|
-
'application/vnd.ms-wpl' => %w(wpl),
|
|
1618
|
-
'application/vnd.ms-xpsdocument' => %w(xps oxps), # Open XML Paper Specification
|
|
1619
|
-
'application/vnd.msa-disk-image' => %w(msa), # Magic Shadow Archiver
|
|
1620
|
-
'application/vnd.mseq' => %w(mseq),
|
|
1621
|
-
'application/vnd.musician' => %w(mus),
|
|
1622
|
-
'application/vnd.muvee.style' => %w(msty),
|
|
1623
|
-
'application/vnd.neurolanguage.nlu' => %w(nlu),
|
|
1624
|
-
'application/vnd.noblenet-directory' => %w(nnd),
|
|
1625
|
-
'application/vnd.noblenet-sealer' => %w(nns),
|
|
1626
|
-
'application/vnd.noblenet-web' => %w(nnw),
|
|
1627
|
-
'application/vnd.nokia.n-gage.data' => %w(ngdat),
|
|
1628
|
-
'application/vnd.nokia.n-gage.symbian.install' => %w(n-gage),
|
|
1629
|
-
'application/vnd.nokia.radio-preset' => %w(rpst),
|
|
1630
|
-
'application/vnd.nokia.radio-presets' => %w(rpss),
|
|
1631
|
-
'application/vnd.novadigm.edm' => %w(edm),
|
|
1632
|
-
'application/vnd.novadigm.edx' => %w(edx),
|
|
1633
|
-
'application/vnd.novadigm.ext' => %w(ext),
|
|
1634
|
-
'application/vnd.oasis.opendocument.base' => %w(odb),
|
|
1635
|
-
'application/vnd.oasis.opendocument.chart' => %w(odc), # OpenDocument v1.0: Chart document
|
|
1636
|
-
'application/vnd.oasis.opendocument.chart-template' => %w(otc), # OpenDocument v1.0: Chart document used as template
|
|
1637
|
-
'application/vnd.oasis.opendocument.flat.presentation' => %w(fodp), # OpenDocument v1.0: Flat Presentation document
|
|
1638
|
-
'application/vnd.oasis.opendocument.flat.spreadsheet' => %w(fods), # OpenDocument v1.0: Flat Spreadsheet document
|
|
1639
|
-
'application/vnd.oasis.opendocument.flat.text' => %w(fodt), # OpenDocument v1.0: Flat Text document
|
|
1640
|
-
'application/vnd.oasis.opendocument.formula' => %w(odf), # OpenDocument v1.0: Formula document
|
|
1641
|
-
'application/vnd.oasis.opendocument.formula-template' => %w(odft), # OpenDocument v1.0: Formula document used as template
|
|
1642
|
-
'application/vnd.oasis.opendocument.graphics' => %w(odg), # OpenDocument v1.0: Graphics document (Drawing)
|
|
1643
|
-
'application/vnd.oasis.opendocument.graphics-template' => %w(otg), # OpenDocument v1.0: Graphics document used as template
|
|
1644
|
-
'application/vnd.oasis.opendocument.image' => %w(odi), # OpenDocument v1.0: Image document
|
|
1645
|
-
'application/vnd.oasis.opendocument.image-template' => %w(oti), # OpenDocument v1.0: Image document used as template
|
|
1646
|
-
'application/vnd.oasis.opendocument.presentation' => %w(odp), # OpenDocument v1.0: Presentation document
|
|
1647
|
-
'application/vnd.oasis.opendocument.presentation-template' => %w(otp), # OpenDocument v1.0: Presentation document used as template
|
|
1648
|
-
'application/vnd.oasis.opendocument.spreadsheet' => %w(ods), # OpenDocument v1.0: Spreadsheet document
|
|
1649
|
-
'application/vnd.oasis.opendocument.spreadsheet-template' => %w(ots), # OpenDocument v1.0: Spreadsheet document used as template
|
|
1650
|
-
'application/vnd.oasis.opendocument.text' => %w(odt), # OpenDocument v1.0: Text document
|
|
1651
|
-
'application/vnd.oasis.opendocument.text-master' => %w(otm), # OpenDocument v1.0: Global Text document
|
|
1652
|
-
'application/vnd.oasis.opendocument.text-template' => %w(ott), # OpenDocument v1.0: Text document used as template
|
|
1653
|
-
'application/vnd.oasis.opendocument.text-web' => %w(oth), # OpenDocument v1.0: Text document used as template for HTML documents
|
|
1654
|
-
'application/vnd.olpc-sugar' => %w(xo),
|
|
1655
|
-
'application/vnd.oma.dd2+xml' => %w(dd2),
|
|
1656
|
-
'application/vnd.openofficeorg.autotext' => %w(bau),
|
|
1657
|
-
'application/vnd.openofficeorg.extension' => %w(oxt),
|
|
1658
|
-
'application/vnd.openxmlformats-officedocument.presentationml.presentation' => %w(pptx thmx), # Office Open XML Presentation
|
|
1659
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slide' => %w(sldx),
|
|
1660
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => %w(ppsx), # Office Open XML Presentation Slideshow
|
|
1661
|
-
'application/vnd.openxmlformats-officedocument.presentationml.template' => %w(potx), # Office Open XML Presentation Template
|
|
1662
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => %w(xlsx), # Office Open XML Workbook
|
|
1663
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => %w(xltx), # Office Open XML Workbook Template
|
|
1664
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => %w(docx), # Office Open XML Document
|
|
1665
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => %w(dotx), # Office Open XML Document Template
|
|
1666
|
-
'application/vnd.osgi.dp' => %w(dp),
|
|
1667
|
-
'application/vnd.palm' => %w(pqa oprc),
|
|
1668
|
-
'application/vnd.pg.format' => %w(str),
|
|
1669
|
-
'application/vnd.pg.osasli' => %w(ei6),
|
|
1670
|
-
'application/vnd.picsel' => %w(efif),
|
|
1671
|
-
'application/vnd.pocketlearn' => %w(plf),
|
|
1672
|
-
'application/vnd.powerbuilder6' => %w(pbd),
|
|
1673
|
-
'application/vnd.previewsystems.box' => %w(box),
|
|
1674
|
-
'application/vnd.proteus.magazine' => %w(mgz),
|
|
1675
|
-
'application/vnd.publishare-delta-tree' => %w(qps),
|
|
1676
|
-
'application/vnd.pvi.ptid1' => %w(ptid),
|
|
1677
|
-
'application/vnd.quark.quarkxpress' => %w(qxd qxt qwd qwt qxl qxb),
|
|
1678
|
-
'application/vnd.recordare.musicxml' => %w(mxl),
|
|
1679
|
-
'application/vnd.recordare.musicxml+xml' => %w(musicxml),
|
|
1680
|
-
'application/vnd.rim.cod' => %w(cod),
|
|
1681
|
-
'application/vnd.rn-realmedia' => %w(rm),
|
|
1682
|
-
'application/vnd.route66.link66+xml' => %w(link66),
|
|
1683
|
-
'application/vnd.seemail' => %w(see),
|
|
1684
|
-
'application/vnd.sema' => %w(sema),
|
|
1685
|
-
'application/vnd.semd' => %w(semd),
|
|
1686
|
-
'application/vnd.semf' => %w(semf),
|
|
1687
|
-
'application/vnd.shana.informed.formdata' => %w(ifm),
|
|
1688
|
-
'application/vnd.shana.informed.formtemplate' => %w(itp),
|
|
1689
|
-
'application/vnd.shana.informed.interchange' => %w(iif),
|
|
1690
|
-
'application/vnd.shana.informed.package' => %w(ipk),
|
|
1691
|
-
'application/vnd.simtech-mindmapper' => %w(twd twds),
|
|
1692
|
-
'application/vnd.smaf' => %w(mmf),
|
|
1693
|
-
'application/vnd.smart.teacher' => %w(teacher),
|
|
1694
|
-
'application/vnd.solent.sdkm+xml' => %w(sdkm sdkd),
|
|
1695
|
-
'application/vnd.spotfire.dxp' => %w(dxp),
|
|
1696
|
-
'application/vnd.spotfire.sfs' => %w(sfs),
|
|
1697
|
-
'application/vnd.stardivision.calc' => %w(sdc),
|
|
1698
|
-
'application/vnd.stardivision.draw' => %w(sda),
|
|
1699
|
-
'application/vnd.stardivision.impress' => %w(sdd),
|
|
1700
|
-
'application/vnd.stardivision.math' => %w(smf),
|
|
1701
|
-
'application/vnd.stardivision.writer' => %w(sdw),
|
|
1702
|
-
'application/vnd.stardivision.writer-global' => %w(sgl),
|
|
1703
|
-
'application/vnd.sun.xml.calc' => %w(sxc),
|
|
1704
|
-
'application/vnd.sun.xml.calc.template' => %w(stc),
|
|
1705
|
-
'application/vnd.sun.xml.draw' => %w(sxd),
|
|
1706
|
-
'application/vnd.sun.xml.draw.template' => %w(std),
|
|
1707
|
-
'application/vnd.sun.xml.impress' => %w(sxi),
|
|
1708
|
-
'application/vnd.sun.xml.impress.template' => %w(sti),
|
|
1709
|
-
'application/vnd.sun.xml.math' => %w(sxm),
|
|
1710
|
-
'application/vnd.sun.xml.writer' => %w(sxw), # OpenOffice v1.0: Writer Document
|
|
1711
|
-
'application/vnd.sun.xml.writer.global' => %w(sxg),
|
|
1712
|
-
'application/vnd.sun.xml.writer.template' => %w(stw),
|
|
1713
|
-
'application/vnd.sus-calendar' => %w(sus susp),
|
|
1714
|
-
'application/vnd.svd' => %w(svd),
|
|
1715
|
-
'application/vnd.symbian.install' => %w(sis sisx),
|
|
1716
|
-
'application/vnd.syncml+xml' => %w(xsm),
|
|
1717
|
-
'application/vnd.syncml.dm+wbxml' => %w(bdm),
|
|
1718
|
-
'application/vnd.syncml.dm+xml' => %w(xdm),
|
|
1719
|
-
'application/vnd.tao.intent-module-archive' => %w(tao),
|
|
1720
|
-
'application/vnd.tcpdump.pcap' => %w(pcap cap dmp), # TCPDump pcap packet capture
|
|
1721
|
-
'application/vnd.tcpdump.pcapng' => %w(pcapng), # TCPDump next gen pcap packet capture
|
|
1722
|
-
'application/vnd.tmobile-livetv' => %w(tmo),
|
|
1723
|
-
'application/vnd.trid.tpt' => %w(tpt),
|
|
1724
|
-
'application/vnd.triscape.mxs' => %w(mxs),
|
|
1725
|
-
'application/vnd.trueapp' => %w(tra),
|
|
1726
|
-
'application/vnd.ufdl' => %w(ufd ufdl),
|
|
1727
|
-
'application/vnd.uiq.theme' => %w(utz),
|
|
1728
|
-
'application/vnd.umajin' => %w(umj),
|
|
1729
|
-
'application/vnd.unity' => %w(unityweb),
|
|
1730
|
-
'application/vnd.uoml+xml' => %w(uoml),
|
|
1731
|
-
'application/vnd.vcx' => %w(vcx),
|
|
1732
|
-
'application/vnd.visio' => %w(vsd vst vss vsw), # Microsoft Visio Diagram
|
|
1733
|
-
'application/vnd.visionary' => %w(vis),
|
|
1734
|
-
'application/vnd.vsf' => %w(vsf),
|
|
1735
|
-
'application/vnd.wap.wbxml' => %w(wbxml),
|
|
1736
|
-
'application/vnd.wap.wmlc' => %w(wmlc), # Compiled WML Document
|
|
1737
|
-
'application/vnd.wap.wmlscriptc' => %w(wmlsc), # Compiled WML Script
|
|
1738
|
-
'application/vnd.webturbo' => %w(wtb),
|
|
1739
|
-
'application/vnd.wolfram.wl' => %w(wl), # Wolfram Language
|
|
1740
|
-
'application/vnd.wordperfect' => %w(wpd wp wp5 wp6 w60 wp61 wpt), # WordPerfect - Corel Word Processing
|
|
1741
|
-
'application/vnd.wqd' => %w(wqd),
|
|
1742
|
-
'application/vnd.wt.stf' => %w(stf),
|
|
1743
|
-
'application/vnd.xara' => %w(xar),
|
|
1744
|
-
'application/vnd.xfdl' => %w(xfdl),
|
|
1745
|
-
'application/vnd.yamaha.hv-dic' => %w(hvd),
|
|
1746
|
-
'application/vnd.yamaha.hv-script' => %w(hvs),
|
|
1747
|
-
'application/vnd.yamaha.hv-voice' => %w(hvp),
|
|
1748
|
-
'application/vnd.yamaha.openscoreformat' => %w(osf),
|
|
1749
|
-
'application/vnd.yamaha.openscoreformat.osfpvg+xml' => %w(osfpvg),
|
|
1750
|
-
'application/vnd.yamaha.smaf-audio' => %w(saf),
|
|
1751
|
-
'application/vnd.yamaha.smaf-phrase' => %w(spf),
|
|
1752
|
-
'application/vnd.yellowriver-custom-menu' => %w(cmp),
|
|
1753
|
-
'application/vnd.zul' => %w(zir zirz),
|
|
1754
|
-
'application/vnd.zzazz.deck+xml' => %w(zaz),
|
|
1755
|
-
'application/voicexml+xml' => %w(vxml),
|
|
1756
|
-
'application/warc' => %w(warc), # WARC
|
|
1757
|
-
'application/warc+gz' => %w(warc.gz), # WARC
|
|
1758
|
-
'application/wasm' => %w(wasm), # Web Assembly
|
|
1759
|
-
'application/winhlp' => %w(hlp),
|
|
1760
|
-
'application/wsdl+xml' => %w(wsdl),
|
|
1761
|
-
'application/wspolicy+xml' => %w(wspolicy),
|
|
1762
|
-
'application/x-7z-compressed' => %w(7z), # 7-zip archive
|
|
1763
|
-
'application/x-abiword' => %w(abw),
|
|
1764
|
-
'application/x-ace-compressed' => %w(ace),
|
|
1765
|
-
'application/x-adobe-indesign' => %w(indd), # Adobe InDesign document
|
|
1766
|
-
'application/x-adobe-indesign-interchange' => %w(inx), # Adobe InDesign Interchange format
|
|
1767
|
-
'application/x-amf' => %w(amf),
|
|
1768
|
-
'application/x-amiga-disk-format' => %w(adf), # Amiga Disk File
|
|
1769
|
-
'application/x-apple-diskimage' => %w(dmg),
|
|
1770
|
-
'application/x-appleworks' => %w(cwk),
|
|
1771
|
-
'application/x-archive' => %w(ar a),
|
|
1772
|
-
'application/x-arj' => %w(arj),
|
|
1773
|
-
'application/x-asprs' => %w(las laz), # ASPRS Lidar Data Exchange Format
|
|
1774
|
-
'application/x-authorware-bin' => %w(aab x32 u32 vox),
|
|
1775
|
-
'application/x-authorware-map' => %w(aam),
|
|
1776
|
-
'application/x-authorware-seg' => %w(aas),
|
|
1777
|
-
'application/x-axcrypt' => %w(axx), # AxCrypt
|
|
1778
|
-
'application/x-bat' => %w(bat cmd), # Windows Batch / Command File
|
|
1779
|
-
'application/x-bcpio' => %w(bcpio),
|
|
1780
|
-
'application/x-bibtex-text-file' => %w(bib bibtex),
|
|
1781
|
-
'application/x-bittorrent' => %w(torrent),
|
|
1782
|
-
'application/x-brotli' => %w(br brotli),
|
|
1783
|
-
'application/x-bzip' => %w(bz tbz),
|
|
1784
|
-
'application/x-bzip2' => %w(bz2 tbz2 boz), # Bzip 2 UNIX Compressed File
|
|
1785
|
-
'application/x-cdf' => %w(cda), # CD Audio
|
|
1786
|
-
'application/x-cdlink' => %w(vcd), # Virtual CD-ROM CD Image File
|
|
1787
|
-
'application/x-chat' => %w(chat),
|
|
1788
|
-
'application/x-chess-pgn' => %w(pgn),
|
|
1789
|
-
'application/x-chrome-package' => %w(crx), # Chrome Extension Package
|
|
1790
|
-
'application/x-compress' => %w(z),
|
|
1791
|
-
'application/x-corelpresentations' => %w(shw),
|
|
1792
|
-
'application/x-cpio' => %w(cpio), # UNIX CPIO Archive
|
|
1793
|
-
'application/x-csh' => %w(csh tcsh),
|
|
1794
|
-
'application/x-dbf' => %w(dbf dbase dbase3),
|
|
1795
|
-
'application/x-debian-package' => %w(deb udeb),
|
|
1796
|
-
'application/x-dex' => %w(dex), # Dalvik Executable Format
|
|
1797
|
-
'application/x-director' => %w(dir dcr dxr cst cct cxt w3d fgd swa), # Shockwave Movie
|
|
1798
|
-
'application/x-doom' => %w(wad),
|
|
1799
|
-
'application/x-dosexec' => %w(exe), # DOS/Windows executable (EXE)
|
|
1800
|
-
'application/x-dtbncx+xml' => %w(ncx),
|
|
1801
|
-
'application/x-dtbook+xml' => %w(dtb),
|
|
1802
|
-
'application/x-dtbresource+xml' => %w(res),
|
|
1803
|
-
'application/x-dvd-ifo' => %w(ifo bup), # DVD information file
|
|
1804
|
-
'application/x-dvi' => %w(dvi), # TeX Device Independent Document
|
|
1805
|
-
'application/x-elc' => %w(elc), # Emacs Lisp bytecode
|
|
1806
|
-
'application/x-endnote-refer' => %w(enw enr),
|
|
1807
|
-
'application/x-endnote-style' => %w(ens),
|
|
1808
|
-
'application/x-erdas-hfa' => %w(hfa),
|
|
1809
|
-
'application/x-esri-layer' => %w(lyr), # ESRI Layer file
|
|
1810
|
-
'application/x-fictionbook+xml' => %w(fb2), # FictionBook document
|
|
1811
|
-
'application/x-filemaker' => %w(fp7), # FileMaker Pro 7
|
|
1812
|
-
'application/x-font-adobe-metric' => %w(afm acfm amfm), # Adobe Font Metric
|
|
1813
|
-
'application/x-font-bdf' => %w(bdf),
|
|
1814
|
-
'application/x-font-ghostscript' => %w(gsf),
|
|
1815
|
-
'application/x-font-linux-psf' => %w(psf),
|
|
1816
|
-
'application/x-font-otf' => %w(otf), # OpenType Font
|
|
1817
|
-
'application/x-font-pcf' => %w(pcf),
|
|
1818
|
-
'application/x-font-printer-metric' => %w(pfm), # Printer Font Metric
|
|
1819
|
-
'application/x-font-snf' => %w(snf),
|
|
1820
|
-
'application/x-font-ttf' => %w(ttf ttc), # TrueType Font
|
|
1821
|
-
'application/x-font-type1' => %w(pfa pfb),
|
|
1822
|
-
'application/x-futuresplash' => %w(spl), # Macromedia FutureSplash File
|
|
1823
|
-
'application/x-geopackage' => %w(gpkg),
|
|
1824
|
-
'application/x-geopackage; version=1.1Or1.0' => %w(gpkg),
|
|
1825
|
-
'application/x-gnucash' => %w(gnucash),
|
|
1826
|
-
'application/x-gnumeric' => %w(gnumeric),
|
|
1827
|
-
'application/x-grib' => %w(grb grb1 grb2), # General Regularly-distributed Information in Binary form
|
|
1828
|
-
'application/x-gtar' => %w(gtar), # GNU tar Compressed File Archive (GNU Tape Archive)
|
|
1829
|
-
'application/x-guitar-pro' => %w(gp4), # Guitar Pro
|
|
1830
|
-
'application/x-hdf' => %w(hdf he5 h5), # Hierarchical Data Format File
|
|
1831
|
-
'application/x-ibooks+zip' => %w(ibooks), # Apple iBooks Author publication format
|
|
1832
|
-
'application/x-internet-archive' => %w(arc), # ARC
|
|
1833
|
-
'application/x-iso9660-image' => %w(iso), # ISO 9660 CD-ROM filesystem data
|
|
1834
|
-
'application/x-itunes-ipa' => %w(ipa), # Apple iOS IPA AppStore file
|
|
1835
|
-
'application/x-java-jnilib' => %w(jnilib), # Java Native Library for OSX
|
|
1836
|
-
'application/x-java-jnlp-file' => %w(jnlp),
|
|
1837
|
-
'application/x-java-keystore' => %w(jks), # Java Keystore
|
|
1838
|
-
'application/x-java-pack200' => %w(pack),
|
|
1839
|
-
'application/x-jeol-jdf' => %w(jdf), # JDF NMR Spectroscopy
|
|
1840
|
-
'application/x-killustrator' => %w(kil), # KIllustrator File
|
|
1841
|
-
'application/x-latex' => %w(latex), # LaTeX Source Document
|
|
1842
|
-
'application/x-lz4' => %w(lz4), # Second match Legacy Frame
|
|
1843
|
-
'application/x-lzip' => %w(lz), # Lzip (LZMA) compressed archive
|
|
1844
|
-
'application/x-lzma' => %w(lzma), # LZMA compressed archive
|
|
1845
|
-
'application/x-matlab-data' => %w(mat),
|
|
1846
|
-
'application/x-memgraph' => %w(memgraph), # Apple Xcode Memgraph
|
|
1847
|
-
'application/x-mobipocket-ebook' => %w(prc mobi), # Mobipocket Ebook
|
|
1848
|
-
'application/x-ms-application' => %w(application),
|
|
1849
|
-
'application/x-ms-asx' => %w(asx), # Windows Media Metafile
|
|
1850
|
-
'application/x-ms-installer' => %w(msi msp mst), # Microsoft Windows Installer
|
|
1851
|
-
'application/x-ms-wmd' => %w(wmd),
|
|
1852
|
-
'application/x-ms-wmz' => %w(wmz),
|
|
1853
|
-
'application/x-ms-xbap' => %w(xbap),
|
|
1854
|
-
'application/x-msaccess' => %w(accdb mdb),
|
|
1855
|
-
'application/x-msbinder' => %w(obd),
|
|
1856
|
-
'application/x-mscardfile' => %w(crd),
|
|
1857
|
-
'application/x-msclip' => %w(clp),
|
|
1858
|
-
'application/x-msdownload' => %w(dll com),
|
|
1859
|
-
'application/x-msmediaview' => %w(mvb m13 m14),
|
|
1860
|
-
'application/x-msmoney' => %w(mny),
|
|
1861
|
-
'application/x-mspublisher' => %w(pub),
|
|
1862
|
-
'application/x-msschedule' => %w(scd),
|
|
1863
|
-
'application/x-msterminal' => %w(trm),
|
|
1864
|
-
'application/x-mswrite' => %w(wri),
|
|
1865
|
-
'application/x-mysql-misam-compressed-index' => %w(myi), # MySQL MISAM Compressed Index
|
|
1866
|
-
'application/x-mysql-misam-data' => %w(myd), # MySQL MISAM Data
|
|
1867
|
-
'application/x-nesrom' => %w(nes), # Nintendo Entertainment System ROM
|
|
1868
|
-
'application/x-netcdf' => %w(nc cdf),
|
|
1869
|
-
'application/x-openscad' => %w(scad),
|
|
1870
|
-
'application/x-parquet' => %w(parquet),
|
|
1871
|
-
'application/x-pkcs12' => %w(p12 pfx),
|
|
1872
|
-
'application/x-pkcs7-certificates' => %w(p7b spc),
|
|
1873
|
-
'application/x-pkcs7-certreqresp' => %w(p7r),
|
|
1874
|
-
'application/x-project' => %w(mpx),
|
|
1875
|
-
'application/x-prt' => %w(prt),
|
|
1876
|
-
'application/x-quattro-pro' => %w(wq1 wq2 wkq qpw wb1 wb2 wb3), # Quattro Pro - Corel Spreadsheet (part of WordPerfect Office suite)
|
|
1877
|
-
'application/x-quattro-pro;version=1+5' => %w(wb1), # Quattro Pro for Windows, version 1, 5
|
|
1878
|
-
'application/x-quattro-pro;version=1-4' => %w(wq1 wkq), # Quattro Pro for DOS, version 1-4
|
|
1879
|
-
'application/x-quattro-pro;version=5' => %w(wq2 wkq), # Quattro Pro for DOS, version 5
|
|
1880
|
-
'application/x-quattro-pro;version=6' => %w(wb2), # Quattro Pro for Windows, version 6
|
|
1881
|
-
'application/x-rar-compressed' => %w(rar), # RAR archive
|
|
1882
|
-
'application/x-roxio-toast' => %w(toast),
|
|
1883
|
-
'application/x-rpm' => %w(rpm), # RedHat Package Manager
|
|
1884
|
-
'application/x-sas' => %w(sas), # SAS Program
|
|
1885
|
-
'application/x-sas-access' => %w(sa7 sas7bacs), # SAS Access Descriptor
|
|
1886
|
-
'application/x-sas-audit' => %w(st7 sas7baud), # SAS Audit
|
|
1887
|
-
'application/x-sas-backup' => %w(sas7bbak), # SAS Backup
|
|
1888
|
-
'application/x-sas-catalog' => %w(sc7 sas7bcat), # SAS Catalog
|
|
1889
|
-
'application/x-sas-data' => %w(sd7 sas7bdat), # SAS Data Set
|
|
1890
|
-
'application/x-sas-data-index' => %w(si7 sas7bndx), # SAS Data Set Index
|
|
1891
|
-
'application/x-sas-data-v6' => %w(sd2), # SAS v6 Data Set
|
|
1892
|
-
'application/x-sas-dmdb' => %w(s7m sas7bdmd), # SAS DMDB Data Mining Database File
|
|
1893
|
-
'application/x-sas-fdb' => %w(sf7 sas7bfdb), # SAS FDB Consolidation Database File
|
|
1894
|
-
'application/x-sas-itemstor' => %w(sr7 sas7bitm), # SAS Item Store (ItemStor) File
|
|
1895
|
-
'application/x-sas-mddb' => %w(sm7 sas7bmdb), # SAS MDDB Multi-Dimensional Database File
|
|
1896
|
-
'application/x-sas-program-data' => %w(ss7 sas7bpgm), # SAS Stored Program (DATA Step)
|
|
1897
|
-
'application/x-sas-putility' => %w(sp7 sas7bput), # SAS Permanent Utility
|
|
1898
|
-
'application/x-sas-transport' => %w(stx), # SAS Transport File
|
|
1899
|
-
'application/x-sas-utility' => %w(su7 sas7butl), # SAS Utility
|
|
1900
|
-
'application/x-sas-view' => %w(sv7 sas7bvew), # SAS Data Set View
|
|
1901
|
-
'application/x-sas-xport' => %w(xpt xport), # SAS XPORT Transfer File
|
|
1902
|
-
'application/x-sfdu' => %w(sfdu), # Standard Formatted Data Units (SFDUs) data
|
|
1903
|
-
'application/x-sh' => %w(sh bash), # UNIX/LINUX Shell Script
|
|
1904
|
-
'application/x-shapefile' => %w(shp), # ESRI Shapefiles
|
|
1905
|
-
'application/x-shar' => %w(shar),
|
|
1906
|
-
'application/x-shockwave-flash' => %w(swf), # Adobe Flash
|
|
1907
|
-
'application/x-sibelius' => %w(sib), # Sibelius
|
|
1908
|
-
'application/x-silverlight-app' => %w(xap),
|
|
1909
|
-
'application/x-snappy-framed' => %w(sz), # Snappy Framed
|
|
1910
|
-
'application/x-spectrum-tzx' => %w(tzx), # TAP (ZX Spectrum)
|
|
1911
|
-
'application/x-spss-sav' => %w(sav), # SPSS Data File
|
|
1912
|
-
'application/x-staroffice-template' => %w(vor),
|
|
1913
|
-
'application/x-stata-do' => %w(do), # Stata DTA Script
|
|
1914
|
-
'application/x-stata-dta' => %w(dta), # Stata DTA Dataset
|
|
1915
|
-
'application/x-stuffit' => %w(sit),
|
|
1916
|
-
'application/x-stuffitx' => %w(sitx),
|
|
1917
|
-
'application/x-subrip' => %w(srt), # SubRip (srt) subtitles
|
|
1918
|
-
'application/x-sv4cpio' => %w(sv4cpio),
|
|
1919
|
-
'application/x-sv4crc' => %w(sv4crc),
|
|
1920
|
-
'application/x-tar' => %w(tar),
|
|
1921
|
-
'application/x-tex' => %w(tex), # TeX Source
|
|
1922
|
-
'application/x-tex-tfm' => %w(tfm),
|
|
1923
|
-
'application/x-tex-virtual-font' => %w(vf), # TeX Virtual Font format
|
|
1924
|
-
'application/x-texinfo' => %w(texinfo texi),
|
|
1925
|
-
'application/x-tika-java-enterprise-archive' => %w(ear),
|
|
1926
|
-
'application/x-tika-java-web-archive' => %w(war),
|
|
1927
|
-
'application/x-tika-msworks-spreadsheet' => %w(xlr),
|
|
1928
|
-
'application/x-tmx' => %w(tmx), # TMX Translation Memory
|
|
1929
|
-
'application/x-uc2-compressed' => %w(uc2),
|
|
1930
|
-
'application/x-ustar' => %w(ustar),
|
|
1931
|
-
'application/x-vmdk' => %w(vmdk), # Virtual Disk Format
|
|
1932
|
-
'application/x-wais-source' => %w(src),
|
|
1933
|
-
'application/x-webarchive' => %w(webarchive),
|
|
1934
|
-
'application/x-x509-cert' => %w(crt),
|
|
1935
|
-
'application/x-x509-cert;format=der' => %w(der),
|
|
1936
|
-
'application/x-x509-cert;format=pem' => %w(pem),
|
|
1937
|
-
'application/x-xfig' => %w(fig),
|
|
1938
|
-
'application/x-xliff+xml' => %w(xlf xliff), # XLIFF 1.2 document
|
|
1939
|
-
'application/x-xliff+zip' => %w(xlz), # XLZ Archive
|
|
1940
|
-
'application/x-xmind' => %w(xmind), # XMind Pro
|
|
1941
|
-
'application/x-xpinstall' => %w(xpi),
|
|
1942
|
-
'application/x-xz' => %w(xz),
|
|
1943
|
-
'application/x-zoo' => %w(zoo),
|
|
1944
|
-
'application/xenc+xml' => %w(xenc),
|
|
1945
|
-
'application/xhtml+xml' => %w(xhtml xhtml2 xht),
|
|
1946
|
-
'application/xml' => %w(xml xsl xsd), # Extensible Markup Language
|
|
1947
|
-
'application/xml-dtd' => %w(dtd), # XML Document Type Definition
|
|
1948
|
-
'application/xop+xml' => %w(xop),
|
|
1949
|
-
'application/xquery' => %w(xq xquery), # XQuery source code
|
|
1950
|
-
'application/xslfo+xml' => %w(xslfo fo), # XSL Format
|
|
1951
|
-
'application/xslt+xml' => %w(xslt), # XSL Transformations
|
|
1952
|
-
'application/xspf+xml' => %w(xspf), # XML Shareable Playlist Format
|
|
1953
|
-
'application/xv+xml' => %w(mxml xhvml xvml xvm),
|
|
1954
|
-
'application/zip' => %w(zip zipx), # Compressed Archive File
|
|
1955
|
-
'application/zstd' => %w(zst), # https://tools.ietf.org/id/draft-kucherawy-dispatch-zstd-01.html
|
|
1956
|
-
'audio/ac3' => %w(ac3), # Dolby Digital Audio Compression File
|
|
1957
|
-
'audio/adpcm' => %w(adp),
|
|
1958
|
-
'audio/amr' => %w(amr),
|
|
1959
|
-
'audio/basic' => %w(au snd), # uLaw/AU Audio File
|
|
1960
|
-
'audio/midi' => %w(mid midi kar rmi), # Musical Instrument Digital Interface
|
|
1961
|
-
'audio/mp4' => %w(mp4a m4a m4b),
|
|
1962
|
-
'audio/mpeg' => %w(mpga mp2 mp2a mp3 m2a m3a), # MPEG-1 Audio Layer 3
|
|
1963
|
-
'audio/ogg' => %w(oga), # Ogg Vorbis Audio
|
|
1964
|
-
'audio/opus' => %w(opus), # Ogg Opus Codec Compressed WAV File
|
|
1965
|
-
'audio/speex' => %w(spx), # Ogg Speex Codec Compressed WAV File
|
|
1966
|
-
'audio/vnd.adobe.soundbooth' => %w(asnd),
|
|
1967
|
-
'audio/vnd.digital-winds' => %w(eol),
|
|
1968
|
-
'audio/vnd.dts' => %w(dts),
|
|
1969
|
-
'audio/vnd.dts.hd' => %w(dtshd),
|
|
1970
|
-
'audio/vnd.lucent.voice' => %w(lvp),
|
|
1971
|
-
'audio/vnd.ms-playready.media.pya' => %w(pya),
|
|
1972
|
-
'audio/vnd.nuera.ecelp4800' => %w(ecelp4800),
|
|
1973
|
-
'audio/vnd.nuera.ecelp7470' => %w(ecelp7470),
|
|
1974
|
-
'audio/vnd.nuera.ecelp9600' => %w(ecelp9600),
|
|
1975
|
-
'audio/vnd.wave' => %w(wav),
|
|
1976
|
-
'audio/vorbis' => %w(ogg), # Ogg Vorbis Codec Compressed WAV File
|
|
1977
|
-
'audio/x-aac' => %w(aac),
|
|
1978
|
-
'audio/x-aiff' => %w(aif aiff aifc), # Audio Interchange File Format
|
|
1979
|
-
'audio/x-caf' => %w(caf), # com.apple.coreaudio-format
|
|
1980
|
-
'audio/x-flac' => %w(flac), # Free Lossless Audio Codec
|
|
1981
|
-
'audio/x-matroska' => %w(mka),
|
|
1982
|
-
'audio/x-mod' => %w(mod),
|
|
1983
|
-
'audio/x-mpegurl' => %w(m3u), # MP3 Playlist File
|
|
1984
|
-
'audio/x-ms-wax' => %w(wax),
|
|
1985
|
-
'audio/x-ms-wma' => %w(wma),
|
|
1986
|
-
'audio/x-pn-realaudio' => %w(ram ra), # Real Audio
|
|
1987
|
-
'audio/x-pn-realaudio-plugin' => %w(rmp), # RealMedia Player Plug-in
|
|
1988
|
-
'audio/x-psf' => %w(psf1 psflib minipsf minipsf1 gslib minigsf), # Portable Sound Format
|
|
1989
|
-
'audio/x-sap' => %w(sap), # Slight Atari Player
|
|
1990
|
-
'chemical/x-cdx' => %w(cdx),
|
|
1991
|
-
'chemical/x-cif' => %w(cif),
|
|
1992
|
-
'chemical/x-cmdf' => %w(cmdf),
|
|
1993
|
-
'chemical/x-cml' => %w(cml),
|
|
1994
|
-
'chemical/x-csml' => %w(csml),
|
|
1995
|
-
'chemical/x-pdb' => %w(pdb), # Brookhaven Protein Databank File
|
|
1996
|
-
'chemical/x-xyz' => %w(xyz),
|
|
1997
|
-
'font/woff' => %w(woff),
|
|
1998
|
-
'font/woff2' => %w(woff2),
|
|
1999
|
-
'image/aces' => %w(exr), # ACES Image Container File
|
|
2000
|
-
'image/avif' => %w(avif), # AV1 Image File
|
|
2001
|
-
'image/bmp' => %w(bmp dib), # Windows bitmap
|
|
2002
|
-
'image/cgm' => %w(cgm), # Computer Graphics Metafile
|
|
2003
|
-
'image/emf' => %w(emf), # Enhanced Metafile
|
|
2004
|
-
'image/g3fax' => %w(g3),
|
|
2005
|
-
'image/gif' => %w(gif), # Graphics Interchange Format
|
|
2006
|
-
'image/heic' => %w(heic),
|
|
2007
|
-
'image/heif' => %w(heif),
|
|
2008
|
-
'image/icns' => %w(icns), # Apple Icon Image Format
|
|
2009
|
-
'image/ief' => %w(ief),
|
|
2010
|
-
'image/jp2' => %w(jp2), # JPEG 2000 Part 1 (JP2)
|
|
2011
|
-
'image/jpeg' => %w(jpg jpeg jpe jif jfif jfi), # Joint Photographic Experts Group
|
|
2012
|
-
'image/jpm' => %w(jpm jpgm), # JPEG 2000 Part 6 (JPM)
|
|
2013
|
-
'image/jpx' => %w(jpf), # JPEG 2000 Part 2 (JPX)
|
|
2014
|
-
'image/jxl' => %w(jxl), # JPEG XL
|
|
2015
|
-
'image/nitf' => %w(ntf nitf),
|
|
2016
|
-
'image/png' => %w(png), # Portable Network Graphics
|
|
2017
|
-
'image/prs.btif' => %w(btif),
|
|
2018
|
-
'image/svg+xml' => %w(svg svgz), # Scalable Vector Graphics
|
|
2019
|
-
'image/tiff' => %w(tiff tif), # Tagged Image File Format
|
|
2020
|
-
'image/vnd.adobe.photoshop' => %w(psd), # Photoshop Image
|
|
2021
|
-
'image/vnd.adobe.premiere' => %w(ppj),
|
|
2022
|
-
'image/vnd.dgn' => %w(dgn dgnlib cel),
|
|
2023
|
-
'image/vnd.djvu' => %w(djvu djv),
|
|
2024
|
-
'image/vnd.dwg' => %w(dwg), # AutoCad Drawing
|
|
2025
|
-
'image/vnd.dxb' => %w(dxb), # AutoCAD DXF simplified Binary
|
|
2026
|
-
'image/vnd.dxf' => %w(dxf), # AutoCAD DXF
|
|
2027
|
-
'image/vnd.fastbidsheet' => %w(fbs),
|
|
2028
|
-
'image/vnd.fpx' => %w(fpx),
|
|
2029
|
-
'image/vnd.fst' => %w(fst),
|
|
2030
|
-
'image/vnd.fujixerox.edmics-mmr' => %w(mmr),
|
|
2031
|
-
'image/vnd.fujixerox.edmics-rlc' => %w(rlc),
|
|
2032
|
-
'image/vnd.microsoft.icon' => %w(ico),
|
|
2033
|
-
'image/vnd.ms-modi' => %w(mdi), # Microsoft Document Imaging
|
|
2034
|
-
'image/vnd.net-fpx' => %w(npx),
|
|
2035
|
-
'image/vnd.wap.wbmp' => %w(wbmp), # Wireless Bitmap File Format
|
|
2036
|
-
'image/vnd.xiff' => %w(xif),
|
|
2037
|
-
'image/vnd.zbrush.dcx' => %w(dcx), # ZSoft Multi-Page Paintbrush
|
|
2038
|
-
'image/vnd.zbrush.pcx' => %w(pcx), # ZSoft Paintbrush PiCture eXchange
|
|
2039
|
-
'image/webp' => %w(webp),
|
|
2040
|
-
'image/wmf' => %w(wmf), # Windows Metafile
|
|
2041
|
-
'image/x-3ds' => %w(3ds), # 3D Studio (V1)
|
|
2042
|
-
'image/x-bpg' => %w(bpg), # Better Portable Graphics
|
|
2043
|
-
'image/x-canon-cr2' => %w(cr2), # Canon raw image, version 2, TIFF-based
|
|
2044
|
-
'image/x-canon-cr3' => %w(cr3), # Canon raw image, version 3, Quicktime-based
|
|
2045
|
-
'image/x-cmu-raster' => %w(ras),
|
|
2046
|
-
'image/x-cmx' => %w(cmx),
|
|
2047
|
-
'image/x-dpx' => %w(dpx), # Digital Picture Exchange from SMPTE
|
|
2048
|
-
'image/x-emf-compressed' => %w(emz), # Compressed Enhanced Metafile
|
|
2049
|
-
'image/x-freehand' => %w(fh fhc fh4 fh40 fh5 fh50 fh7 fh8 fh9 fh10 fh11 fh12 ft7 ft8 ft9 ft10 ft11 ft12), # FreeHand image
|
|
2050
|
-
'image/x-jbig2' => %w(jb2 jbig2), # A lossless image compression standard from the Joint Bi-level Image Experts Group.
|
|
2051
|
-
'image/x-jp2-codestream' => %w(j2c), # JPEG 2000 Codestream
|
|
2052
|
-
'image/x-pict' => %w(pic pct pict), # Apple Macintosh QuickDraw/PICT Format
|
|
2053
|
-
'image/x-portable-anymap' => %w(pnm), # Portable Any Map
|
|
2054
|
-
'image/x-portable-arbitrarymap' => %w(pam), # UNIX Portable Bitmap Graphic Arbitrary Map
|
|
2055
|
-
'image/x-portable-bitmap' => %w(pbm), # Portable Bit Map
|
|
2056
|
-
'image/x-portable-graymap' => %w(pgm), # Portable Graymap Graphic
|
|
2057
|
-
'image/x-portable-pixmap' => %w(ppm), # UNIX Portable Bitmap Graphic
|
|
2058
|
-
'image/x-raw-adobe' => %w(dng), # Adobe Digital Negative
|
|
2059
|
-
'image/x-raw-canon' => %w(crw), # Canon raw image
|
|
2060
|
-
'image/x-raw-casio' => %w(bay), # Casio raw image
|
|
2061
|
-
'image/x-raw-epson' => %w(erf), # Epson raw image
|
|
2062
|
-
'image/x-raw-fuji' => %w(raf), # Fuji raw image
|
|
2063
|
-
'image/x-raw-hasselblad' => %w(3fr), # Hasselblad raw image
|
|
2064
|
-
'image/x-raw-imacon' => %w(fff), # Imacon raw image
|
|
2065
|
-
'image/x-raw-kodak' => %w(k25 kdc dcs drf), # Kodak raw image
|
|
2066
|
-
'image/x-raw-leaf' => %w(mos), # Leaf raw image
|
|
2067
|
-
'image/x-raw-logitech' => %w(pxn), # Logitech raw image
|
|
2068
|
-
'image/x-raw-mamiya' => %w(mef), # Mamiya raw image
|
|
2069
|
-
'image/x-raw-minolta' => %w(mrw), # Minolta raw image
|
|
2070
|
-
'image/x-raw-nikon' => %w(nef nrw), # Nikon raw image
|
|
2071
|
-
'image/x-raw-olympus' => %w(orf), # Olympus raw image
|
|
2072
|
-
'image/x-raw-panasonic' => %w(raw rw2), # Panasonic raw image
|
|
2073
|
-
'image/x-raw-pentax' => %w(ptx pef), # Pentax raw image
|
|
2074
|
-
'image/x-raw-phaseone' => %w(iiq), # Phase One raw image
|
|
2075
|
-
'image/x-raw-rawzor' => %w(rwz), # Rawzor raw image
|
|
2076
|
-
'image/x-raw-red' => %w(r3d), # Red raw image
|
|
2077
|
-
'image/x-raw-sigma' => %w(x3f), # Sigma raw image
|
|
2078
|
-
'image/x-raw-sony' => %w(arw srf sr2), # Sony raw image
|
|
2079
|
-
'image/x-rgb' => %w(rgb), # Silicon Graphics RGB Bitmap
|
|
2080
|
-
'image/x-tga' => %w(tga icb vda), # Targa image data
|
|
2081
|
-
'image/x-xbitmap' => %w(xbm),
|
|
2082
|
-
'image/x-xcf' => %w(xcf), # GIMP Image File
|
|
2083
|
-
'image/x-xpixmap' => %w(xpm),
|
|
2084
|
-
'image/x-xwindowdump' => %w(xwd), # X Windows Dump
|
|
2085
|
-
'message/rfc822' => %w(eml mime),
|
|
2086
|
-
'message/x-emlx' => %w(emlx),
|
|
2087
|
-
'model/e57' => %w(e57), # 3d imaging data exchange
|
|
2088
|
-
'model/iges' => %w(igs iges), # Initial Graphics Exchange Specification Format
|
|
2089
|
-
'model/mesh' => %w(msh mesh silo),
|
|
2090
|
-
'model/vnd.dwf' => %w(dwf), # AutoCAD Design Web Format
|
|
2091
|
-
'model/vnd.dwfx+xps' => %w(dwfx), # AutoCAD Design Web Format
|
|
2092
|
-
'model/vnd.gdl' => %w(gdl),
|
|
2093
|
-
'model/vnd.gtw' => %w(gtw),
|
|
2094
|
-
'model/vnd.mts' => %w(mts),
|
|
2095
|
-
'model/vnd.vtu' => %w(vtu),
|
|
2096
|
-
'model/vrml' => %w(wrl vrml),
|
|
2097
|
-
'model/x.stl-binary' => %w(stl), # no magic available
|
|
2098
|
-
'multipart/related' => %w(mht mhtml), # MIME Encapsulation of Aggregate HTML Documents
|
|
2099
|
-
'text/asp' => %w(asp), # Active Server Page
|
|
2100
|
-
'text/aspdotnet' => %w(aspx), # ASP .NET
|
|
2101
|
-
'text/calendar' => %w(ics ifb),
|
|
2102
|
-
'text/css' => %w(css), # Cascading Style Sheet
|
|
2103
|
-
'text/csv' => %w(csv),
|
|
2104
|
-
'text/html' => %w(html htm), # HyperText Markup Language
|
|
2105
|
-
'text/iso19139+xml' => %w(iso19139),
|
|
2106
|
-
'text/javascript' => %w(js mjs), # JavaScript Source Code
|
|
2107
|
-
'text/plain' => %w(txt text def list in aart ac am apt bsh classpath cnd cwiki data dcl dsp dsw egrm ent ft fn fv grm g handlers htc ihtml jmx junit jx manifest m4 mf mf meta mdo n3 pen pod pom project rng rnx roles schemas tld types vm vsl wsdd xargs xcat xegrm xgrm xlex xlog xmap xroles xsamples xsp xtest xweb xwelcome),
|
|
2108
|
-
'text/prs.lines.tag' => %w(dsc),
|
|
2109
|
-
'text/richtext' => %w(rtx),
|
|
2110
|
-
'text/sgml' => %w(sgml sgm),
|
|
2111
|
-
'text/tab-separated-values' => %w(tsv),
|
|
2112
|
-
'text/troff' => %w(t tr roff nroff man me ms), # Roff/nroff/troff/groff Unformatted Manual Page (UNIX)
|
|
2113
|
-
'text/uri-list' => %w(uri uris urls),
|
|
2114
|
-
'text/vnd.curl' => %w(curl),
|
|
2115
|
-
'text/vnd.curl.dcurl' => %w(dcurl),
|
|
2116
|
-
'text/vnd.curl.mcurl' => %w(mcurl),
|
|
2117
|
-
'text/vnd.curl.scurl' => %w(scurl),
|
|
2118
|
-
'text/vnd.fly' => %w(fly),
|
|
2119
|
-
'text/vnd.fmi.flexstor' => %w(flx),
|
|
2120
|
-
'text/vnd.graphviz' => %w(gv), # Graphviz Graph Visualization Software
|
|
2121
|
-
'text/vnd.in3d.3dml' => %w(3dml),
|
|
2122
|
-
'text/vnd.in3d.spot' => %w(spot),
|
|
2123
|
-
'text/vnd.iptc.anpa' => %w(anpa), # American Newspaper Publishers Association Wire Feeds
|
|
2124
|
-
'text/vnd.sun.j2me.app-descriptor' => %w(jad),
|
|
2125
|
-
'text/vnd.wap.wml' => %w(wml),
|
|
2126
|
-
'text/vnd.wap.wmlscript' => %w(wmls), # WML Script
|
|
2127
|
-
'text/vtt' => %w(vtt), # Web Video Text Tracks Format
|
|
2128
|
-
'text/x-actionscript' => %w(as), # ActionScript source code
|
|
2129
|
-
'text/x-ada' => %w(ada adb ads), # Ada source code
|
|
2130
|
-
'text/x-applescript' => %w(applescript), # AppleScript source code
|
|
2131
|
-
'text/x-asciidoc' => %w(asciidoc adoc ad ad.txt adoc.txt), # Asciidoc source code
|
|
2132
|
-
'text/x-aspectj' => %w(aj), # AspectJ source code
|
|
2133
|
-
'text/x-assembly' => %w(s s asm), # Assembler source code
|
|
2134
|
-
'text/x-awk' => %w(awk), # AWK script
|
|
2135
|
-
'text/x-basic' => %w(bas bas bas), # Basic source code
|
|
2136
|
-
'text/x-c++hdr' => %w(hpp hxx hh h h++ hp hpp), # C++ source code header
|
|
2137
|
-
'text/x-c++src' => %w(cpp cxx cc c c++ cpp), # C++ source code
|
|
2138
|
-
'text/x-cgi' => %w(cgi), # CGI script
|
|
2139
|
-
'text/x-chdr' => %w(h), # C source code header
|
|
2140
|
-
'text/x-clojure' => %w(clj), # Clojure source code
|
|
2141
|
-
'text/x-cobol' => %w(cbl cbl cbl cob cob cob), # COBOL source code
|
|
2142
|
-
'text/x-coffeescript' => %w(coffee), # CoffeeScript source code
|
|
2143
|
-
'text/x-coldfusion' => %w(cfm cfml cfc), # ColdFusion source code
|
|
2144
|
-
'text/x-common-lisp' => %w(cl jl lisp lsp), # Common Lisp source code
|
|
2145
|
-
'text/x-config' => %w(config conf cfg xconf),
|
|
2146
|
-
'text/x-csharp' => %w(cs), # C# source code
|
|
2147
|
-
'text/x-csrc' => %w(c), # C source code
|
|
2148
|
-
'text/x-d' => %w(d), # D source code
|
|
2149
|
-
'text/x-diff' => %w(diff patch),
|
|
2150
|
-
'text/x-eiffel' => %w(e), # Eiffel source code
|
|
2151
|
-
'text/x-emacs-lisp' => %w(el), # Emacs Lisp source code
|
|
2152
|
-
'text/x-erlang' => %w(erl), # Erlang source code
|
|
2153
|
-
'text/x-expect' => %w(exp), # Expect Script
|
|
2154
|
-
'text/x-forth' => %w(4th), # Forth source code
|
|
2155
|
-
'text/x-fortran' => %w(f f for f77 f90), # Fortran source code
|
|
2156
|
-
'text/x-go' => %w(go), # Go source code
|
|
2157
|
-
'text/x-groovy' => %w(groovy), # Groovy source code
|
|
2158
|
-
'text/x-haml' => %w(haml), # HAML source code
|
|
2159
|
-
'text/x-haskell' => %w(hs lhs), # Haskell source code
|
|
2160
|
-
'text/x-haxe' => %w(hx), # Haxe source code
|
|
2161
|
-
'text/x-idl' => %w(idl), # Interface Definition Language
|
|
2162
|
-
'text/x-ini' => %w(ini), # Configuration file
|
|
2163
|
-
'text/x-java-properties' => %w(properties), # Java Properties
|
|
2164
|
-
'text/x-java-source' => %w(java), # Java source code
|
|
2165
|
-
'text/x-jsp' => %w(jsp), # Java Server Page
|
|
2166
|
-
'text/x-less' => %w(less), # LESS source code
|
|
2167
|
-
'text/x-lex' => %w(l), # Lex/Flex source code
|
|
2168
|
-
'text/x-log' => %w(log), # application log
|
|
2169
|
-
'text/x-lua' => %w(lua), # Lua source code
|
|
2170
|
-
'text/x-ml' => %w(ml), # ML source code
|
|
2171
|
-
'text/x-modula' => %w(m3 i3 mg ig), # Modula source code
|
|
2172
|
-
'text/x-objcsrc' => %w(m), # Objective-C source code
|
|
2173
|
-
'text/x-ocaml' => %w(ocaml mli), # Ocaml source code
|
|
2174
|
-
'text/x-pascal' => %w(p pp pas pas dpr), # Pascal source code
|
|
2175
|
-
'text/x-perl' => %w(pl pm al perl), # Perl script
|
|
2176
|
-
'text/x-php' => %w(php php3 php4), # PHP script
|
|
2177
|
-
'text/x-prolog' => %w(pro), # Prolog source code
|
|
2178
|
-
'text/x-python' => %w(py), # Python script
|
|
2179
|
-
'text/x-rexx' => %w(rexx), # Rexx source code
|
|
2180
|
-
'text/x-rsrc' => %w(r), # R source code
|
|
2181
|
-
'text/x-rst' => %w(rest rst restx), # reStructuredText source code
|
|
2182
|
-
'text/x-ruby' => %w(rb), # Ruby source code
|
|
2183
|
-
'text/x-sass' => %w(sass),
|
|
2184
|
-
'text/x-scala' => %w(scala), # Scala source code
|
|
2185
|
-
'text/x-scheme' => %w(scm), # Scheme source code
|
|
2186
|
-
'text/x-scss' => %w(scss),
|
|
2187
|
-
'text/x-sed' => %w(sed), # Sed code
|
|
2188
|
-
'text/x-setext' => %w(etx),
|
|
2189
|
-
'text/x-sql' => %w(sql), # SQL code
|
|
2190
|
-
'text/x-stsrc' => %w(st), # Smalltalk source code
|
|
2191
|
-
'text/x-tcl' => %w(itk tcl tk), # Tcl script
|
|
2192
|
-
'text/x-uuencode' => %w(uu),
|
|
2193
|
-
'text/x-vbasic' => %w(cls cls cls frm frm frm), # Visual basic source code
|
|
2194
|
-
'text/x-vbdotnet' => %w(vb), # VB.NET source code
|
|
2195
|
-
'text/x-vbscript' => %w(vbs), # VBScript source code
|
|
2196
|
-
'text/x-vcalendar' => %w(vcs),
|
|
2197
|
-
'text/x-vcard' => %w(vcf),
|
|
2198
|
-
'text/x-verilog' => %w(v), # Verilog source code
|
|
2199
|
-
'text/x-vhdl' => %w(vhd vhdl), # VHDL source code
|
|
2200
|
-
'text/x-web-markdown' => %w(md mdtext mkd markdown), # Markdown source code
|
|
2201
|
-
'text/x-yacc' => %w(y), # Yacc/Bison source code
|
|
2202
|
-
'text/x-yaml' => %w(yaml yml), # YAML source code
|
|
2203
|
-
'video/3gpp' => %w(3gp),
|
|
2204
|
-
'video/3gpp2' => %w(3g2),
|
|
2205
|
-
'video/h261' => %w(h261),
|
|
2206
|
-
'video/h263' => %w(h263),
|
|
2207
|
-
'video/h264' => %w(h264),
|
|
2208
|
-
'video/iso.segment' => %w(m4s),
|
|
2209
|
-
'video/jpeg' => %w(jpgv),
|
|
2210
|
-
'video/mj2' => %w(mj2 mjp2), # JPEG 2000 Part 3 (Motion JPEG, MJ2)
|
|
2211
|
-
'video/mp4' => %w(mp4 mp4v mpg4),
|
|
2212
|
-
'video/mpeg' => %w(mpeg mpg mpe m1v m2v), # MPEG Movie Clip
|
|
2213
|
-
'video/ogg' => %w(ogv), # Ogg Vorbis Video
|
|
2214
|
-
'video/quicktime' => %w(qt mov), # QuickTime Video
|
|
2215
|
-
'video/vnd.fvt' => %w(fvt),
|
|
2216
|
-
'video/vnd.mpegurl' => %w(mxu m4u),
|
|
2217
|
-
'video/vnd.ms-playready.media.pyv' => %w(pyv),
|
|
2218
|
-
'video/vnd.vivo' => %w(viv),
|
|
2219
|
-
'video/webm' => %w(webm),
|
|
2220
|
-
'video/x-dirac' => %w(drc), # Ogg Packaged Dirac Video
|
|
2221
|
-
'video/x-f4v' => %w(f4v),
|
|
2222
|
-
'video/x-flc' => %w(flc),
|
|
2223
|
-
'video/x-fli' => %w(fli),
|
|
2224
|
-
'video/x-flv' => %w(flv),
|
|
2225
|
-
'video/x-jng' => %w(jng),
|
|
2226
|
-
'video/x-m4v' => %w(m4v),
|
|
2227
|
-
'video/x-matroska' => %w(mkv),
|
|
2228
|
-
'video/x-mng' => %w(mng),
|
|
2229
|
-
'video/x-ms-asf' => %w(asf),
|
|
2230
|
-
'video/x-ms-wm' => %w(wm),
|
|
2231
|
-
'video/x-ms-wmv' => %w(wmv),
|
|
2232
|
-
'video/x-ms-wmx' => %w(wmx),
|
|
2233
|
-
'video/x-ms-wvx' => %w(wvx),
|
|
2234
|
-
'video/x-msvideo' => %w(avi), # Audio Video Interleave File
|
|
2235
|
-
'video/x-ogm' => %w(ogm), # Ogg Packaged OGM Video
|
|
2236
|
-
'video/x-sgi-movie' => %w(movie),
|
|
2237
|
-
'x-conference/x-cooltalk' => %w(ice), # Cooltalk Audio
|
|
2238
|
-
}
|
|
2239
|
-
TYPE_PARENTS = {
|
|
2240
|
-
'application/bizagi-modeler' => %w(application/zip),
|
|
2241
|
-
'application/dash+xml' => %w(application/xml),
|
|
2242
|
-
'application/dif+xml' => %w(application/xml),
|
|
2243
|
-
'application/dita+xml;format=map' => %w(application/dita+xml),
|
|
2244
|
-
'application/dita+xml;format=topic' => %w(application/dita+xml),
|
|
2245
|
-
'application/dita+xml;format=val' => %w(application/dita+xml),
|
|
2246
|
-
'application/hwp+zip' => %w(application/zip),
|
|
2247
|
-
'application/illustrator' => %w(application/pdf),
|
|
2248
|
-
'application/java-archive' => %w(application/zip),
|
|
2249
|
-
'application/json' => %w(text/javascript),
|
|
2250
|
-
'application/manifest+json' => %w(application/json),
|
|
2251
|
-
'application/mathematica' => %w(text/plain),
|
|
2252
|
-
'application/mbox' => %w(text/x-tika-text-based-message),
|
|
2253
|
-
'application/mp4' => %w(application/quicktime),
|
|
2254
|
-
'application/msword' => %w(application/x-tika-msoffice),
|
|
2255
|
-
'application/onenote; format=package' => %w(application/vnd.ms-cab-compressed),
|
|
2256
|
-
'application/onenote;format=one' => %w(application/onenote),
|
|
2257
|
-
'application/onenote;format=onetoc2' => %w(application/onenote),
|
|
2258
|
-
'application/rdf+xml' => %w(application/xml),
|
|
2259
|
-
'application/relax-ng-compact-syntax' => %w(text/plain),
|
|
2260
|
-
'application/rtf' => %w(text/plain),
|
|
2261
|
-
'application/sldworks' => %w(application/x-tika-msoffice),
|
|
2262
|
-
'application/smil+xml' => %w(application/xml),
|
|
2263
|
-
'application/ttml+xml' => %w(application/xml),
|
|
2264
|
-
'application/vnd.adobe.indesign-idml-package' => %w(application/zip),
|
|
2265
|
-
'application/vnd.adobe.xdp+xml' => %w(application/xml),
|
|
2266
|
-
'application/vnd.adobe.xfdf' => %w(application/xml),
|
|
2267
|
-
'application/vnd.android.package-archive' => %w(application/java-archive),
|
|
2268
|
-
'application/vnd.apple.keynote' => %w(application/vnd.apple.iwork),
|
|
2269
|
-
'application/vnd.apple.numbers' => %w(application/vnd.apple.iwork),
|
|
2270
|
-
'application/vnd.apple.pages' => %w(application/vnd.apple.iwork),
|
|
2271
|
-
'application/vnd.etsi.asic-e+zip' => %w(application/zip),
|
|
2272
|
-
'application/vnd.etsi.asic-s+zip' => %w(application/zip),
|
|
2273
|
-
'application/vnd.google-earth.kml+xml' => %w(application/xml),
|
|
2274
|
-
'application/vnd.google-earth.kmz' => %w(application/zip),
|
|
2275
|
-
'application/vnd.iptc.g2.newsmessage+xml' => %w(application/xml),
|
|
2276
|
-
'application/vnd.java.hprof.text' => %w(text/plain),
|
|
2277
|
-
'application/vnd.lotus-1-2-3;version=2' => %w(application/vnd.lotus-1-2-3),
|
|
2278
|
-
'application/vnd.lotus-1-2-3;version=3' => %w(application/vnd.lotus-1-2-3),
|
|
2279
|
-
'application/vnd.lotus-1-2-3;version=4' => %w(application/vnd.lotus-1-2-3),
|
|
2280
|
-
'application/vnd.lotus-1-2-3;version=97+9.x' => %w(application/vnd.lotus-1-2-3),
|
|
2281
|
-
'application/vnd.mindjet.mindmanager' => %w(application/zip),
|
|
2282
|
-
'application/vnd.ms-excel' => %w(application/x-tika-msoffice),
|
|
2283
|
-
'application/vnd.ms-excel.addin.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2284
|
-
'application/vnd.ms-excel.sheet.binary.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2285
|
-
'application/vnd.ms-excel.sheet.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2286
|
-
'application/vnd.ms-excel.template.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2287
|
-
'application/vnd.ms-outlook' => %w(application/x-tika-msoffice),
|
|
2288
|
-
'application/vnd.ms-powerpoint' => %w(application/x-tika-msoffice),
|
|
2289
|
-
'application/vnd.ms-powerpoint.addin.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2290
|
-
'application/vnd.ms-powerpoint.presentation.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2291
|
-
'application/vnd.ms-powerpoint.slide.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2292
|
-
'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2293
|
-
'application/vnd.ms-powerpoint.template.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2294
|
-
'application/vnd.ms-project' => %w(application/x-tika-msoffice),
|
|
2295
|
-
'application/vnd.ms-visio.drawing' => %w(application/x-tika-visio-ooxml),
|
|
2296
|
-
'application/vnd.ms-visio.drawing.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
|
|
2297
|
-
'application/vnd.ms-visio.stencil' => %w(application/x-tika-visio-ooxml),
|
|
2298
|
-
'application/vnd.ms-visio.stencil.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
|
|
2299
|
-
'application/vnd.ms-visio.template' => %w(application/x-tika-visio-ooxml),
|
|
2300
|
-
'application/vnd.ms-visio.template.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
|
|
2301
|
-
'application/vnd.ms-word.document.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2302
|
-
'application/vnd.ms-word.template.macroenabled.12' => %w(application/x-tika-ooxml),
|
|
2303
|
-
'application/vnd.ms-works' => %w(application/x-tika-msoffice),
|
|
2304
|
-
'application/vnd.ms-xpsdocument' => %w(application/x-tika-ooxml),
|
|
2305
|
-
'application/vnd.oasis.opendocument.chart' => %w(application/zip),
|
|
2306
|
-
'application/vnd.oasis.opendocument.chart-template' => %w(application/zip),
|
|
2307
|
-
'application/vnd.oasis.opendocument.flat.presentation' => %w(application/vnd.oasis.opendocument.tika.flat.document),
|
|
2308
|
-
'application/vnd.oasis.opendocument.flat.spreadsheet' => %w(application/vnd.oasis.opendocument.tika.flat.document),
|
|
2309
|
-
'application/vnd.oasis.opendocument.flat.text' => %w(application/vnd.oasis.opendocument.tika.flat.document),
|
|
2310
|
-
'application/vnd.oasis.opendocument.formula' => %w(application/zip),
|
|
2311
|
-
'application/vnd.oasis.opendocument.formula-template' => %w(application/zip),
|
|
2312
|
-
'application/vnd.oasis.opendocument.graphics' => %w(application/zip),
|
|
2313
|
-
'application/vnd.oasis.opendocument.graphics-template' => %w(application/zip),
|
|
2314
|
-
'application/vnd.oasis.opendocument.image' => %w(application/zip),
|
|
2315
|
-
'application/vnd.oasis.opendocument.image-template' => %w(application/zip),
|
|
2316
|
-
'application/vnd.oasis.opendocument.presentation' => %w(application/zip),
|
|
2317
|
-
'application/vnd.oasis.opendocument.presentation-template' => %w(application/zip),
|
|
2318
|
-
'application/vnd.oasis.opendocument.spreadsheet' => %w(application/zip),
|
|
2319
|
-
'application/vnd.oasis.opendocument.spreadsheet-template' => %w(application/zip),
|
|
2320
|
-
'application/vnd.oasis.opendocument.text' => %w(application/zip),
|
|
2321
|
-
'application/vnd.oasis.opendocument.text-master' => %w(application/zip),
|
|
2322
|
-
'application/vnd.oasis.opendocument.text-template' => %w(application/zip),
|
|
2323
|
-
'application/vnd.oasis.opendocument.text-web' => %w(application/zip),
|
|
2324
|
-
'application/vnd.openofficeorg.autotext' => %w(application/zip),
|
|
2325
|
-
'application/vnd.openofficeorg.extension' => %w(application/zip),
|
|
2326
|
-
'application/vnd.openxmlformats-officedocument.presentationml.presentation' => %w(application/x-tika-ooxml),
|
|
2327
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slide' => %w(application/x-tika-ooxml),
|
|
2328
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => %w(application/x-tika-ooxml),
|
|
2329
|
-
'application/vnd.openxmlformats-officedocument.presentationml.template' => %w(application/x-tika-ooxml),
|
|
2330
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => %w(application/x-tika-ooxml),
|
|
2331
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => %w(application/x-tika-ooxml),
|
|
2332
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => %w(application/x-tika-ooxml),
|
|
2333
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => %w(application/x-tika-ooxml),
|
|
2334
|
-
'application/vnd.stardivision.calc' => %w(application/x-tika-staroffice),
|
|
2335
|
-
'application/vnd.stardivision.draw' => %w(application/x-tika-staroffice),
|
|
2336
|
-
'application/vnd.stardivision.impress' => %w(application/x-tika-staroffice),
|
|
2337
|
-
'application/vnd.stardivision.writer' => %w(application/x-tika-staroffice),
|
|
2338
|
-
'application/vnd.visio' => %w(application/x-tika-msoffice),
|
|
2339
|
-
'application/vnd.wolfram.wl' => %w(application/mathematica),
|
|
2340
|
-
'application/x-adobe-indesign-interchange' => %w(application/xml),
|
|
2341
|
-
'application/x-amf' => %w(application/xml),
|
|
2342
|
-
'application/x-bat' => %w(text/plain),
|
|
2343
|
-
'application/x-bibtex-text-file' => %w(text/plain),
|
|
2344
|
-
'application/x-bzip2' => %w(application/x-bzip),
|
|
2345
|
-
'application/x-corelpresentations' => %w(application/x-tika-msoffice),
|
|
2346
|
-
'application/x-debian-package' => %w(application/x-archive),
|
|
2347
|
-
'application/x-dosexec' => %w(application/x-msdownload),
|
|
2348
|
-
'application/x-esri-layer' => %w(application/x-tika-msoffice),
|
|
2349
|
-
'application/x-fictionbook+xml' => %w(application/xml),
|
|
2350
|
-
'application/x-geopackage' => %w(application/x-sqlite3),
|
|
2351
|
-
'application/x-geopackage; version=1.1Or1.0' => %w(application/x-sqlite3),
|
|
2352
|
-
'application/x-gtar' => %w(application/x-tar),
|
|
2353
|
-
'application/x-ibooks+zip' => %w(application/epub+zip),
|
|
2354
|
-
'application/x-itunes-ipa' => %w(application/zip),
|
|
2355
|
-
'application/x-java-jnilib' => %w(application/x-mach-o-universal),
|
|
2356
|
-
'application/x-latex' => %w(application/x-tex),
|
|
2357
|
-
'application/x-memgraph' => %w(application/x-bplist),
|
|
2358
|
-
'application/x-ms-asx' => %w(application/xml),
|
|
2359
|
-
'application/x-ms-installer' => %w(application/x-tika-msoffice),
|
|
2360
|
-
'application/x-ms-wmz' => %w(application/gzip),
|
|
2361
|
-
'application/x-mspublisher' => %w(application/x-tika-msoffice),
|
|
2362
|
-
'application/x-mysql-misam-compressed-index' => %w(application/x-mysql-db),
|
|
2363
|
-
'application/x-mysql-misam-data' => %w(application/x-mysql-db),
|
|
2364
|
-
'application/x-openscad' => %w(text/plain),
|
|
2365
|
-
'application/x-project' => %w(text/plain),
|
|
2366
|
-
'application/x-quattro-pro' => %w(application/x-tika-msoffice),
|
|
2367
|
-
'application/x-quattro-pro;version=1+5' => %w(application/x-quattro-pro),
|
|
2368
|
-
'application/x-quattro-pro;version=1-4' => %w(application/x-quattro-pro),
|
|
2369
|
-
'application/x-quattro-pro;version=5' => %w(application/x-quattro-pro),
|
|
2370
|
-
'application/x-quattro-pro;version=6' => %w(application/x-quattro-pro),
|
|
2371
|
-
'application/x-roxio-toast' => %w(application/x-iso9660-image),
|
|
2372
|
-
'application/x-sas' => %w(text/plain),
|
|
2373
|
-
'application/x-sfdu' => %w(text/plain),
|
|
2374
|
-
'application/x-sh' => %w(text/plain),
|
|
2375
|
-
'application/x-staroffice-template' => %w(application/x-tika-staroffice),
|
|
2376
|
-
'application/x-subrip' => %w(text/plain),
|
|
2377
|
-
'application/x-tex' => %w(text/plain),
|
|
2378
|
-
'application/x-tika-java-enterprise-archive' => %w(application/java-archive),
|
|
2379
|
-
'application/x-tika-java-web-archive' => %w(application/java-archive),
|
|
2380
|
-
'application/x-tika-msworks-spreadsheet' => %w(application/vnd.ms-excel),
|
|
2381
|
-
'application/x-tmx' => %w(application/xml),
|
|
2382
|
-
'application/x-webarchive' => %w(application/x-bplist),
|
|
2383
|
-
'application/x-x509-cert;format=der' => %w(application/x-x509-cert),
|
|
2384
|
-
'application/x-x509-cert;format=pem' => %w(application/x-x509-cert),
|
|
2385
|
-
'application/x-xliff+xml' => %w(application/xml),
|
|
2386
|
-
'application/x-xliff+zip' => %w(application/zip),
|
|
2387
|
-
'application/x-xmind' => %w(application/zip),
|
|
2388
|
-
'application/xml' => %w(text/plain),
|
|
2389
|
-
'application/xml-dtd' => %w(text/plain),
|
|
2390
|
-
'application/xquery' => %w(text/plain),
|
|
2391
|
-
'audio/mp4' => %w(video/mp4),
|
|
2392
|
-
'audio/ogg' => %w(application/ogg),
|
|
2393
|
-
'audio/opus' => %w(audio/ogg),
|
|
2394
|
-
'audio/speex' => %w(audio/ogg),
|
|
2395
|
-
'audio/vorbis' => %w(audio/ogg),
|
|
2396
|
-
'audio/x-matroska' => %w(application/x-matroska),
|
|
2397
|
-
'audio/x-ms-wma' => %w(video/x-ms-asf),
|
|
2398
|
-
'image/jp2' => %w(image/x-jp2-container),
|
|
2399
|
-
'image/jpm' => %w(image/x-jp2-container),
|
|
2400
|
-
'image/jpx' => %w(image/x-jp2-container),
|
|
2401
|
-
'image/svg+xml' => %w(application/xml),
|
|
2402
|
-
'image/vnd.adobe.premiere' => %w(application/xml),
|
|
2403
|
-
'image/x-canon-cr2' => %w(image/tiff),
|
|
2404
|
-
'image/x-canon-cr3' => %w(video/quicktime),
|
|
2405
|
-
'image/x-emf-compressed' => %w(application/gzip),
|
|
2406
|
-
'image/x-portable-arbitrarymap' => %w(image/x-portable-anymap),
|
|
2407
|
-
'image/x-portable-bitmap' => %w(image/x-portable-anymap),
|
|
2408
|
-
'image/x-portable-graymap' => %w(image/x-portable-anymap),
|
|
2409
|
-
'image/x-portable-pixmap' => %w(image/x-portable-anymap),
|
|
2410
|
-
'image/x-xbitmap' => %w(text/x-c),
|
|
2411
|
-
'message/rfc822' => %w(text/x-tika-text-based-message),
|
|
2412
|
-
'message/x-emlx' => %w(text/x-tika-text-based-message),
|
|
2413
|
-
'model/vnd.dwfx+xps' => %w(application/x-tika-ooxml),
|
|
2414
|
-
'multipart/related' => %w(message/rfc822),
|
|
2415
|
-
'text/asp' => %w(text/plain),
|
|
2416
|
-
'text/aspdotnet' => %w(text/plain),
|
|
2417
|
-
'text/calendar' => %w(text/plain),
|
|
2418
|
-
'text/css' => %w(text/plain),
|
|
2419
|
-
'text/csv' => %w(text/plain),
|
|
2420
|
-
'text/iso19139+xml' => %w(application/xml),
|
|
2421
|
-
'text/javascript' => %w(text/plain),
|
|
2422
|
-
'text/vnd.graphviz' => %w(text/plain),
|
|
2423
|
-
'text/vtt' => %w(text/plain),
|
|
2424
|
-
'text/x-actionscript' => %w(text/plain),
|
|
2425
|
-
'text/x-ada' => %w(text/plain),
|
|
2426
|
-
'text/x-applescript' => %w(text/plain),
|
|
2427
|
-
'text/x-asciidoc' => %w(text/plain),
|
|
2428
|
-
'text/x-aspectj' => %w(text/plain),
|
|
2429
|
-
'text/x-assembly' => %w(text/plain),
|
|
2430
|
-
'text/x-awk' => %w(text/plain),
|
|
2431
|
-
'text/x-basic' => %w(text/plain),
|
|
2432
|
-
'text/x-c++hdr' => %w(text/plain),
|
|
2433
|
-
'text/x-c++src' => %w(text/plain),
|
|
2434
|
-
'text/x-cgi' => %w(text/plain),
|
|
2435
|
-
'text/x-chdr' => %w(text/plain),
|
|
2436
|
-
'text/x-clojure' => %w(text/plain),
|
|
2437
|
-
'text/x-cobol' => %w(text/plain),
|
|
2438
|
-
'text/x-coffeescript' => %w(text/plain),
|
|
2439
|
-
'text/x-coldfusion' => %w(text/plain),
|
|
2440
|
-
'text/x-common-lisp' => %w(text/plain),
|
|
2441
|
-
'text/x-config' => %w(text/plain),
|
|
2442
|
-
'text/x-csharp' => %w(text/plain),
|
|
2443
|
-
'text/x-csrc' => %w(text/plain),
|
|
2444
|
-
'text/x-d' => %w(text/plain),
|
|
2445
|
-
'text/x-diff' => %w(text/plain),
|
|
2446
|
-
'text/x-eiffel' => %w(text/plain),
|
|
2447
|
-
'text/x-emacs-lisp' => %w(text/plain),
|
|
2448
|
-
'text/x-erlang' => %w(text/plain),
|
|
2449
|
-
'text/x-expect' => %w(text/plain),
|
|
2450
|
-
'text/x-forth' => %w(text/plain),
|
|
2451
|
-
'text/x-fortran' => %w(text/plain),
|
|
2452
|
-
'text/x-go' => %w(text/plain),
|
|
2453
|
-
'text/x-groovy' => %w(text/plain),
|
|
2454
|
-
'text/x-haml' => %w(text/plain),
|
|
2455
|
-
'text/x-haskell' => %w(text/plain),
|
|
2456
|
-
'text/x-haxe' => %w(text/plain),
|
|
2457
|
-
'text/x-idl' => %w(text/plain),
|
|
2458
|
-
'text/x-ini' => %w(text/plain),
|
|
2459
|
-
'text/x-java-properties' => %w(text/plain),
|
|
2460
|
-
'text/x-java-source' => %w(text/plain),
|
|
2461
|
-
'text/x-jsp' => %w(text/plain),
|
|
2462
|
-
'text/x-less' => %w(text/plain),
|
|
2463
|
-
'text/x-lex' => %w(text/plain),
|
|
2464
|
-
'text/x-log' => %w(text/plain),
|
|
2465
|
-
'text/x-lua' => %w(text/plain),
|
|
2466
|
-
'text/x-ml' => %w(text/plain),
|
|
2467
|
-
'text/x-modula' => %w(text/plain),
|
|
2468
|
-
'text/x-objcsrc' => %w(text/plain),
|
|
2469
|
-
'text/x-ocaml' => %w(text/plain),
|
|
2470
|
-
'text/x-pascal' => %w(text/plain),
|
|
2471
|
-
'text/x-perl' => %w(text/plain),
|
|
2472
|
-
'text/x-php' => %w(text/plain),
|
|
2473
|
-
'text/x-prolog' => %w(text/plain),
|
|
2474
|
-
'text/x-python' => %w(text/plain),
|
|
2475
|
-
'text/x-rexx' => %w(text/plain),
|
|
2476
|
-
'text/x-rsrc' => %w(text/plain),
|
|
2477
|
-
'text/x-rst' => %w(text/plain),
|
|
2478
|
-
'text/x-ruby' => %w(text/plain),
|
|
2479
|
-
'text/x-sass' => %w(text/plain),
|
|
2480
|
-
'text/x-scala' => %w(text/plain),
|
|
2481
|
-
'text/x-scheme' => %w(text/plain),
|
|
2482
|
-
'text/x-scss' => %w(text/plain),
|
|
2483
|
-
'text/x-sed' => %w(text/plain),
|
|
2484
|
-
'text/x-setext' => %w(text/plain),
|
|
2485
|
-
'text/x-sql' => %w(text/plain),
|
|
2486
|
-
'text/x-stsrc' => %w(text/plain),
|
|
2487
|
-
'text/x-tcl' => %w(text/plain),
|
|
2488
|
-
'text/x-vbasic' => %w(text/x-basic),
|
|
2489
|
-
'text/x-vbdotnet' => %w(text/x-vbasic),
|
|
2490
|
-
'text/x-vbscript' => %w(text/x-vbasic),
|
|
2491
|
-
'text/x-vcalendar' => %w(text/plain),
|
|
2492
|
-
'text/x-vcard' => %w(text/plain),
|
|
2493
|
-
'text/x-verilog' => %w(text/plain),
|
|
2494
|
-
'text/x-vhdl' => %w(text/plain),
|
|
2495
|
-
'text/x-web-markdown' => %w(text/plain),
|
|
2496
|
-
'text/x-yacc' => %w(text/plain),
|
|
2497
|
-
'text/x-yaml' => %w(text/plain),
|
|
2498
|
-
'video/iso.segment' => %w(video/quicktime),
|
|
2499
|
-
'video/mj2' => %w(image/x-jp2-container),
|
|
2500
|
-
'video/mp4' => %w(video/quicktime),
|
|
2501
|
-
'video/ogg' => %w(application/ogg),
|
|
2502
|
-
'video/quicktime' => %w(application/quicktime),
|
|
2503
|
-
'video/webm' => %w(application/x-matroska),
|
|
2504
|
-
'video/x-dirac' => %w(video/ogg),
|
|
2505
|
-
'video/x-m4v' => %w(video/mp4),
|
|
2506
|
-
'video/x-matroska' => %w(application/x-matroska),
|
|
2507
|
-
'video/x-ms-wmv' => %w(video/x-ms-asf),
|
|
2508
|
-
'video/x-ogm' => %w(video/ogg),
|
|
2509
|
-
}
|
|
2510
|
-
b = Hash.new { |h, k| h[k] = k.b.freeze }
|
|
2511
|
-
# @private
|
|
2512
|
-
# :nodoc:
|
|
2513
|
-
MAGIC = [
|
|
2514
|
-
['image/jpeg', [[0, b["\377\330\377"]]]],
|
|
2515
|
-
['image/png', [[0, b["\211PNG\r\n\032\n"]]]],
|
|
2516
|
-
['image/gif', [[0, b['GIF87a']], [0, b['GIF89a']]]],
|
|
2517
|
-
['image/tiff', [[0, b["MM\000*"]], [0, b["II*\000"]], [0, b["MM\000+"]]]],
|
|
2518
|
-
['image/bmp', [[0, b['BM'], [[26, b["\001\000"], [[28, b["\000\000"]], [28, b["\001\000"]], [28, b["\004\000"]], [28, b["\b\000"]], [28, b["\020\000"]], [28, b["\030\000"]], [28, b[" \000"]]]]]]]],
|
|
2519
|
-
['image/vnd.adobe.photoshop', [[0, b["8BPS\000\001"]], [0, b["8BPS\000\002"]]]],
|
|
2520
|
-
['image/webp', [[0, b['RIFF'], [[8, b['WEBP']]]]]],
|
|
2521
|
-
['text/html', [[0, b['(?i)<(html|head|body|title|div)[ >]']], [0, b['(?i)<h[123][ >]']]]],
|
|
2522
|
-
['image/svg+xml', [[0..4096, b['<svg']]]],
|
|
2523
|
-
['video/x-msvideo', [[0, b['RIFF'], [[8, b['AVI ']]]], [8, b['AVI ']]]],
|
|
2524
|
-
['video/x-ms-wmv', [[0..8192, b['Windows Media Video']], [0..8192, b['VC-1 Advanced Profile']], [0..8192, b['wmv2']]]],
|
|
2525
|
-
['video/mp4', [[4, b['ftypmp41']], [4, b['ftypmp42']]]],
|
|
2526
|
-
['audio/mp4', [[4, b['ftypM4A ']], [4, b['ftypM4B ']], [4, b['ftypF4A ']], [4, b['ftypF4B ']]]],
|
|
2527
|
-
['video/quicktime', [[4, b["moov\000"]], [4, b["mdat\000"]], [4, b["free\000"]], [4, b["skip\000"]], [4, b["pnot\000"]], [4, b['ftyp']], [0, b["\000\000\000\bwide"]]]],
|
|
2528
|
-
['video/mpeg', [[0, b["\000\000\001\263"]], [0, b["\000\000\001\272"]]]],
|
|
2529
|
-
['video/webm', [[0, b["\032E\337\243"], [[4..4096, b["B\202"], [[4..4096, b['webm'], [[4..4096, b['V_VP8']], [4..4096, b['V_VP9']], [4..4096, b['V_AV1']]]]]]]]]],
|
|
2530
|
-
['video/x-matroska', [[0, b["\032E\337\243\223B\202\210matroska"]]]],
|
|
2531
|
-
['video/x-flv', [[0, b['FLV']]]],
|
|
2532
|
-
['audio/mpeg', [[0, b["\377\362"]], [0, b["\377\363"]], [0, b["\377\364"]], [0, b["\377\365"]], [0, b["\377\366"]], [0, b["\377\367"]], [0, b["\377\372"]], [0, b["\377\373"]], [0, b["\377\374"]], [0, b["\377\375"]], [0, b["\377\343"]], [0, b["\377\377"]], [0, b['ID3']], [0, b["(?:\\\\015\\\\012|\\\\000{1,1024})(?:\\\\377[\\\\343\\\\362\\\\363\\\\364\\\\365\\\\366\\\\367\\\\370\\\\371\\\\372\\\\373\\\\374\\\\375\\\\376\\\\377]|ID3)"]]]],
|
|
2533
|
-
['application/pdf', [[0, b['%PDF-']], [0, b["\357\273\277%PDF-"]]]],
|
|
2534
|
-
['application/msword', [[2080, b['Microsoft Word 6.0 Document']], [2080, b['Documento Microsoft Word 6']], [2112, b['MSWordDoc']], [0, b["1\276\000\000"]], [0, b['PO^Q`']], [0, b["\3767\000#"]], [0, b["\333\245-\000\000\000"]], [0, b["\224\246."]], [0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000o\000r\000d\000D\000o\000c\000u\000m\000e\000n\000t"]]]]]],
|
|
2535
|
-
['application/vnd.openxmlformats-officedocument.wordprocessingml.document', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['word/']]]], [30, b['_rels/.rels'], [[0..4096, b['word/']]]]]]]],
|
|
2536
|
-
['application/vnd.ms-powerpoint', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["P\000o\000w\000e\000r\000P\000o\000i\000n\000t\000 D\000o\000c\000u\000m\000e\000n\000t"]]]]]],
|
|
2537
|
-
['application/vnd.openxmlformats-officedocument.presentationml.presentation', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['ppt/']]]], [30, b['_rels/.rels'], [[0..4096, b['ppt/']]]]]]]],
|
|
2538
|
-
['application/vnd.ms-excel', [[2080, b['Microsoft Excel 5.0 Worksheet']], [2080, b['Foglio di lavoro Microsoft Exce']], [2114, b['Biff5']], [2121, b['Biff5']], [0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000o\000r\000k\000b\000o\000o\000k"]]]]]],
|
|
2539
|
-
['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['xl/']]]], [30, b['_rels/.rels'], [[0..4096, b['xl/']]]]]]]],
|
|
2540
|
-
['image/x-tga', [[1, b["\001\001\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]], [1, b["\000\002\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]], [1, b["\000\003\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]]]],
|
|
2541
|
-
['application/x-endnote-refer', [[0..50, b['%A '], [[0..1000, b["\n%D "], [[0..1000, b["\n%T "]]]]]]]],
|
|
2542
|
-
['application/x-ms-owner', [[0, b["(?s)^([\\\\005-\\\\017])[\\\\000\\\\040-\\\\176]{10}.{43}\\\\1\\000"]]]],
|
|
2543
|
-
['application/x-tmx', [[0..256, b['<tmx']]]],
|
|
2544
|
-
['application/mbox', [[0, b['From '], [[32..256, b["\nFrom: "]], [32..256, b["\nDate: "]], [32..256, b["\nSubject: "]], [32..256, b["\nDelivered-To: "]], [32..256, b["\nReceived: by "]], [32..256, b["\nReceived: via "]], [32..256, b["\nReceived: from "]], [32..256, b["\nMime-Version: "]], [32..256, b["\nX-"], [[32..8192, b["\nFrom: "]], [32..8192, b["\nDate: "]], [32..8192, b["\nSubject: "]], [32..8192, b["\nDelivered-To: "]], [32..8192, b["\nReceived: by "]], [32..8192, b["\nReceived: via "]], [32..8192, b["\nReceived: from "]], [32..8192, b["\nMime-Version: "]]]]]]]],
|
|
2545
|
-
['application/x-bplist', [[0, b["bplist\000\000"]], [0, b["bplist\000\001"]], [0, b["bplist@\000"]], [0, b['bplist00']], [0, b['bplist01']], [0, b['bplist10']], [0, b['bplist15']], [0, b['bplist16']]]],
|
|
2546
|
-
['application/x-dvd-ifo', [[0, b['DVDVIDEO-VTS']], [0, b['DVDVIDEO-VMG']]]],
|
|
2547
|
-
['application/x-ebu-stl', [[3, b['STL'], [[8, b['.01']]]]]],
|
|
2548
|
-
['application/x-ms-nls', [[0, b["(?s)^\\\\015.{51}\\\\014\\\\000\\\\015\\\\000\\\\016"]], [0, b["(?s)^\\\\104\\\\103.\\\\001"]]]],
|
|
2549
|
-
['message/x-emlx', [[2..9, b["\nRelay-Version:"]], [2..9, b["\n#! rnews"]], [2..9, b["\nN#! rnews"]], [2..9, b["\nForward to"]], [2..9, b["\nPipe to"]], [2..9, b["\nReturn-Path:"]], [2..9, b["\nFrom:"]], [2..9, b["\nReceived:"]], [2..9, b["\nMessage-ID:"]], [2..9, b["\nDate:"]]]],
|
|
2550
|
-
['application/cbor', [[0, b["\331\331\367"]]]],
|
|
2551
|
-
['application/coreldraw', [[0, b['RIFF'], [[8, b['CDR']], [8, b['cdr']], [8, b['DES']], [8, b['des']]]]]],
|
|
2552
|
-
['application/illustrator+ps', [[0..8192, b["[\\r\\n]%AI5_FileFormat [1-4][\\r\\n]"]]]],
|
|
2553
|
-
['application/vnd.etsi.asic-e+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/vnd.etsi.asic-e+zip']]]]]],
|
|
2554
|
-
['application/vnd.etsi.asic-s+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/vnd.etsi.asic-s+zip']]]]]],
|
|
2555
|
-
['application/vnd.ms-excel.sheet.2', [[0, b["\t\000\004\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
|
|
2556
|
-
['application/vnd.ms-excel.sheet.3', [[0, b["\t\002\006\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
|
|
2557
|
-
['application/vnd.ms-excel.sheet.4', [[0, b["\t\004\006\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
|
|
2558
|
-
['application/vnd.ms-excel.workspace.3', [[0, b["\t\002\006\000"], [[4, b["\000\000\000\001"]]]]]],
|
|
2559
|
-
['application/vnd.ms-excel.workspace.4', [[0, b["\t\004\006\000"], [[4, b["\000\000\000\001"]]]]]],
|
|
2560
|
-
['application/vnd.tcpdump.pcap', [[0, b["\241\262\303\324"]], [0, b["\324\303\262\241"]]]],
|
|
2561
|
-
['application/vnd.tcpdump.pcapng', [[0, b["\n\r\r\n"], [[8, b["\241\262\303\324"]], [8, b["M<+\032"]]]]]],
|
|
2562
|
-
['application/warc', [[0, b['WARC/']]]],
|
|
2563
|
-
['application/x-activemime', [[0, b["ActiveMime\000\000"]]]],
|
|
2564
|
-
['application/x-axcrypt', [[0, b["\300\271\a.O\223\361F\240\025y,\241\331\350!"], [[17, b["\000\000\000\002"]]]]]],
|
|
2565
|
-
['application/x-bentley-besqlite', [[0, b["SQLite format 3\000"], [[68, b['BeDb']]]]]],
|
|
2566
|
-
['application/x-bentley-localization', [[0, b["SQLite format 3\000"], [[68, b['BeLn']]]]]],
|
|
2567
|
-
['application/x-berkeley-db;format=btree;version=2', [[12, b["b1\005\000"], [[16, b["\006\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\006"]]]], [12, b["b1\005\000"], [[16, b["\006\000\000\000"]]]]]],
|
|
2568
|
-
['application/x-berkeley-db;format=btree;version=3', [[12, b["b1\005\000"], [[16, b["\b\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\b"]]]], [12, b["b1\005\000"], [[16, b["\b\000\000\000"]]]]]],
|
|
2569
|
-
['application/x-berkeley-db;format=btree;version=4', [[12, b["b1\005\000"], [[16, b["\t\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\t"]]]], [12, b["b1\005\000"], [[16, b["\t\000\000\000"]]]]]],
|
|
2570
|
-
['application/x-berkeley-db;format=hash;version=2', [[12, b["a\025\006\000"], [[16, b["\005\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\005"]]]], [12, b["a\025\006\000"], [[16, b["\005\000\000\000"]]]]]],
|
|
2571
|
-
['application/x-berkeley-db;format=hash;version=3', [[12, b["a\025\006\000"], [[16, b["\a\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\a"]]]], [12, b["a\025\006\000"], [[16, b["\a\000\000\000"]]]]]],
|
|
2572
|
-
['application/x-berkeley-db;format=hash;version=4', [[12, b["a\025\006\000"], [[16, b["\b\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\b"]]]], [12, b["a\025\006\000"], [[16, b["\b\000\000\000"]]]]]],
|
|
2573
|
-
['application/x-berkeley-db;format=hash;version=5', [[12, b["a\025\006\000"], [[16, b["\t\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\t"]]]], [12, b["a\025\006\000"], [[16, b["\t\000\000\000"]]]]]],
|
|
2574
|
-
['application/x-bplist', [[0, b['bplist']]]],
|
|
2575
|
-
['application/x-debian-package', [[0, b["!<arch>\ndebian-binary"]], [0, b["!<arch>\ndebian-split"]]]],
|
|
2576
|
-
['application/x-esri-spatially-enabled-db', [[0, b["SQLite format 3\000"], [[68, b['Esri']]]]]],
|
|
2577
|
-
['application/x-font-type1', [[0, b["\200\001"], [[4, b["\000\000%!PS-AdobeFont"]]]], [0, b['%!PS-AdobeFont-1.0']]]],
|
|
2578
|
-
['application/x-fossil-checkout', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\022"]]]]]],
|
|
2579
|
-
['application/x-fossil-global-conf', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\023"]]]]]],
|
|
2580
|
-
['application/x-fossil-repository', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\021"]]]]]],
|
|
2581
|
-
['application/x-geopackage', [[0, b["SQLite format 3\000"], [[68, b['GPKG']]]]]],
|
|
2582
|
-
['application/x-geopackage; version=1.1Or1.0', [[0, b["SQLite format 3\000"], [[68, b['GP10']]]]]],
|
|
2583
|
-
['application/x-httpresponse', [[0, b['HTTP/'], [[0..1000, b["\nCache-Control:"]], [0..1000, b["\nContent-Type:"]], [0..1000, b["\nContent-Length:"]], [0..1000, b["\nContent-Disposition:"]], [0..1000, b["\nDate:"]], [0..1000, b["\nServer:"]]]], [0, nil]]],
|
|
2584
|
-
['application/x-internet-archive', [[0, b['filedesc://']]]],
|
|
2585
|
-
['application/x-lz4', [[0, b["\004\"M\030"]], [0, b["\002!L\030"]]]],
|
|
2586
|
-
['application/x-mach-o-universal', [[0, b["\312\376\272\276"], [[4, b["\000\000\000\001"]], [4, b["\000\000\000\002"]], [4, b["\000\000\000\003"]], [4, b["\000\000\000\004"]], [4, b["\000\000\000\005"]], [4, b["\000\000\000\006"]], [4, b["\000\000\000\a"]], [4, b["\000\000\000\b"]], [4, b["\000\000\000\t"]], [4, b["\000\000\000\n"]], [4, b["\000\000\000\v"]], [4, b["\000\000\000\f"]], [4, b["\000\000\000\r"]], [4, b["\000\000\000\016"]], [4, b["\000\000\000\017"]], [4, b["\000\000\000\020"]], [4, b["\000\000\000\021"]], [4, b["\000\000\000\022"]], [4, b["\000\000\000\023"]]]], [0, b["\276\272\376\312"], [[4, b["\001\000\000\000"]], [4, b["\002\000\000\000"]], [4, b["\003\000\000\000"]], [4, b["\004\000\000\000"]], [4, b["\005\000\000\000"]], [4, b["\006\000\000\000"]], [4, b["\a\000\000\000"]], [4, b["\b\000\000\000"]], [4, b["\t\000\000\000"]], [4, b["\n\000\000\000"]], [4, b["\v\000\000\000"]], [4, b["\f\000\000\000"]], [4, b["\r\000\000\000"]], [4, b["\016\000\000\000"]], [4, b["\017\000\000\000"]], [4, b["\020\000\000\000"]], [4, b["\021\000\000\000"]], [4, b["\022\000\000\000"]], [4, b["\023\000\000\000"]]]], [0, b["\312\376\272\277"], [[4, b["\000\000\000\001"]], [4, b["\000\000\000\002"]], [4, b["\000\000\000\003"]], [4, b["\000\000\000\004"]], [4, b["\000\000\000\005"]], [4, b["\000\000\000\006"]], [4, b["\000\000\000\a"]], [4, b["\000\000\000\b"]], [4, b["\000\000\000\t"]], [4, b["\000\000\000\n"]], [4, b["\000\000\000\v"]], [4, b["\000\000\000\f"]], [4, b["\000\000\000\r"]], [4, b["\000\000\000\016"]], [4, b["\000\000\000\017"]], [4, b["\000\000\000\020"]], [4, b["\000\000\000\021"]], [4, b["\000\000\000\022"]], [4, b["\000\000\000\023"]]]], [0, b["\277\272\376\312"], [[4, b["\001\000\000\000"]], [4, b["\002\000\000\000"]], [4, b["\003\000\000\000"]], [4, b["\004\000\000\000"]], [4, b["\005\000\000\000"]], [4, b["\006\000\000\000"]], [4, b["\a\000\000\000"]], [4, b["\b\000\000\000"]], [4, b["\t\000\000\000"]], [4, b["\n\000\000\000"]], [4, b["\v\000\000\000"]], [4, b["\f\000\000\000"]], [4, b["\r\000\000\000"]], [4, b["\016\000\000\000"]], [4, b["\017\000\000\000"]], [4, b["\020\000\000\000"]], [4, b["\021\000\000\000"]], [4, b["\022\000\000\000"]], [4, b["\023\000\000\000"]]]]]],
|
|
2587
|
-
['application/x-mbtiles', [[0, b["SQLite format 3\000"], [[68, b['MPBX']]]]]],
|
|
2588
|
-
['application/x-mobipocket-ebook', [[0..60, b['BOOKMOBI']]]],
|
|
2589
|
-
['application/x-monotone-source-repo', [[0, b["SQLite format 3\000"], [[68, b['_MTN']]]]]],
|
|
2590
|
-
['application/x-msaccess', [[0, b["\000\001\000\000Stan"]]]],
|
|
2591
|
-
['application/x-msdownload;format=pe-arm7', [[128, b["pe\000\000"], [[132, b["\304\001"]]]], [240, b["pe\000\000"], [[244, b["\304\001"]]]]]],
|
|
2592
|
-
['application/x-msdownload;format=pe-armLE', [[128, b["pe\000\000"], [[132, b["\300\001"]]]], [240, b["pe\000\000"], [[244, b["\300\001"]]]]]],
|
|
2593
|
-
['application/x-msdownload;format=pe-itanium', [[128, b["PE\000\000"], [[132, b["\000\002"]]]], [240, b["PE\000\000"], [[244, b["\000\002"]]]]]],
|
|
2594
|
-
['application/x-msdownload;format=pe32', [[128, b["PE\000\000"], [[132, b["L\001"]]]], [240, b["PE\000\000"], [[244, b["L\001"]]]]]],
|
|
2595
|
-
['application/x-msdownload;format=pe64', [[128, b["PE\000\000"], [[132, b["d\206"]]]], [240, b["PE\000\000"], [[244, b["d\206"]]]]]],
|
|
2596
|
-
['application/x-msmoney', [[0, b["\000\001\000\000MSISAM Database"]]]],
|
|
2597
|
-
['application/x-rar-compressed;version=4', [[0, b["Rar!\032\a\000"]]]],
|
|
2598
|
-
['application/x-rar-compressed;version=5', [[0, b["Rar!\032\a\001\000"]]]],
|
|
2599
|
-
['application/x-shapefile', [[0, b["\000\000'\n"]]]],
|
|
2600
|
-
['application/x-stata-dta;version=10', [[0, b['<stata_dta><header><release>114</release>']]]],
|
|
2601
|
-
['application/x-stata-dta;version=12', [[0, b['<stata_dta><header><release>115</release>']]]],
|
|
2602
|
-
['application/x-stata-dta;version=13', [[0, b['<stata_dta><header><release>117</release>']]]],
|
|
2603
|
-
['application/x-stata-dta;version=14', [[0, b['<stata_dta><header><release>118</release>']]]],
|
|
2604
|
-
['application/x-stata-dta;version=8', [[0, b['<stata_dta><header><release>113</release>']]]],
|
|
2605
|
-
['application/x-texnicard', [[0, b["SQLite format 3\000"], [[68, b["j\003WD"]]]]]],
|
|
2606
|
-
['application/x-tika-msworks-spreadsheet', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000k\000s\000S\000S\000W\000o\000r\000k\000B\000o\000o\000k"]]]]]],
|
|
2607
|
-
['audio/opus', [[0, b['OggS'], [[29, b['pusHead']]]]]],
|
|
2608
|
-
['audio/speex', [[0, b['OggS'], [[29, b['peex ']]]]]],
|
|
2609
|
-
['audio/vorbis', [[0, b['OggS'], [[29, b['vorbis']]]]]],
|
|
2610
|
-
['audio/x-caf', [[0, b["caff\000\000"]], [0, b["caff\000\001"]], [0, b["caff\000\002"]], [0, b["caff@\000"]], [0, b["caff\200\000"]]]],
|
|
2611
|
-
['audio/x-oggflac', [[0, b['OggS'], [[29, b['LAC']]]]]],
|
|
2612
|
-
['audio/x-oggpcm', [[0, b['OggS'], [[29, b['CM ']]]]]],
|
|
2613
|
-
['image/avif', [[4, b['ftypavif']]]],
|
|
2614
|
-
['image/heic', [[4, b['ftypheic']], [4, b['ftypheix']]]],
|
|
2615
|
-
['image/heic-sequence', [[4, b['ftyphevc']], [4, b['ftyphevx']]]],
|
|
2616
|
-
['image/heif', [[4, b['ftypmif1']]]],
|
|
2617
|
-
['image/heif-sequence', [[4, b['ftypmsf1']]]],
|
|
2618
|
-
['image/x-canon-cr2', [[0, b["MM\000*"], [[8, b['CR']]]], [0, b["II*\000"], [[8, b['CR']]]], [0, b["MM\000+"], [[8, b['CR']]]]]],
|
|
2619
|
-
['image/x-canon-cr3', [[4, b['ftypcrx ']]]],
|
|
2620
|
-
['message/news', [[0, b['Path:']], [0, b['Xref:']]]],
|
|
2621
|
-
['model/e57', [[0, b['ASTM-E57']]]],
|
|
2622
|
-
['model/vnd.dwf;version=2', [[0, b['(DWF V00.22)']]]],
|
|
2623
|
-
['model/vnd.dwf;version=5', [[0, b['(DWF V00.55)']]]],
|
|
2624
|
-
['model/vnd.dwf;version=6', [[0, b['(DWF V06.'], [[11, b[')PK']]]]]],
|
|
2625
|
-
['model/x.stl-ascii', [[0, b['solid '], [[7..256, b['facet ']]]]]],
|
|
2626
|
-
['multipart/related', [[0, b['From: <Saved by Windows Internet Explorer 8>']], [0, b["From: \"Saved by Internet Explorer 11\""]], [0, b['MIME-Version: 1.0'], [[16..512, b["\nContent-Type: multipart/related"]]]]]],
|
|
2627
|
-
['video/3gpp', [[4, b['ftyp3ge6']], [4, b['ftyp3ge7']], [4, b['ftyp3gg6']], [4, b['ftyp3gp1']], [4, b['ftyp3gp2']], [4, b['ftyp3gp3']], [4, b['ftyp3gp4']], [4, b['ftyp3gp5']], [4, b['ftyp3gp6']], [4, b['ftyp3gs7']]]],
|
|
2628
|
-
['video/3gpp2', [[4, b['ftyp3g2a']], [4, b['ftyp3g2b']], [4, b['ftyp3g2c']]]],
|
|
2629
|
-
['video/daala', [[0, b['OggS'], [[29, b['daala']]]]]],
|
|
2630
|
-
['video/theora', [[0, b['OggS'], [[29, b['theora']]]]]],
|
|
2631
|
-
['video/x-dirac', [[0, b['OggS'], [[29, b['BCD']]]]]],
|
|
2632
|
-
['video/x-m4v', [[4, b['ftypM4V ']], [4, b['ftypM4VH']], [4, b['ftypM4VP']]]],
|
|
2633
|
-
['video/x-oggrgb', [[0, b['OggS'], [[29, b['RGB']]]]]],
|
|
2634
|
-
['video/x-ogguvs', [[0, b['OggS'], [[29, b['VS ']]]]]],
|
|
2635
|
-
['video/x-oggyuv', [[0, b['OggS'], [[29, b['YUV']]]]]],
|
|
2636
|
-
['video/x-ogm', [[0, b['OggS'], [[29, b['ideo']]]]]],
|
|
2637
|
-
['application/x-mach-o-bundle', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\b"]]]], [0, b["\316\372\355\376"], [[12, b["\b\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\b"]]]], [0, b["\317\372\355\376"], [[12, b["\b\000\000\000"]]]]]],
|
|
2638
|
-
['application/x-mach-o-core', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\004"]]]], [0, b["\316\372\355\376"], [[12, b["\004\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\004"]]]], [0, b["\317\372\355\376"], [[12, b["\004\000\000\000"]]]]]],
|
|
2639
|
-
['application/x-mach-o-dsym', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\n"]]]], [0, b["\316\372\355\376"], [[12, b["\n\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\n"]]]], [0, b["\317\372\355\376"], [[12, b["\n\000\000\000"]]]]]],
|
|
2640
|
-
['application/x-mach-o-dylib', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\006"]]]], [0, b["\316\372\355\376"], [[12, b["\006\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\006"]]]], [0, b["\317\372\355\376"], [[12, b["\006\000\000\000"]]]]]],
|
|
2641
|
-
['application/x-mach-o-dylib-stub', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\t"]]]], [0, b["\316\372\355\376"], [[12, b["\t\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\t"]]]], [0, b["\317\372\355\376"], [[12, b["\t\000\000\000"]]]]]],
|
|
2642
|
-
['application/x-mach-o-dylinker', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\a"]]]], [0, b["\316\372\355\376"], [[12, b["\a\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\a"]]]], [0, b["\317\372\355\376"], [[12, b["\a\000\000\000"]]]]]],
|
|
2643
|
-
['application/x-mach-o-executable', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\002"]]]], [0, b["\316\372\355\376"], [[12, b["\002\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\002"]]]], [0, b["\317\372\355\376"], [[12, b["\002\000\000\000"]]]]]],
|
|
2644
|
-
['application/x-mach-o-fvmlib', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\003"]]]], [0, b["\316\372\355\376"], [[12, b["\003\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\003"]]]], [0, b["\317\372\355\376"], [[12, b["\003\000\000\000"]]]]]],
|
|
2645
|
-
['application/x-mach-o-kext-bundle', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\v"]]]], [0, b["\316\372\355\376"], [[12, b["\v\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\v"]]]], [0, b["\317\372\355\376"], [[12, b["\v\000\000\000"]]]]]],
|
|
2646
|
-
['application/x-mach-o-object', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\001"]]]], [0, b["\316\372\355\376"], [[12, b["\001\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\001"]]]], [0, b['0xCFFAEDFE'], [[12, b["\001\000\000\000"]]]]]],
|
|
2647
|
-
['application/x-mach-o-preload', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\005"]]]], [0, b["\316\372\355\376"], [[12, b["\005\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\005"]]]], [0, b["\317\372\355\376"], [[12, b["\005\000\000\000"]]]]]],
|
|
2648
|
-
['application/x-msdownload;format=pe', [[0, b['MZ'], [[128, b["PE\000\000"]], [176, b["PE\000\000"]], [208, b["PE\000\000"]], [240, b["PE\000\000"]]]]]],
|
|
2649
|
-
['text/x-robots', [[0, nil, [[0, b['user-agent:']], [0, b['allow:']], [0, b['disallow:']], [0, b['sitemap:']], [0..1000, b["\nuser-agent:"]], [0..1000, b["\nallow:"]], [0..1000, b["\ndisallow:"]], [0..1000, b["\nsitemap:"]]]]]],
|
|
2650
|
-
['application/applefile', [[0, b["\000\005\026\000"]]]],
|
|
2651
|
-
['application/dash+xml', [[0, b['<MPD']]]],
|
|
2652
|
-
['application/dicom', [[128, b['DICM']]]],
|
|
2653
|
-
['application/epub+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/epub+zip']]]]]],
|
|
2654
|
-
['application/fits', [[0, b['SIMPLE = T']], [0, b['SIMPLE = T']]]],
|
|
2655
|
-
['application/java-vm', [[0, b["\312\376\272\276"]]]],
|
|
2656
|
-
['application/mac-binhex40', [[11, b['must be converted with BinHex']]]],
|
|
2657
|
-
['application/marc', [[0, b['[0-9]{5,5}'], [[20, b['45'], [[5, b['[acdnp][acdefgijkmoprt][abcdims]']], [5, b['[acdnosx]z']], [5, b['[cdn][uvxy]']], [5, b['[acdn]w']], [5, b['[cdn]q']]]]]]]],
|
|
2658
|
-
['application/mathematica', [[0, b['(**']], [0, b['(* ']]]],
|
|
2659
|
-
['application/msword', [[0..8, b["\320\317\021\340\241\261\032\341"], [[546, b['jbjb']], [546, b['bjbj']]]]]],
|
|
2660
|
-
['application/msword2', [[0, b["\233\245"]], [0, b["\333\245"]]]],
|
|
2661
|
-
['application/msword5', [[0, b["\3767"]]]],
|
|
2662
|
-
['application/octet-stream', [[10, b['# This is a shell archive']], [0, b["\037\036"]], [0, b["\037\037"]], [0, b["\377\037"]], [0, b["\377\037"]], [0, b["\005\313"]]]],
|
|
2663
|
-
['application/ogg', [[0, b['OggS']]]],
|
|
2664
|
-
['application/onenote;format=one', [[0, b["\344R\\{"], [[4, b["\214\330"], [[6, b["\247M"], [[8, b['0xAEB15378D02996D3']]]]]]]]]],
|
|
2665
|
-
['application/onenote;format=onetoc2', [[0, b["\241/\377C"], [[4, b["\331\357"], [[6, b['vL'], [[8, b['0x9EE210EA5722765F']]]]]]]]]],
|
|
2666
|
-
['application/pgp-encrypted', [[0, b["\205"], [[3, b["\003"]]]]]],
|
|
2667
|
-
['application/pkcs7-signature', [[0, b['-----BEGIN PKCS7']], [0, b['0x3080'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3081'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3082'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3083'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3084'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]]]],
|
|
2668
|
-
['application/postscript', [[0, b['%!']], [0, b["\004%!"]], [0, b["\305\320\323\306"]], [0, b['%!PS-Adobe-3.0 EPSF-3.0']]]],
|
|
2669
|
-
['application/rtf', [[0, b["{\\rtf"]]]],
|
|
2670
|
-
['application/sereal;version=1', [[0, b['=srl']]]],
|
|
2671
|
-
['application/sereal;version=2', [[0, b['=srl']]]],
|
|
2672
|
-
['application/sereal;version=3', [[0, b["=\363rl"]]]],
|
|
2673
|
-
['application/timestamped-data', [[0, b["0\200\006\v*\206H\206\367"]]]],
|
|
2674
|
-
['application/vnd.apple.mpegurl', [[0, b['#EXTM3U']]]],
|
|
2675
|
-
['application/vnd.digilite.prolights', [[0, b["\177\fD+"]]]],
|
|
2676
|
-
['application/vnd.fdf', [[0, b['%FDF-']]]],
|
|
2677
|
-
['application/vnd.iccprofile', [[36, b['acsp']]]],
|
|
2678
|
-
['application/vnd.isac.fcs', [[0, b["FCS[1-3]\\\\.[0-9] "]]]],
|
|
2679
|
-
['application/vnd.java.hprof ', [[0, b["JAVA PROFILE \\\\d\\\\.\\\\d\\\\.\\\\d\\\\u0000"]]]],
|
|
2680
|
-
['application/vnd.java.hprof.text', [[0, b["JAVA PROFILE \\\\d\\\\.\\\\d\\\\.\\\\d,"]]]],
|
|
2681
|
-
['application/vnd.lotus-1-2-3;version=1', [[0, b["\000\000\002\000\004\004"]]]],
|
|
2682
|
-
['application/vnd.lotus-1-2-3;version=2', [[0, b["\000\000\002\000\006\004\006\000\b\000"]]]],
|
|
2683
|
-
['application/vnd.lotus-1-2-3;version=3', [[0, b["\000\000\032\000\000\020\004\000"]]]],
|
|
2684
|
-
['application/vnd.lotus-1-2-3;version=4', [[0, b["\000\000\032\000\002\020\004\000"]]]],
|
|
2685
|
-
['application/vnd.lotus-1-2-3;version=97+9.x', [[0, b["\000\000\032\000\003\020\004\000"]]]],
|
|
2686
|
-
['application/vnd.lotus-wordpro', [[0, b["WordPro\000"]], [0, b["WordPro\r\373"]]]],
|
|
2687
|
-
['application/vnd.mif', [[0, b['<MakerFile']], [0, b['<MIFFile']], [0, b['<MakerDictionary']], [0, b['<MakerScreenFont']], [0, b['<MML']], [0, b['<Book']], [0, b['<Maker']]]],
|
|
2688
|
-
['application/vnd.ms-cab-compressed', [[0, b["MSCF\000\000\000\000"]]]],
|
|
2689
|
-
['application/vnd.ms-cab-compressed', [[0, b['MSCF']]]],
|
|
2690
|
-
['application/vnd.ms-fontobject', [[8, b["\002\000\002\000"], [[34, b['LP']]]]]],
|
|
2691
|
-
['application/vnd.ms-htmlhelp', [[0, b['ITSF']]]],
|
|
2692
|
-
['application/vnd.ms-outlook-pst', [[0, b['!BDN'], [[8, b['SM']]]]]],
|
|
2693
|
-
['application/vnd.ms-tnef', [[0, b["x\237>\""]]]],
|
|
2694
|
-
['application/vnd.ms-works', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["M\000a\000t\000O\000S\000T"]]]]]],
|
|
2695
|
-
['application/vnd.oasis.opendocument.chart', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.chart']]]]]],
|
|
2696
|
-
['application/vnd.oasis.opendocument.chart-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.chart-template']]]]]],
|
|
2697
|
-
['application/vnd.oasis.opendocument.formula', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.formula']]]]]],
|
|
2698
|
-
['application/vnd.oasis.opendocument.formula-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.formula-template']]]]]],
|
|
2699
|
-
['application/vnd.oasis.opendocument.graphics', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.graphics']]]]]],
|
|
2700
|
-
['application/vnd.oasis.opendocument.graphics-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.graphics-template']]]]]],
|
|
2701
|
-
['application/vnd.oasis.opendocument.image', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.image']]]]]],
|
|
2702
|
-
['application/vnd.oasis.opendocument.image-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.image-template']]]]]],
|
|
2703
|
-
['application/vnd.oasis.opendocument.presentation', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.presentation']]]]]],
|
|
2704
|
-
['application/vnd.oasis.opendocument.presentation-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.presentation-template']]]]]],
|
|
2705
|
-
['application/vnd.oasis.opendocument.spreadsheet', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.spreadsheet']]]]]],
|
|
2706
|
-
['application/vnd.oasis.opendocument.spreadsheet-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.spreadsheet-template']]]]]],
|
|
2707
|
-
['application/vnd.oasis.opendocument.text', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text']]]]]],
|
|
2708
|
-
['application/vnd.oasis.opendocument.text-master', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-master']]]]]],
|
|
2709
|
-
['application/vnd.oasis.opendocument.text-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-template']]]]]],
|
|
2710
|
-
['application/vnd.oasis.opendocument.text-web', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-web']]]]]],
|
|
2711
|
-
['application/vnd.rn-realmedia', [[0, b['.RMF']]]],
|
|
2712
|
-
['application/vnd.stardivision.calc', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarCalc']]]]]],
|
|
2713
|
-
['application/vnd.stardivision.draw', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarDraw']]]]]],
|
|
2714
|
-
['application/vnd.stardivision.impress', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarImpress']]]]]],
|
|
2715
|
-
['application/vnd.stardivision.writer', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarWriter']]]]]],
|
|
2716
|
-
['application/vnd.sun.xml.writer', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.sun.xml.writer']]]]]],
|
|
2717
|
-
['application/vnd.symbian.install', [[8, b["\031\004\000\020"]]]],
|
|
2718
|
-
['application/vnd.wolfram.wl', [[0, b['#!/usr/bin/env wolframscript']]]],
|
|
2719
|
-
['application/vnd.wordperfect', [[0, b['application/vnd.wordperfect;']]]],
|
|
2720
|
-
['application/vnd.wordperfect;version=4.2', [[0, b["\313\n\001"], [[5, b["\313"]]]]]],
|
|
2721
|
-
['application/vnd.wordperfect;version=5.0', [[0, b["\377WPC"], [[10, b["\000\000"]]]]]],
|
|
2722
|
-
['application/vnd.wordperfect;version=5.1', [[0, b["\377WPC"], [[10, b["\000\001"]]]]]],
|
|
2723
|
-
['application/vnd.wordperfect;version=6.x', [[0, b["\377WPC"], [[10, b["\002\001"]]]]]],
|
|
2724
|
-
['application/vnd.xara', [[0, b['xar!']]]],
|
|
2725
|
-
['application/wasm', [[0, b["\000asm"]], [0, b["msa\000"]]]],
|
|
2726
|
-
['application/x-7z-compressed', [[0..1, b['7z'], [[2..5, b["\274\257'\034"]]]]]],
|
|
2727
|
-
['application/x-adobe-indesign', [[0, b["\006\006\355\365\330\035F\345\2751\357\347\376t\267\035"]]]],
|
|
2728
|
-
['application/x-adobe-indesign-interchange', [[0..100, b['<?aid']]]],
|
|
2729
|
-
['application/x-amiga-disk-format', [[0, b['DOS'], [[4, b["\000"]], [4, b["\001"]], [4, b["\002"]], [4, b["\003"]], [4, b["\004"]], [4, b["\005"]], [4, b["\006"]], [4, b["\a"]]]]]],
|
|
2730
|
-
['application/x-archive', [[0, b['=<ar>']], [0, b["!<arch>\n"]]]],
|
|
2731
|
-
['application/x-arj', [[0, b["`\352"]]]],
|
|
2732
|
-
['application/x-asprs', [[0, b['LASF'], [[24, b["\001\001"]], [24, b["\001\002"]]]]]],
|
|
2733
|
-
['application/x-atari-floppy-disk-image', [[0, b['0x9602'], [[4, b['0x8000'], [[11, b['0x00000000']]]], [4, b['0x0001'], [[11, b['0x00000000']]]]]]]],
|
|
2734
|
-
['application/x-bat', [[0, b['@echo off']], [0, b['rem ']]]],
|
|
2735
|
-
['application/x-berkeley-db;format=btree', [[0, b["b1\005\000"]], [0, b["\000\0051b"]], [0, b["b1\005\000"]], [12, b["b1\005\000"]], [12, b["\000\0051b"]], [12, b["b1\005\000"]]]],
|
|
2736
|
-
['application/x-berkeley-db;format=hash', [[0, b["a\025\006\000"]], [0, b["\000\006\025a"]], [0, b["a\025\006\000"]], [12, b["a\025\006\000"]], [12, b["\000\006\025a"]], [12, b["a\025\006\000"]]]],
|
|
2737
|
-
['application/x-berkeley-db;format=log', [[12, b["\210\t\004\000"]], [12, b["\210\t\004\000"]], [12, b["\000\004\t\210"]]]],
|
|
2738
|
-
['application/x-berkeley-db;format=queue', [[12, b["S\"\004\000"]], [12, b["\000\004\"S"]], [12, b["S\"\004\000"]]]],
|
|
2739
|
-
['application/x-bibtex-text-file', [[0, b['% BibTeX `']], [73, b['%%% ']], [0, b['% BibTeX standard bibliography ']], [73, b['%%% @BibTeX-style-file{']], [0, b['@article{']], [0, b['@book{']], [0, b['@inbook{']], [0, b['@incollection{']], [0, b['@inproceedings{']], [0, b['@manual{']], [0, b['@misc{']], [0, b['@preamble{']], [0, b['@phdthesis{']], [0, b['@string{']], [0, b['@techreport{']], [0, b['@unpublished{']]]],
|
|
2740
|
-
['application/x-bittorrent', [[0, b['d8:announce']]]],
|
|
2741
|
-
['application/x-cdf', [[0, b["RIFF$\000\000\000CDDAfmt \030"]], [0, nil]]],
|
|
2742
|
-
['application/x-chrome-package', [[0, b['Cr24']]]],
|
|
2743
|
-
['application/x-compress', [[0, b["\037\235"]]]],
|
|
2744
|
-
['application/x-coredump', [[0, b["\177ELF"], [[16, b["\004\000"]], [16, b["\000\004"]]]]]],
|
|
2745
|
-
['application/x-cpio', [[0, b["\307q"]], [0, b["q\307"]], [0, b['070707']], [0, b['070701']], [0, b['070702']]]],
|
|
2746
|
-
['application/x-dex', [[0, b["dex\n"], [[7, b["\000"]]]]]],
|
|
2747
|
-
['application/x-dvi', [[0, b["\367\002"]], [0, b["\367\002"]], [14, b["\e TeX output "]]]],
|
|
2748
|
-
['application/x-elc', [[0, b["\n("]], [0, b[";ELC\023\000\000\000"]]]],
|
|
2749
|
-
['application/x-elf', [[0, b["\177ELF"]]]],
|
|
2750
|
-
['application/x-endnote-style', [[0, b["\000\b"], [[4, b["\000\000"], [[8, b['RSFTSTYL']], [8, b['ENDNENFT']]]]]]]],
|
|
2751
|
-
['application/x-erdas-hfa', [[0, b['EHFA_HEADER_TAG']]]],
|
|
2752
|
-
['application/x-executable', [[0, b["\177ELF"], [[16, b["\002\000"]], [16, b["\000\002"]]]]]],
|
|
2753
|
-
['application/x-fat-diskimage', [[0, b["\\353"], [[2, b["\\220"], [[14, b["(\\001|\\002|\\004|\\010|\\020|\\040\\100|x80)"]]]]]]]],
|
|
2754
|
-
['application/x-filemaker', [[14, b["\300HBAM7"], [[525, b["HBAM2101OCT99\301\002H\aPro 7.0\300\300"]]]]]],
|
|
2755
|
-
['application/x-foxmail', [[0, b["\020\020\020\020\020\020\020\021\021\021\021\021\021S"]]]],
|
|
2756
|
-
['application/x-gnumeric', [[39, b['=<gmr:Workbook']]]],
|
|
2757
|
-
['application/x-grib', [[0, b['GRIB']]]],
|
|
2758
|
-
['application/x-gtar', [[257, b["ustar \000"]]]],
|
|
2759
|
-
['application/x-guitar-pro', [[1, b['FICHIER GUITARE PRO ']], [1, b['FICHIER GUITAR PRO ']]]],
|
|
2760
|
-
['application/x-hdf', [[0, b["\016\003\023\001"]], [0, b["\211HDF\r\n\032"]]]],
|
|
2761
|
-
['application/x-hwp', [[0, b['HWP Document File V']]]],
|
|
2762
|
-
['application/x-ibooks+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/x-ibooks+zip']]]]]],
|
|
2763
|
-
['application/x-idl-save-file', [[0, b["SR\000\004\000\000\000\n\000\000\004"]]]],
|
|
2764
|
-
['application/x-isatab', [[1, b['Source Name']]]],
|
|
2765
|
-
['application/x-isatab-assay', [[1, b['Sample Name']]]],
|
|
2766
|
-
['application/x-isatab-investigation', [[0, b['ONTOLOGY SOURCE REFERENCE']]]],
|
|
2767
|
-
['application/x-iso9660-image', [[32769, b['CD001']], [34817, b['CD001']], [36865, b['CD001']]]],
|
|
2768
|
-
['application/x-java-keystore', [[0..4, b["\376\355\376\355"]]]],
|
|
2769
|
-
['application/x-jeol-jdf', [[0, b['JEOL.NMR']], [0, b['RMN.LOEJ']]]],
|
|
2770
|
-
['application/x-jigdo', [[0, b['JigsawDownload template']]]],
|
|
2771
|
-
['application/x-kdelnk', [[0, b['[KDE Desktop Entry]']], [0, b['# KDE Config File']]]],
|
|
2772
|
-
['application/x-latex', [[0, b['% -*-latex-*-']]]],
|
|
2773
|
-
['application/x-lha', [[2, b['-lzs-']], [2, b['-lh -']], [2, b['-lhd-']], [2, b['-lh2-']], [2, b['-lh3-']], [2, b['-lh4-']], [2, b['-lh5-']], [2, b['-lh6-']], [2, b['-lh7-']]]],
|
|
2774
|
-
['application/x-lharc', [[2, b['-lh0-']], [2, b['-lh1-']], [2, b['-lz4-']], [2, b['-lz5-']]]],
|
|
2775
|
-
['application/x-lzip', [[0, b['LZIP']]]],
|
|
2776
|
-
['application/x-mach-o', [[0, b["\376\355\372\316"]], [0, b["\316\372\355\376"]], [0, b["\376\355\372\317"]], [0, b["\317\372\355\376"]]]],
|
|
2777
|
-
['application/x-matlab-data', [[0, b['MATLAB']]]],
|
|
2778
|
-
['application/x-mmm-digisonde', [[0, b["\t<\000"], [[24, b["\000\000"]]]]]],
|
|
2779
|
-
['application/x-ms-compress-szdd', [[0, b['0x535A444488F0273341']]]],
|
|
2780
|
-
['application/x-msdownload', [[0, b['MZ']]]],
|
|
2781
|
-
['application/x-mswrite', [[0, b["1\276\000\000"]], [0, b["2\276\000\000"]]]],
|
|
2782
|
-
['application/x-nesrom', [[0, b["NES\032"]]]],
|
|
2783
|
-
['application/x-netcdf', [[0, b["CDF\001"]], [0, b["CDF\002"]], [0, b["CDF\001"]]]],
|
|
2784
|
-
['application/x-object', [[0, b["\177ELF"], [[16, b["\001\000"]], [16, b["\000\001"]]]]]],
|
|
2785
|
-
['application/x-ole-storage', [[0..8, b["\320\317\021\340\241\261\032\341"]]]],
|
|
2786
|
-
['application/x-parquet', [[0, b['PAR1']]]],
|
|
2787
|
-
['application/x-pds', [[0, b['PDS_VERSION_ID']]]],
|
|
2788
|
-
['application/x-project', [[0, b['MPX,Microsoft Project for Windows,']]]],
|
|
2789
|
-
['application/x-prt', [[8, b['0M3C']]]],
|
|
2790
|
-
['application/x-quattro-pro;version=1+5', [[0, b["\000\000\002\000\001\020"]]]],
|
|
2791
|
-
['application/x-quattro-pro;version=1-4', [[0, b["\000\000\002\000 Q"]]]],
|
|
2792
|
-
['application/x-quattro-pro;version=5', [[0, b["\000\000\002\000!Q"]]]],
|
|
2793
|
-
['application/x-quattro-pro;version=6', [[0, b["\000\000\002\000\002\020"]]]],
|
|
2794
|
-
['application/x-rar-compressed', [[0, b['Rar!']], [0, b["Rar!\032"]]]],
|
|
2795
|
-
['application/x-rpm', [[0, b["\355\253\356\333"]]]],
|
|
2796
|
-
['application/x-sc', [[38, b['Spreadsheet']]]],
|
|
2797
|
-
['application/x-sh', [[0, b['#!/']], [0, b['#! /']], [0, b["#!\t/"]], [0, b["eval \"exec"]]]],
|
|
2798
|
-
['application/x-sharedlib', [[0, b["\177ELF"], [[16, b["\003\000"]], [16, b["\000\003"]]]]]],
|
|
2799
|
-
['application/x-shockwave-flash', [[0, b['FWS']], [0, b['CWS']]]],
|
|
2800
|
-
['application/x-sibelius', [[0, b["\017SIBELIUS"]]]],
|
|
2801
|
-
['application/x-snappy-framed', [[0, b['sNaPpY']]]],
|
|
2802
|
-
['application/x-spectrum-tzx', [[0, b["ZXTape!\032"]]]],
|
|
2803
|
-
['application/x-spss-sav', [[0, b['$FL2@(#)']]]],
|
|
2804
|
-
['application/x-sqlite3', [[0, b["SQLite format 3\000"]]]],
|
|
2805
|
-
['application/x-stata-dta', [[0, b['<stata_dta><header><release>']]]],
|
|
2806
|
-
['application/x-stuffit', [[0, b['StuffIt']]]],
|
|
2807
|
-
['application/x-subrip', [[0, b["1\n00"]], [0, b["1\r00"]], [0, b["1\r\n\023\003\000"]], [0, b["\357\273\2771\n00"]], [0, b["\357\273\2771\r00"]], [0, b["\357\273\2771\r\n\023\003\000"]]]],
|
|
2808
|
-
['application/x-tex', [[0, b["\\input"]], [0, b["\\section"]], [0, b["\\setlength"]], [0, b["\\documentstyle"]], [0, b["\\chapter"]], [0, b["\\documentclass"]], [0, b["\\relax"]], [0, b["\\contentsline"]]]],
|
|
2809
|
-
['application/x-tex-virtual-font', [[0, b["\367\312"], [[11, b["\363\000"], [[17, b["\000\020"]]]]]]]],
|
|
2810
|
-
['application/x-texinfo', [[0, b["\\input texinfo"]]]],
|
|
2811
|
-
['application/x-tika-ooxml', [[0, b["PK\003\004"], [[30, b['[Content_Types].xml']], [30, b['_rels/.rels']]]]]],
|
|
2812
|
-
['application/x-touhou', [[0, b['t1'], [[3, b["[\\162|\\063|\\066|\\065]"], [[5, b['0x00000000000000']]]]]]]],
|
|
2813
|
-
['application/x-uc2-compressed', [[0, b["UC2\032"]]]],
|
|
2814
|
-
['application/x-vhd', [[0, b['conectix']]]],
|
|
2815
|
-
['application/x-x509-cert;format=der', []],
|
|
2816
|
-
['application/x-x509-cert;format=pem', [[0, b['-----BEGIN CERTIFICATE-----']]]],
|
|
2817
|
-
['application/x-x509-dsa-parameters', [[0, b['-----BEGIN DSA PARAMETERS-----']]]],
|
|
2818
|
-
['application/x-x509-ec-parameters', [[0, b['-----BEGIN EC PARAMETERS-----']]]],
|
|
2819
|
-
['application/x-x509-key;format=pem', [[0, b['-----BEGIN PRIVATE KEY-----']], [0, b['-----BEGIN PUBLIC KEY-----']], [0, b['-----BEGIN KEY-----']], [0, b['-----BEGIN RSA KEY-----']], [0, b['-----BEGIN RSA PRIVATE KEY-----']], [0, b['-----BEGIN DSA KEY-----']], [0, b['-----BEGIN DSA PRIVATE KEY-----']]]],
|
|
2820
|
-
['application/x-xz', [[0, b["\3757zXZ\000"]]]],
|
|
2821
|
-
['application/x-zim', [[0, b['0x5A494D04']]]],
|
|
2822
|
-
['application/x-zoo', [[20, b["\334\247\304\375"]]]],
|
|
2823
|
-
['application/xml', [[0, b['<?xml']], [0, b['<?XML']], [0, b["\357\273\277<?xml"]], [0, b["\377\376<\000?\000x\000m\000l\000"]], [0, b["\376\377\000<\000?\000x\000m\000l"]]]],
|
|
2824
|
-
['application/zip', [[0, b["PK\003\004"]], [0, b["PK\005\006"]], [0, b["PK\a\b"]]]],
|
|
2825
|
-
['application/zstd', [[0, b["(\265/\375"]]]],
|
|
2826
|
-
['audio/ac3', [[0, b["\vw"]]]],
|
|
2827
|
-
['audio/amr-wb', [[0, b["#!AMR-WB\n"]]]],
|
|
2828
|
-
['audio/eac3', [[0, b["\vw"]]]],
|
|
2829
|
-
['audio/prs.sid', [[0, b['PSID']]]],
|
|
2830
|
-
['audio/webm', [[0, b["\032E\337\243"], [[4..4096, b["B\202"], [[4..4096, b['webm'], [[4..4096, b['A_VORBIS']], [4..4096, b['A_OPUS']]]]]]]]]],
|
|
2831
|
-
['audio/x-flac', [[0, b['fLaC']]]],
|
|
2832
|
-
['audio/x-mod', [[0, b['Extended Module:']], [21, b['BMOD2STM']], [1080, b['M.K.']], [1080, b['M!K!']], [1080, b['FLT4']], [1080, b['FLT8']], [1080, b['4CHN']], [1080, b['6CHN']], [1080, b['8CHN']], [1080, b['CD81']], [1080, b['OKTA']], [1080, b['16CN']], [1080, b['32CN']], [0, b['IMPM']]]],
|
|
2833
|
-
['audio/x-mpegurl', [[0, b["#EXTM3U\r\n"]]]],
|
|
2834
|
-
['audio/x-ms-wma', [[0..8192, b['Windows Media Audio']]]],
|
|
2835
|
-
['audio/x-pn-realaudio', [[0, b[".ra\375"]]]],
|
|
2836
|
-
['audio/x-psf', [[0, b['PSF'], [[3, b["\001"]], [3, b["\002"]], [3, b["\021"]], [3, b["\022"]], [3, b["\023"]], [3, b['!']], [3, b["\""]], [3, b['#']], [3, b['A']]]]]],
|
|
2837
|
-
['audio/x-sap', [[0, b["SAP\r\n"]]]],
|
|
2838
|
-
['chemical/x-cdx', [[0, b['VjCD0100']]]],
|
|
2839
|
-
['font/woff', [[0, b['wOFF']]]],
|
|
2840
|
-
['font/woff2', [[0, b['wOF2']]]],
|
|
2841
|
-
['image/aces', [[0, b["v/1\001\002\000\000\000"]], [0, b["v/1\001\002\004\000\000"]]]],
|
|
2842
|
-
['image/cgm', [[0, b['BEGMF']]]],
|
|
2843
|
-
['image/emf', [[0, b["\001\000\000\000"], [[40, b[' EMF']]]]]],
|
|
2844
|
-
['image/fits', [[0, b['SIMPLE = ']]]],
|
|
2845
|
-
['image/heic', [[4, b['ftypheic']], [4, b['ftypheix']]]],
|
|
2846
|
-
['image/heic-sequence', [[4, b['ftyphevc']], [4, b['ftyphevx']]]],
|
|
2847
|
-
['image/heif', [[4, b['ftypmif1']]]],
|
|
2848
|
-
['image/heif-sequence', [[4, b['ftypmsf1']]]],
|
|
2849
|
-
['image/icns', [[0, b['icns']]]],
|
|
2850
|
-
['image/jp2', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jp2 ']]]]]],
|
|
2851
|
-
['image/jpm', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jpm ']]]]]],
|
|
2852
|
-
['image/jpx', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jpx ']]]]]],
|
|
2853
|
-
['image/jxl', [[0, b["\377\n"]], [0, b["\000\000\000\fJXL \r\n\207\n"]]]],
|
|
2854
|
-
['image/nitf', [[0, b['NITF01.10']], [0, b['NITF02.000']], [0, b['NITF02.100']]]],
|
|
2855
|
-
['image/svg+xml', [[0, b['<svg'], [[5..256, b['http://www.w3.org/2000/svg']]]]]],
|
|
2856
|
-
['image/vnd.dgn;version=7', []],
|
|
2857
|
-
['image/vnd.djvu', [[0, b['AT&TFORM']]]],
|
|
2858
|
-
['image/vnd.dwg', [[0, b['MC0.0']], [0, b['AC1.2']], [0, b['AC1.40']], [0, b['AC1.50']], [0, b['AC2.10']], [0, b['AC2.21']], [0, b['AC2.22']]]],
|
|
2859
|
-
['image/vnd.dxb', [[0, b["AutoCAD DXB 1.0\r\n0x1A00"]]]],
|
|
2860
|
-
['image/vnd.dxf;format=ascii', [[0..32, b["(999\\r?\\n[^\\r\\n]{0,64}\\\\s+)?0\\r?\\nSECTION\\r?\\n"], [[12..60, b["2\\r?\\n(?:HEADER|ENTITIES)\\r?\\n"]]]]]],
|
|
2861
|
-
['image/vnd.dxf;format=binary', [[0, b["AutoCAD Binary DXF\r\n0x1A00"]]]],
|
|
2862
|
-
['image/vnd.microsoft.icon', [[0, b["BA(\000\000\000.\000\000\000\000\000\000\000"]], [0, b["\000\000\001\000"]]]],
|
|
2863
|
-
['image/vnd.ms-modi', [[0, b["EP*\000"]]]],
|
|
2864
|
-
['image/vnd.zbrush.dcx', [[0, b["\261h\336:"]]]],
|
|
2865
|
-
['image/wmf', [[0, b["\327\315\306\232\000\000"]], [0, b["\001\000\t\000\000\003"]]]],
|
|
2866
|
-
['image/x-3ds', [[0, b['MM'], [[6, b["\002\000\n\000\000\000"], [[16, b['==']]]]]]]],
|
|
2867
|
-
['image/x-bpg', [[0, b["BPG\373"]]]],
|
|
2868
|
-
['image/x-dpx', [[0, b['SDPX']], [0, b['XPDS']]]],
|
|
2869
|
-
['image/x-freehand', [[0, b['AGD2']], [0, b['AGD3']], [0, b['AGD4']], [0..24, b['FreeHand10']], [0..24, b['FreeHand11']], [0..24, b['FreeHand12']]]],
|
|
2870
|
-
['image/x-jbig2', [[0, b["\227JB2\r\n\032\n"]]]],
|
|
2871
|
-
['image/x-jp2-container', [[0, b["\000\000\000\fjP \r\n\207\n"]]]],
|
|
2872
|
-
['image/x-niff', [[0, b['IIN1']]]],
|
|
2873
|
-
['image/x-os2-graphics; charset=binary', [[0, b['BA'], [[14, b['BM']], [14, b['CI']], [14, b['IC']], [14, b['CP']], [14, b['PT']]]]]],
|
|
2874
|
-
['image/x-pict', [[522, b["\000\021\002\377\f\000"]]]],
|
|
2875
|
-
['image/x-portable-arbitrarymap', [[0, b['P7'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
|
|
2876
|
-
['image/x-portable-bitmap', [[0, b['P1'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P4'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
|
|
2877
|
-
['image/x-portable-graymap', [[0, b['P2'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P5'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
|
|
2878
|
-
['image/x-portable-pixmap', [[0, b['P3'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P6'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
|
|
2879
|
-
['image/x-raw-canon', [[0, b["II\032\000\000\000HEAPCCDR"]]]],
|
|
2880
|
-
['image/x-raw-olympus', [[0, b['IIRO']]]],
|
|
2881
|
-
['image/x-rgb', [[0, b["\001\332\001\001\000\003"]]]],
|
|
2882
|
-
['image/x-xbitmap', [[0, b['/* XPM']]]],
|
|
2883
|
-
['image/x-xcf', [[0, b['gimp xcf ']]]],
|
|
2884
|
-
['message/news', [[0, b['Article']]]],
|
|
2885
|
-
['message/rfc822', [[0, b['Relay-Version:']], [0, b['#! rnews']], [0, b['N#! rnews']], [0, b['Forward to']], [0, b['Pipe to']], [0, b['Return-Path:']], [0, b['Message-ID:']], [0, b['X-Mailer:']], [0, b['X-Notes-Item:'], [[0..8192, b['Message-ID:']]]], [0, b['(X|DKIM|ARC)-'], [[0..8192, b["\nDate:"]], [0..8192, b["\nDelivered-To:"]], [0..8192, b["\nFrom:"]], [0..8192, b["\nMessage-ID:"]], [0..8192, b["\nMIME-Version:"]], [0..8192, b["\nReceived:"]], [0..8192, b["\nRelay-Version:"]], [0..8192, b["\nReturn-Path:"]], [0..8192, b["\nStatus:"]], [0..8192, b["\nUser-Agent:"]], [0..8192, b["\nX-Mailer:"]], [0..8192, b["\nX-Originating-IP:"]]]]]],
|
|
2886
|
-
['model/vnd.dwf', [[0, b['(DWF V'], [[8, b['.'], [[11, b[')']]]]]]]],
|
|
2887
|
-
['multipart/appledouble', [[0, b["\000\005\026\a"]]]],
|
|
2888
|
-
['text/calendar', [[0, b['BEGIN:VCALENDAR'], [[15..360, b["\nVERSION:2.0"]]]]]],
|
|
2889
|
-
['text/javascript', [[0, b['/* jQuery ']], [0, b['/*! jQuery ']], [0, b['/*!'], [[4..8, b['* jQuery ']]]], [0, b['(function(e,undefined){']], [0, b['!function(window,undefined){']], [0, b['/* Prototype JavaScript ']], [0, b['var Prototype={']], [0, b['function $w(t){']], [0, b['/** @license React']], [0, b['/**'], [[4..8, b['* React ']]]]]],
|
|
2890
|
-
['text/troff', [[0, b[".\\\""]], [0, b["'\\\""]], [0, b["'.\\\""]], [0, b["\\\""]], [0, b["'''"]]]],
|
|
2891
|
-
['text/vnd.graphviz', [[0, b["(?s)^\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]], [0, b["(?s)^(?:\\\\s*//[^\\\\n]*\\n){1,10}\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]], [0, b["(?s)^\\\\s*/\\\\*.{0,1024}?\\\\*/\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]]]],
|
|
2892
|
-
['text/vnd.iptc.anpa', [[0, b["\026\026\001"]]]],
|
|
2893
|
-
['text/x-awk', [[0, b['#!/bin/gawk']], [0, b['#! /bin/gawk']], [0, b['#!/usr/bin/gawk']], [0, b['#! /usr/bin/gawk']], [0, b['#!/usr/local/bin/gawk']], [0, b['#! /usr/local/bin/gawk']], [0, b['#!/bin/awk']], [0, b['#! /bin/awk']], [0, b['#!/usr/bin/awk']], [0, b['#! /usr/bin/awk']]]],
|
|
2894
|
-
['text/x-diff', [[0, b['diff ']], [0, b['*** ']], [0, b['Only in ']], [0, b['Common subdirectories: ']], [0, b['Index:']]]],
|
|
2895
|
-
['text/x-jsp', [[0, b['<%@']], [0, b['<%--']]]],
|
|
2896
|
-
['text/x-matlab', [[0, b['function [']]]],
|
|
2897
|
-
['text/x-perl', [[0, b["eval \"exec /usr/local/bin/perl"]], [0, b['#!/bin/perl']], [0, b['#!/bin/env perl']], [0, b['#!/usr/bin/perl']], [0, b['#!/usr/local/bin/perl']]]],
|
|
2898
|
-
['text/x-php', [[0, b['<?php']]]],
|
|
2899
|
-
['text/x-python', [[0, b['#!/bin/python']], [0, b['#! /bin/python']], [0, b["eval \"exec /bin/python"]], [0, b['#!/usr/bin/python']], [0, b['#! /usr/bin/python']], [0, b["eval \"exec /usr/bin/python"]], [0, b['#!/usr/local/bin/python']], [0, b['#! /usr/local/bin/python']], [0, b["eval \"exec /usr/local/bin/python"]], [1, b['/bin/env python']]]],
|
|
2900
|
-
['text/x-vcalendar', [[0, b['BEGIN:VCALENDAR'], [[15..30, b['VERSION:1.0']]]]]],
|
|
2901
|
-
['text/x-vcard', [[0, b['BEGIN:VCARD']]]],
|
|
2902
|
-
['video/mj2', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['mjp2']]]]]],
|
|
2903
|
-
['video/x-jng', [[0, b["\213JNG"]]]],
|
|
2904
|
-
['video/x-mng', [[0, b["\212MNG"]]]],
|
|
2905
|
-
['video/x-ms-asf', [[0, b["0&\262u"]]]],
|
|
2906
|
-
['video/x-sgi-movie', [[0, b["MOVI\000"]], [0, b["MOVI\001"]], [0, b["MOVI\002"]], [0, b["MOVI\376"]], [0, b["MOVI\377"]]]],
|
|
2907
|
-
['application/gzip', [[0, b["\037\213"]], [0, b["\037\213"]]]],
|
|
2908
|
-
['application/zlib', [[0, b["x\001"]], [0, b['x^']], [0, b["x\234"]], [0, b["x\332"]]]],
|
|
2909
|
-
['message/rfc822', [[0, nil, [[0, nil, [[0, b['Content-ID:']], [0, b['Content-Location:']], [0, b['Content-Transfer-Encoding:']], [0, b['Content-Type:']], [0, b['Date:']], [0, b['Delivered-To:']], [0, b['From:']], [0, b['Message-ID:']], [0, b['MIME-Version:']], [0, b['Received:']], [0, b['Relay-Version:']], [0, b['Return-Path:']], [0, b['Sent:']], [0, b['Status:']], [0, b['Subject:']], [0, b['To:']], [0, b['User-Agent:']], [0, b['X-Mailer:']], [0, b['X-Originating-IP:']], [0, b["\357\273\277"], [[3, b['Content-ID:']], [3, b['Content-Location:']], [3, b['Content-Transfer-Encoding:']], [3, b['Content-Type:']], [3, b['Date:']], [3, b['Delivered-To:']], [3, b['From:']], [3, b['Message-ID:']], [3, b['MIME-Version:']], [3, b['Received:']], [3, b['Relay-Version:']], [3, b['Return-Path:']], [3, b['Sent:']], [3, b['Status:']], [3, b['Subject:']], [3, b['To:']], [3, b['User-Agent:']], [3, b['X-Mailer:']], [3, b['X-Originating-IP:']]]]]], [0, nil, [[0..1024, b["\nContent-ID:"]], [0..1024, b["\nContent-Location:"]], [0..1024, b["\nContent-Transfer-Encoding:"]], [0..1024, b["\nContent-Type:"]], [0..1024, b["\nDate:"]], [0..1024, b["\nDelivered-To:"]], [0..1024, b["\nFrom:"]], [0..1024, b["\nMIME-Version:"]], [0..1024, b["\nReceived:"]], [0..1024, b["\nRelay-Version:"]], [0..1024, b["\nReturn-Path:"]], [0..1024, b["\nSent:"]], [0..1024, b["\nStatus:"]], [0..1024, b["\nSubject:"]], [0..1024, b["\nTo:"]], [0..1024, b["\nUser-Agent:"]], [0..1024, b["\nX-Mailer:"]], [0..1024, b["\nX-Originating-IP:"]], [0..1024, b["\nDKIM-"]], [0..1024, b["\nARC-"]]]]]]]],
|
|
2910
|
-
['application/pdf', [[0..128, b['%%'], [[1..512, b['%PDF-1.']]]], [0..128, b['%%'], [[1..512, b['%PDF-2.']]]]]],
|
|
2911
|
-
['application/vnd.wordperfect', [[0, b["\377WPC"]]]],
|
|
2912
|
-
['application/x-bzip', [[0, b['BZ0']]]],
|
|
2913
|
-
['application/x-bzip2', [[0, b['BZh[1-9]']]]],
|
|
2914
|
-
['application/x-dbf', [[0, b["(?s)^[\\\\002\\\\003\\\\060\\\\061\\\\062\\\\103\\\\143\\\\203\\\\213\\\\313\\\\365\\\\345\\\\373].[\\\\001-\\\\014][\\\\001-\\\\037].{4}(?:.[^\\\\000]|[\\\\101-\\\\377].)(?:[^\\\\000\\\\001].|.[^\\\\000]).{31}(?<=[\\\\000][^\\\\000]{0,10})[A-Z@+]"]]]],
|
|
2915
|
-
['application/x-font-adobe-metric', [[0, b['StartFontMetrics']]]],
|
|
2916
|
-
['application/x-font-otf', [[0, b["OTTO\000"]]]],
|
|
2917
|
-
['application/x-font-printer-metric', [[0, b["\000\001"], [[4, b["\000\000Copyr"]]]]]],
|
|
2918
|
-
['application/x-font-ttf', [[0, b["\000\001\000\000"]]]],
|
|
2919
|
-
['application/x-matroska', [[0, b["\032E\337\243"]]]],
|
|
2920
|
-
['application/x-mysql-misam-compressed-index', [[0, b["\376\376\006"]], [0, b["\376\376\a"]]]],
|
|
2921
|
-
['application/x-mysql-misam-index', [[0, b["\376\376\003"]], [0, b["\376\376\005"]]]],
|
|
2922
|
-
['application/x-mysql-table-definition', [[0, b["\376\001\a"]], [0, b["\376\001\b"]], [0, b["\376\001\t"]], [0, b["\376\001\n"]], [0, b["\376\001\v"]], [0, b["\376\001\f"]]]],
|
|
2923
|
-
['application/x-sas-data', [[84, b['SAS FILE']]]],
|
|
2924
|
-
['application/x-sas-data-v6', [[0, b['SAS 6.']], [0, b['SAS 7.']], [0, b['SAS 8.0']], [0, b['SAS 9.0']]]],
|
|
2925
|
-
['application/x-sas-xport', [[0, b['HEADER RECORD*******LIBRARY HEADER RECORD!!!!!!!']]]],
|
|
2926
|
-
['application/x-stata-dta', [[0, b['<stata_dta>']]]],
|
|
2927
|
-
['application/x-tar', [[257, b["ustar\000"]]]],
|
|
2928
|
-
['application/x-tika-msoffice', [[0..8, b["\320\317\021\340\241\261\032\341"]]]],
|
|
2929
|
-
['application/x-x509-key;format=der', []],
|
|
2930
|
-
['application/xhtml+xml', [[0..8192, b['<html xmlns=']]]],
|
|
2931
|
-
['audio/ac3', [[0, b["\vw"]]]],
|
|
2932
|
-
['audio/amr', [[0, b["#!AMR\n"]], [0, b['#!AMR']]]],
|
|
2933
|
-
['audio/x-aac', [[0, b['ID3'], [[512..2048, b["\\\\377(\\\\360|\\\\361|\\\\370|\\\\371)(\\\\100|\\\\101|\\\\104|\\\\105|\\\\110|\\\\111|\\\\114|\\\\115|\\\\120|\\\\121|\\\\124|\\\\125|\\\\130|\\\\131|\\\\134|\\\\135|\\\\140|\\\\141|\\\\144|\\\\145|\\\\150|\\\\151|\\\\154|\\\\155|\\\\160|\\\\161|\\\\200|\\\\201|\\\\204|\\\\205|\\\\210|\\\\211|\\\\214|\\\\215|\\\\220|\\\\221|\\\\224|\\\\225|\\\\230|\\\\231|\\\\234|\\\\235|\\\\240|\\\\241|\\\\244|\\\\245|\\\\250|\\\\251|\\\\254|\\\\255|\\\\260|\\\\261)(\\\\000|\\\\001|\\\\040|\\\\100|\\\\101|\\\\140|\\\\200|\\\\201|\\\\140|\\\\240|\\\\300|\\\\301|\\\\340)"]]]]]],
|
|
2934
|
-
['image/vnd.zbrush.pcx', [[0, b["\n"], [[1, b["\000"]], [1, b["\002"]], [1, b["\003"]], [1, b["\004"]], [1, b["\005"]]]]]],
|
|
2935
|
-
['message/rfc822', [[0..1000, b["\nMessage-ID:"]]]],
|
|
2936
|
-
['text/html', [[0..64, b['<!DOCTYPE HTML']], [0..64, b['<!DOCTYPE html']], [0..64, b['<!doctype HTML']], [0..64, b['<!doctype html']], [0..64, b['<HEAD']], [0..64, b['<head']], [0..64, b['<TITLE']], [0..64, b['<title']], [0..64, b['<HTML']], [0..128, b['<html']]]],
|
|
2937
|
-
['text/vtt', [[0, b["WEBVTT\r"]], [0, b["WEBVTT\n"]], [0, b['0xfeff'], [[2, b["WEBVTT\r"]], [2, b["WEBVTT\n"]]]], [0, b['0xfeff'], [[2, b["WEBVTT\r"]], [2, b["WEBVTT\n"]]]], [0, b['0xefbbbf'], [[3, b["WEBVTT\r"]], [3, b["WEBVTT\n"]]]], [0, b["WEBVTT FILE\r"]], [0, b["WEBVTT FILE\n"]]]],
|
|
2938
|
-
['text/x-matlab', [[0, b["function [a-zA-Z][A-Za-z0-9_]{0,62}\\\\s*="]]]],
|
|
2939
|
-
['text/x-matlab', [[0, b["function [a-zA-Z][A-Za-z0-9_]{0,62}[\\\\r\\\\n]"]]]],
|
|
2940
|
-
['application/inf', [[0, b['[version]']], [0, b['[strings]']]]],
|
|
2941
|
-
['application/x-bibtex-text-file', [[0, b['%'], [[2..128, b["\n@article{"]], [2..128, b["\n@book{"]], [2..128, b["\n@inbook{"]], [2..128, b["\n@incollection{"]], [2..128, b["\n@inproceedings{"]], [2..128, b["\n@manual{"]], [2..128, b["\n@misc{"]], [2..128, b["\n@preamble{"]], [2..128, b["\n@phdthesis{"]], [2..128, b["\n@string{"]], [2..128, b["\n@techreport{"]], [2..128, b["\n@unpublished{"]]]]]],
|
|
2942
|
-
['application/xml', [[0, b['<!--']]]],
|
|
2943
|
-
['audio/x-aac', [[0, b["\\\\377(\\\\360|\\\\361|\\\\370|\\\\371)(\\\\100|\\\\101|\\\\104|\\\\105|\\\\110|\\\\111|\\\\114|\\\\115|\\\\120|\\\\121|\\\\124|\\\\125|\\\\130|\\\\131|\\\\134|\\\\135|\\\\140|\\\\141|\\\\144|\\\\145|\\\\150|\\\\151|\\\\154|\\\\155|\\\\160|\\\\161|\\\\200|\\\\201|\\\\204|\\\\205|\\\\210|\\\\211|\\\\214|\\\\215|\\\\220|\\\\221|\\\\224|\\\\225|\\\\230|\\\\231|\\\\234|\\\\235|\\\\240|\\\\241|\\\\244|\\\\245|\\\\250|\\\\251|\\\\254|\\\\255|\\\\260|\\\\261)(\\\\000|\\\\001|\\\\040|\\\\100|\\\\101|\\\\140|\\\\200|\\\\201|\\\\140|\\\\240|\\\\300|\\\\301|\\\\340)"]]]],
|
|
2944
|
-
['text/vtt', [[0, b['WEBVTT '], [[10..50, b["\n\n"]]]], [0, b['WEBVTT '], [[10..50, b["\r\r"]]]], [0, b['WEBVTT '], [[10..50, b["\r\n\r\n"]]]]]],
|
|
2945
|
-
['text/x-chdr', [[0, b['#ifndef ']]]],
|
|
2946
|
-
['text/x-csrc', [[0, b['#include ']]]],
|
|
2947
|
-
['image/x-jp2-codestream', [[0, b["\377O\377Q"]]]],
|
|
2948
|
-
['text/x-matlab', [[0, b['%'], [[2..120, b["\n%"]]]], [0, b['%'], [[2..120, b["\r%"]]]], [0, b['%%']]]],
|
|
2949
|
-
['application/pdf', [[1..512, b['%PDF-1.']], [1..512, b['%PDF-2.']]]],
|
|
2950
|
-
['application/vnd.msa-disk-image', [[0, b["\016\017"]]]],
|
|
2951
|
-
['audio/basic', [[0, b['.snd'], [[12, b["\000\000\000\001"]], [12, b["\000\000\000\002"]], [12, b["\000\000\000\003"]], [12, b["\000\000\000\004"]], [12, b["\000\000\000\005"]], [12, b["\000\000\000\006"]], [12, b["\000\000\000\a"]]]], [0, b[".snd\000\000\000"]]]],
|
|
2952
|
-
['audio/midi', [[0, b['MThd']]]],
|
|
2953
|
-
['audio/vnd.wave', [[0, b['RIFF'], [[8, b['WAVE']]]]]],
|
|
2954
|
-
['audio/x-adpcm', [[0, b['.snd'], [[12, b["\000\000\000\027"]]]]]],
|
|
2955
|
-
['audio/x-aiff', [[0, b['FORM'], [[8, b['AIFF']]]], [0, b['FORM'], [[8, b['AIFC']]]], [0, b['FORM'], [[8, b['8SVX']]]], [0, b["FORM\000"]]]],
|
|
2956
|
-
['audio/x-dec-adpcm', [[0, b["\000ds."], [[12, b["\000\000\000\027"]]]]]],
|
|
2957
|
-
['audio/x-dec-basic', [[0, b["\000ds."], [[12, b["\000\000\000\001"]], [12, b["\000\000\000\002"]], [12, b["\000\000\000\003"]], [12, b["\000\000\000\004"]], [12, b["\000\000\000\005"]], [12, b["\000\000\000\006"]], [12, b["\000\000\000\a"]]]]]],
|
|
2958
|
-
['text/html', [[128..8192, b['<html']]]],
|
|
2959
|
-
['text/plain', [[0, b['This is TeX,']], [0, b['This is METAFONT,']], [0, b['/*']], [0, b['//']], [0, b[';;']], [0, b["\376\377"]], [0, b["\377\376"]], [0, b["\357\273\277"]]]],
|
|
2960
|
-
['text/x-makefile', [[0, b['# Makefile.in generated by']], [0, b['#!make']], [0, b['#!/usr/bin/make']], [0, b['#!/usr/local/bin/make']], [0, b['#!/usr/bin/env make']]]],
|
|
2961
|
-
]
|
|
2962
|
-
end
|