diff --git a/docs/Homebrew/Cleanup.html b/docs/Homebrew/Cleanup.html index b1c20b979..6ee893eb3 100644 --- a/docs/Homebrew/Cleanup.html +++ b/docs/Homebrew/Cleanup.html @@ -1323,10 +1323,6 @@
-676 -677 -678 -679 680 681 682 @@ -1357,10 +1353,14 @@+710 +711 +712 +713 +714707 708 709 -710
# File 'cleanup.rb', line 676 +# File 'cleanup.rb', line 680 def self.autoremove(dry_run: false) require "utils/autoremove" @@ -2255,20 +2255,20 @@
-375 -376 -377 -378 379 380 381 382 383 384 -385+385 +386 +387 +388 +389
# File 'cleanup.rb', line 375 +# File 'cleanup.rb', line 379 def cache_files files = cache.directory? ? cache.children : [] @@ -2371,7 +2371,11 @@+337 +338 +339 +340 +341334 335 336 -337
# File 'cleanup.rb', line 281 @@ -2385,7 +2389,11 @@cleanup_formula(formula, quiet:, ds_store: false, cache_db: false) end - Cleanup.autoremove(dry_run: dry_run?) if Homebrew::EnvConfig.autoremove? + if ENV["HOMEBREW_AUTOREMOVE"].present? + opoo "HOMEBREW_AUTOREMOVE is now a no-op as it is the default behaviour. " \ + "Set HOMEBREW_NO_AUTOREMOVE=1 to disable it." + end + Cleanup.autoremove(dry_run: dry_run?) unless Homebrew::EnvConfig.no_autoremove? cleanup_cache cleanup_empty_api_source_directories @@ -2467,15 +2475,15 @@
-525 -526 -527 -528 529 -530+530 +531 +532 +533 +534
# File 'cleanup.rb', line 525 +# File 'cleanup.rb', line 529 def cleanup_bootsnap bootsnap = cache/"bootsnap" @@ -2517,10 +2525,6 @@
-425 -426 -427 -428 429 430 431 @@ -2542,10 +2546,14 @@+450 +451 +452 +453 +454447 448 449 -450
# File 'cleanup.rb', line 425 +# File 'cleanup.rb', line 429 def cleanup_cache(entries = nil) entries ||= cache_files @@ -2607,10 +2615,6 @@
-532 -533 -534 -535 536 537 538 @@ -2624,10 +2628,14 @@+549 +550 +551 +552 +553546 547 548 -549
# File 'cleanup.rb', line 532 +# File 'cleanup.rb', line 536 def cleanup_cache_db(rack = nil) FileUtils.rm_rf [ @@ -2681,14 +2689,14 @@
-352 -353 -354 -355 -356+356 +357 +358 +359 +360
# File 'cleanup.rb', line 352 +# File 'cleanup.rb', line 356 def cleanup_cask(cask, ds_store: true) cleanup_cache(Pathname.glob(cache/"Cask/#{cask.token}--*").map { |path| { path:, type: :cask } }) @@ -2729,20 +2737,20 @@+397 +398 +399 +400 +401-387 -388 -389 -390 391 392 393 394 395 396 -397
# File 'cleanup.rb', line 387 +# File 'cleanup.rb', line 391 def cleanup_empty_api_source_directories(directory = cache/"api-source") return if dry_run? @@ -2789,17 +2797,17 @@
-343 -344 -345 -346 347 348 349 -350+350 +351 +352 +353 +354
# File 'cleanup.rb', line 343 +# File 'cleanup.rb', line 347 def cleanup_formula(formula, quiet: false, ds_store: true, cache_db: true) formula.eligible_kegs_for_cleanup(quiet:) @@ -2843,15 +2851,15 @@
-358 -359 -360 -361 362 -363+363 +364 +365 +366 +367
# File 'cleanup.rb', line 358 +# File 'cleanup.rb', line 362 def cleanup_keg(keg) cleanup_path(keg) { keg.uninstall(raise_failures: true) } @@ -2893,10 +2901,6 @@
-466 -467 -468 -469 470 471 472 @@ -2908,10 +2912,14 @@+481 +482 +483 +484 +485478 479 480 -481
# File 'cleanup.rb', line 466 +# File 'cleanup.rb', line 470 def cleanup_lockfiles(*lockfiles) return if dry_run? @@ -2963,18 +2971,18 @@
-365 -366 -367 -368 369 370 371 372 -373+373 +374 +375 +376 +377
# File 'cleanup.rb', line 365 +# File 'cleanup.rb', line 369 def cleanup_logs return unless HOMEBREW_LOGS.directory? @@ -3019,10 +3027,6 @@
-452 -453 -454 -455 456 457 458 @@ -3031,10 +3035,14 @@+464 +465 +466 +467 +468461 462 463 -464
# File 'cleanup.rb', line 452 +# File 'cleanup.rb', line 456 def cleanup_path(path) return unless path.exist? @@ -3083,10 +3091,6 @@
-483 -484 -485 -486 487 488 489 @@ -3119,10 +3123,14 @@+519 +520 +521 +522 +523516 517 518 -519
# File 'cleanup.rb', line 483 +# File 'cleanup.rb', line 487 def cleanup_portable_ruby vendor_dir = HOMEBREW_LIBRARY/"Homebrew/vendor" @@ -3195,10 +3203,6 @@
-565 -566 -567 -568 569 570 571 @@ -3242,10 +3246,14 @@+612 +613 +614 +615 +616609 610 611 -612
# File 'cleanup.rb', line 565 +# File 'cleanup.rb', line 569 def cleanup_python_site_packages pyc_files = Hash.new { |h, k| h[k] = [] } @@ -3329,10 +3337,6 @@
-399 -400 -401 -402 403 404 405 @@ -3353,10 +3357,14 @@+423 +424 +425 +426 +427420 421 422 -423
# File 'cleanup.rb', line 399 +# File 'cleanup.rb', line 403 def cleanup_unreferenced_downloads return if dry_run? @@ -3523,10 +3531,6 @@-614 -615 -616 -617 618 619 620 @@ -3583,10 +3587,14 @@
# File 'cleanup.rb', line 614 +
# File 'cleanup.rb', line 618 def prune_prefix_symlinks_and_directories ObserverPathnameExtension.reset_counts! @@ -3683,10 +3691,6 @@
-551 -552 -553 -554 555 556 557 @@ -3695,10 +3699,14 @@+563 +564 +565 +566 +567560 561 562 -563
# File 'cleanup.rb', line 551 +# File 'cleanup.rb', line 555 def rm_ds_store(dirs = nil) dirs ||= Keg::MUST_EXIST_DIRECTORIES + [ @@ -3800,12 +3808,12 @@
-339 -340 -341+343 +344 +345
# File 'cleanup.rb', line 339 +# File 'cleanup.rb', line 343 def unremovable_kegs @unremovable_kegs ||= [] diff --git a/docs/Homebrew/Cmd/UninstallCmd.html b/docs/Homebrew/Cmd/UninstallCmd.html index b5ed8646c..1b8f5b0b5 100644 --- a/docs/Homebrew/Cmd/UninstallCmd.html +++ b/docs/Homebrew/Cmd/UninstallCmd.html @@ -331,7 +331,11 @@+81 +82 +83 +84 +8578 79 80 -81
# File 'cmd/uninstall.rb', line 43 @@ -373,7 +377,11 @@) end - Cleanup.autoremove if Homebrew::EnvConfig.autoremove? + if ENV["HOMEBREW_AUTOREMOVE"].present? + opoo "HOMEBREW_AUTOREMOVE is now a no-op as it is the default behaviour. " \ + "Set HOMEBREW_NO_AUTOREMOVE=1 to disable it." + end + Cleanup.autoremove unless Homebrew::EnvConfig.no_autoremove? end
+556 557 -558 -559+558
# File 'env_config.rb', line 557 +# File 'env_config.rb', line 556 def automatically_set_no_install_from_api? ENV["HOMEBREW_AUTOMATICALLY_SET_NO_INSTALL_FROM_API"].present? @@ -3774,12 +3794,12 @@
+526 527 -528 -529+528
# File 'env_config.rb', line 527 +# File 'env_config.rb', line 526 def cask_opts Shellwords.shellsplit(ENV.fetch("HOMEBREW_CASK_OPTS", "")) @@ -3831,17 +3851,17 @@
+531 532 533 534 535 536 537 -538 -539+538
# File 'env_config.rb', line 532 +# File 'env_config.rb', line 531 def cask_opts_binaries? cask_opts.reverse_each do |opt| @@ -3898,17 +3918,17 @@
+541 542 543 544 545 546 547 -548 -549+548
# File 'env_config.rb', line 542 +# File 'env_config.rb', line 541 def cask_opts_quarantine? cask_opts.reverse_each do |opt| @@ -3965,12 +3985,12 @@
+551 552 -553 -554+553
# File 'env_config.rb', line 552 +# File 'env_config.rb', line 551 def cask_opts_require_sha? cask_opts.include?("--require-sha") @@ -4896,16 +4916,16 @@
+478 479 480 481 482 483 -484 -485+484
# File 'env_config.rb', line 479 +# File 'env_config.rb', line 478 def env_method_name(env, hash) method_name = env.to_s @@ -6393,6 +6413,7 @@
+515 516 517 518 @@ -6400,11 +6421,10 @@+523520 521 522 -523 -524
# File 'env_config.rb', line 516 +# File 'env_config.rb', line 515 def make_jobs jobs = ENV["HOMEBREW_MAKE_JOBS"].to_i @@ -6527,9 +6547,9 @@
-+ ++
- .no_bootsnap? ⇒ Boolean + .no_autoremove? ⇒ Boolean @@ -6573,6 +6593,59 @@
+ + + # File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 200 +def no_autoremove?; end+++ + .no_bootsnap? ⇒ Boolean + + + + + +
+++++ This method is part of a private API. + This method may only be used in the Homebrew/brew repository. + Third parties should avoid using this method if possible, as it may be removed or changed without warning. +
+ + ++
+ @@ -6621,10 +6694,10 @@+ ++ + +203++ # File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 203 + def no_bootsnap?; end
-203+206- @@ -6674,10 +6747,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 203 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 206 def no_cleanup_formulae; end
-206+209- @@ -6727,10 +6800,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 206 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 209 def no_color?; end
-209+212- @@ -6780,10 +6853,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 209 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 212 def no_emoji?; end
-212+215- @@ -6833,10 +6906,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 212 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 215 def no_env_hints?; end
-215+218- @@ -6886,10 +6959,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 215 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 218 def no_github_api?; end
-218+221- @@ -6939,10 +7012,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 218 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 221 def no_insecure_redirect?; end
-221+224- @@ -6992,10 +7065,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 221 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 224 def no_install_cleanup?; end
-224+227- @@ -7045,10 +7118,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 224 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 227 def no_install_from_api?; end
-227+230- @@ -7098,10 +7171,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 227 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 230 def no_install_upgrade?; end
-230+233- @@ -7151,10 +7224,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 230 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 233 def no_installed_dependents_check?; end
-233+236- @@ -7204,10 +7277,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 233 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 236 def no_proxy; end
-236+239- @@ -7257,10 +7330,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 236 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 239 def no_update_report_new?; end
-239+242- @@ -7310,10 +7383,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 239 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 242 def pip_index_url; end
-242+245- @@ -7363,10 +7436,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 242 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 245 def pry?; end
-245+248- @@ -7416,10 +7489,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 245 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 248 def simulate_macos_on_linux?; end
-248+251- @@ -7469,10 +7542,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 248 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 251 def skip_or_later_bottles?; end
-251+254- @@ -7522,10 +7595,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 251 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 254 def sorbet_runtime?; end
-254+257- @@ -7575,10 +7648,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 254 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 257 def ssh_config_path; end
-257+260- @@ -7628,10 +7701,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 257 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 260 def sudo_askpass; end
-260+263- @@ -7681,10 +7754,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 260 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 263 def sudo_through_sudo_user?; end
-263+266- @@ -7734,10 +7807,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 263 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 266 def svn; end
-266+269- @@ -7787,10 +7860,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 266 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 269 def system_env_takes_priority?; end
-269+272- @@ -7840,10 +7913,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 269 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 272 def temp; end
-272+275- @@ -7893,10 +7966,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 272 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 275 def update_to_tag?; end
-275+278- @@ -7946,10 +8019,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 275 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 278 def upgrade_greedy?; end
-278+281- @@ -7999,10 +8072,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 278 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 281 def verbose?; end
-281+284- @@ -8052,10 +8125,10 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 281 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 284 def verbose_using_dots?; end
-284+287- diff --git a/docs/SBOM.html b/docs/SBOM.html index 184229240..6df50b0f3 100644 --- a/docs/SBOM.html +++ b/docs/SBOM.html @@ -1001,7 +1001,7 @@# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 284 +# File 'sorbet/rbi/dsl/homebrew/env_config.rbi', line 287 def verify_attestations?; endunless require? "json_schemer" = "Need json_schemer to validate SBOM, run `brew install-bundler-gems --add-groups=bottle`!" odie if ENV["HOMEBREW_ENFORCE_SBOM"] - return false + return true end schema = SBOM.fetch_schema! diff --git a/docs/method_list.html b/docs/method_list.html index 838263774..ed88a78cc 100644 --- a/docs/method_list.html +++ b/docs/method_list.html @@ -25550,13 +25550,21 @@
Method List
- no_bootsnap? + no_autoremove? Homebrew::EnvConfig+ + + ++ no_bootsnap? + Homebrew::EnvConfig ++ #no_browse? Homebrew::DevCmd::BumpCaskPr::Args @@ -25564,7 +25572,7 @@Method List
-+ #no_browse? Homebrew::DevCmd::BumpFormulaPr::Args @@ -25572,7 +25580,7 @@Method List
-+ no_changes_message Homebrew @@ -25580,7 +25588,7 @@Method List
-+ #no_cherry_pick? Homebrew::DevCmd::PrPull::Args @@ -25588,7 +25596,7 @@Method List
-+ no_cleanup_formulae Homebrew::EnvConfig @@ -25596,7 +25604,7 @@Method List
-+ no_color? Homebrew::EnvConfig @@ -25604,7 +25612,7 @@Method List
-+ #no_commit? Homebrew::DevCmd::Bottle::Args @@ -25612,7 +25620,7 @@Method List
-+ #no_commit? Homebrew::DevCmd::PrPull::Args @@ -25620,7 +25628,7 @@Method List
-+ #no_commit? Homebrew::DevCmd::PrUpload::Args @@ -25628,7 +25636,7 @@Method List
-+ #no_commit? Homebrew::DevCmd::VendorGems::Args @@ -25636,7 +25644,7 @@Method List
-+ #no_dividers Cask::DSL::Version @@ -25644,7 +25652,7 @@Method List
-+ no_emoji? Homebrew::EnvConfig @@ -25652,7 +25660,7 @@Method List
-+ no_env_hints? Homebrew::EnvConfig @@ -25660,7 +25668,7 @@Method List
-+ #no_fetch? Homebrew::DevCmd::Create::Args @@ -25668,7 +25676,7 @@Method List
-+ #no_fixup_chains Stdenv @@ -25676,7 +25684,7 @@Method List
-+ #no_fixup_chains Superenv @@ -25684,7 +25692,7 @@Method List
-+ #no_fixup_chains_support? SharedEnvExtension @@ -25692,7 +25700,7 @@Method List
-+ #no_fork? Homebrew::DevCmd::Bump::Args @@ -25700,7 +25708,7 @@Method List
-+ #no_fork? Homebrew::DevCmd::BumpCaskPr::Args @@ -25708,7 +25716,7 @@Method List
-+ #no_fork? Homebrew::DevCmd::BumpFormulaPr::Args @@ -25716,7 +25724,7 @@Method List
-+ #no_git? Homebrew::DevCmd::TapNew::Args @@ -25724,7 +25732,7 @@Method List
-+ no_github_api? Homebrew::EnvConfig @@ -25732,7 +25740,7 @@Method List
-+ no_insecure_redirect? Homebrew::EnvConfig @@ -25740,7 +25748,7 @@Method List
-+ no_install_cleanup? Homebrew::EnvConfig @@ -25748,7 +25756,7 @@Method List
-+ no_install_from_api? Homebrew::EnvConfig @@ -25756,7 +25764,7 @@Method List
-+ no_install_upgrade? Homebrew::EnvConfig @@ -25764,7 +25772,7 @@Method List
-+ no_installed_dependents_check? Homebrew::EnvConfig @@ -25772,7 +25780,7 @@Method List
-+ no_message_output? Utils::Analytics @@ -25780,7 +25788,7 @@Method List
-+ #no_named? Homebrew::CLI::Args @@ -25788,7 +25796,7 @@Method List
-+ no_proxy Homebrew::EnvConfig @@ -25796,7 +25804,7 @@Method List
-+ #no_pull_requests? Homebrew::DevCmd::Bump::Args @@ -25804,7 +25812,7 @@Method List
-+ #no_rebuild? Homebrew::DevCmd::Bottle::Args @@ -25812,7 +25820,7 @@Method List
-+ #no_simulate? Homebrew::Cmd::ReadallCmd::Args @@ -25820,7 +25828,7 @@Method List
-+ #no_style? Homebrew::DevCmd::BumpCaskPr::Args @@ -25828,7 +25836,7 @@Method List
-+ no_underline Tty @@ -25836,7 +25844,7 @@Method List
-+ no_update_report_new? Homebrew::EnvConfig @@ -25844,7 +25852,7 @@Method List
-+ #no_upload? Homebrew::DevCmd::PrPull::Args @@ -25852,7 +25860,7 @@Method List
-+ #no_weak_imports Stdenv @@ -25860,7 +25868,7 @@Method List
-+ #no_weak_imports Superenv @@ -25868,7 +25876,7 @@Method List
-+ #no_weak_imports_support? SharedEnvExtension @@ -25876,7 +25884,7 @@Method List
-+ #node? Homebrew::DevCmd::Create::Args @@ -25884,7 +25892,7 @@Method List
-+ #node_equals? RuboCop::Cop::HelperFunctions @@ -25892,7 +25900,7 @@Method List
-+ #non_bundler_gems? Homebrew::DevCmd::VendorGems::Args @@ -25900,7 +25908,7 @@Method List
-+ #none_string Homebrew::Diagnostic::Checks @@ -25908,7 +25916,7 @@Method List
-+ normalize_python_package PyPI @@ -25916,7 +25924,7 @@Method List
-+ not_this_run? Utils::Analytics @@ -25924,7 +25932,7 @@Method List
-+ npm_cache_config Language::Node @@ -25932,7 +25940,7 @@Method List
-+ #null? Version::Token @@ -25940,7 +25948,7 @@Method List
-+ #null? Version @@ -25948,7 +25956,7 @@Method List
-+ #number_readable Kernel @@ -25956,7 +25964,7 @@Method List
-+ #numeric? Version::Token @@ -25964,7 +25972,7 @@Method List
-+ #numeric? Version::NumericToken @@ -25972,7 +25980,7 @@Method List
-+ #odebug Kernel @@ -25980,7 +25988,7 @@Method List
-+ #odeprecated Kernel @@ -25988,7 +25996,7 @@Method List
-+ #odie Kernel @@ -25996,7 +26004,7 @@Method List
-+ odie_if_defined Homebrew @@ -26004,7 +26012,7 @@Method List
-+ #odisabled Kernel @@ -26012,7 +26020,7 @@Method List
-+ #ofail Kernel @@ -26020,7 +26028,7 @@Method List
-+ #offending_node RuboCop::Cop::HelperFunctions @@ -26028,7 +26036,7 @@Method List
-+ #official? Tap @@ -26036,7 +26044,7 @@Method List
-+ #official_external_commands Homebrew::Manpages::Variables @@ -26044,7 +26052,7 @@Method List
-+ official_external_commands_paths Commands @@ -26052,7 +26060,7 @@Method List
-+ #oh1 Kernel @@ -26060,7 +26068,7 @@Method List
-+ #oh1_title Kernel @@ -26068,7 +26076,7 @@Method List
-+ #ohai Kernel @@ -26076,7 +26084,7 @@Method List
-+ ohai_if_defined Homebrew @@ -26084,7 +26092,7 @@Method List
-+ #ohai_title Kernel @@ -26092,7 +26100,7 @@Method List
-+ #old DeprecatedOption @@ -26100,7 +26108,7 @@Method List
-+ #old_cask Cask::Migrator @@ -26108,7 +26116,7 @@Method List
-+ #old_cellar Migrator @@ -26116,7 +26124,7 @@Method List
-+ #old_flag DeprecatedOption @@ -26124,7 +26132,7 @@Method List
-+ #old_full_linked_kegs Migrator @@ -26132,7 +26140,7 @@Method List
-+ #old_installed_formulae Formula @@ -26140,7 +26148,7 @@Method List
-+ #old_linked_kegs Migrator @@ -26148,7 +26156,7 @@Method List
-+ #old_opt_records Migrator @@ -26156,7 +26164,7 @@Method List
-+ #old_pin_link_record Migrator @@ -26164,7 +26172,7 @@Method List
-+ #old_pin_record Migrator @@ -26172,7 +26180,7 @@Method List
-+ #old_tabs Migrator @@ -26180,7 +26188,7 @@Method List
-+ #old_tap Migrator @@ -26188,7 +26196,7 @@Method List
-+ #old_tokens Cask::Cask @@ -26196,7 +26204,7 @@Method List
-+ oldest_cpu Hardware @@ -26204,7 +26212,7 @@Method List
-+ #oldname Migrator @@ -26212,7 +26220,7 @@Method List
-+ #oldname_opt_records Keg @@ -26220,7 +26228,7 @@Method List
-+ #oldnames Formula @@ -26228,7 +26236,7 @@Method List
-+ oldnames_needing_migration Migrator @@ -26236,7 +26244,7 @@Method List
-+ #oldnames_to_migrate Formula @@ -26244,7 +26252,7 @@Method List
-+ #on_and RuboCop::Cop::Homebrew::Present @@ -26252,7 +26260,7 @@Method List
-+ #on_arch_conditional OnSystem::MacOSOnly @@ -26260,7 +26268,7 @@Method List
-+ #on_block RuboCop::Cop::Cask::CaskHelp @@ -26268,7 +26276,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::Variables @@ -26276,7 +26284,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::NoOverrides @@ -26284,7 +26292,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::CaskHelp @@ -26292,7 +26300,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::StanzaGrouping @@ -26300,7 +26308,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::OnUrlStanza @@ -26308,7 +26316,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::OnDescStanza @@ -26316,7 +26324,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::OnSystemConditionals @@ -26324,7 +26332,7 @@Method List
-+ #on_cask RuboCop::Cop::Cask::OnHomepageStanza @@ -26332,7 +26340,7 @@Method List
-+ #on_cask_stanza_block RuboCop::Cop::Cask::Discontinued @@ -26340,7 +26348,7 @@Method List
-+ #on_cask_stanza_block RuboCop::Cop::Cask::StanzaOrder @@ -26348,7 +26356,7 @@Method List
-+ #on_cask_stanza_block RuboCop::Cop::Cask::CaskHelp @@ -26356,7 +26364,7 @@Method List
-+ #on_class RuboCop::Cop::FormulaCop @@ -26364,7 +26372,7 @@Method List
-+ #on_desc_stanza RuboCop::Cop::Cask::Desc @@ -26372,7 +26380,7 @@Method List
-+ #on_homepage_stanza RuboCop::Cop::Cask::HomepageUrlTrailingSlash @@ -26380,7 +26388,7 @@Method List
-+ #on_if RuboCop::Cop::Homebrew::Presence @@ -26388,7 +26396,7 @@Method List
-+ #on_if RuboCop::Cop::Homebrew::SafeNavigationWithBlank @@ -26396,7 +26404,7 @@Method List
-+ on_macos Formula @@ -26404,7 +26412,7 @@Method List
-+ #on_macos_version_method_call RuboCop::Cop::OnSystemConditionalsHelper @@ -26412,7 +26420,7 @@Method List
-+ #on_new_investigation RuboCop::Cop::Cask::StanzaOrder @@ -26420,7 +26428,7 @@Method List
-+ #on_or RuboCop::Cop::Homebrew::Blank @@ -26428,7 +26436,7 @@Method List
-+ #on_or RuboCop::Cop::Homebrew::Present @@ -26436,7 +26444,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::IORead @@ -26444,7 +26452,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::CompactBlank @@ -26452,7 +26460,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::NegateInclude @@ -26460,7 +26468,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::ShellCommands @@ -26468,7 +26476,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::ExecShellMetacharacters @@ -26476,7 +26484,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::MoveToExtendOS @@ -26484,7 +26492,7 @@Method List
-+ #on_send RuboCop::Cop::Homebrew::InstallBundlerGems @@ -26492,7 +26500,7 @@Method List
-+ #on_send RuboCop::Cop::Cask::SharedFilelistGlob @@ -26500,7 +26508,7 @@Method List
-+ #on_send RuboCop::Cop::Cask::ArrayAlphabetization @@ -26508,7 +26516,7 @@Method List
-+ #on_send RuboCop::Cop::Cask::UninstallMethodsOrder @@ -26516,7 +26524,7 @@Method List
-+