From 07cee27ccd92a34e4e9a57518e749a51741b03db Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:33:29 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/AbstractCoreTap.html | 36 +- docs/Cask/CaskLoader.html | 101 +- docs/Cask/CaskLoader/FromTapLoader.html | 4 +- docs/Cask/Installer.html | 4 +- docs/CoreCaskTap.html | 72 +- docs/CoreTap.html | 114 +- docs/Dependency.html | 144 +- docs/Formulary.html | 185 ++- docs/Formulary/FromAPILoader.html | 24 +- docs/Formulary/FromTapLoader.html | 8 +- docs/Homebrew.html | 22 +- docs/Tap.html | 1184 ++++++------- docs/TapConfig.html | 58 +- docs/UsesFromMacOSDependency.html | 72 +- docs/method_list.html | 2006 +++++++++++------------ 15 files changed, 1966 insertions(+), 2068 deletions(-) diff --git a/docs/AbstractCoreTap.html b/docs/AbstractCoreTap.html index f55f3478f..528034cd5 100644 --- a/docs/AbstractCoreTap.html +++ b/docs/AbstractCoreTap.html @@ -240,7 +240,7 @@
#==, #audit_exception, #audit_exceptions, #cask_dir, #cask_files, cask_files_by_name, #cask_renames, #cask_tokens, #clear_cache, cmd_directories, #command_dir, #command_files, #config, #contents, #custom_remote?, default_cask_tap, #default_remote, each, fetch, #fix_remote_configuration, #formula_dir, #formula_files, formula_files_by_name, #formula_names, #formula_renames, #formula_reverse_renames, from_path, #git?, #git_branch, #git_head, #git_last_commit, #install, install_default_cask_tap_if_necessary, #installed?, #issues_url, #link_completions_and_manpages, names, #new_cask_path, #new_formula_path, #official?, #potential_formula_dirs, #private?, #pypi_formula_mappings, #relative_cask_path, #remote, #remote_repo, #reverse_cask_renames, reverse_tap_migrations_renames, #shallow?, #style_exceptions, #tap_migrations, #to_hash, #to_s, #uninstall, untapped_official_taps
+#==, #audit_exception, #audit_exceptions, #cask_dir, #cask_files, #cask_renames, #cask_tokens, #clear_cache, cmd_directories, #command_dir, #command_files, #config, #contents, #custom_remote?, default_cask_tap, #default_remote, each, fetch, #fix_remote_configuration, #formula_dir, #formula_files, #formula_names, #formula_renames, #formula_reverse_renames, from_path, #git?, #git_branch, #git_head, #git_last_commit, #install, install_default_cask_tap_if_necessary, #installed?, #issues_url, #link_completions_and_manpages, names, #new_cask_path, #new_formula_path, #official?, #potential_formula_dirs, #private?, #pypi_formula_mappings, #relative_cask_path, #remote, #remote_repo, #reverse_cask_renames, reverse_tap_migrations_renames, #shallow?, #style_exceptions, #tap_migrations, #to_hash, #to_s, #uninstall, untapped_official_taps
@@ -294,14 +294,14 @@-985 -986 -987 -988 -989+1005 +1006 +1007 +1008 +1009
# File 'tap.rb', line 985 +# File 'tap.rb', line 1005 def self.ensure_installed! # odeprecated "`#{self}.ensure_installed!`", "`#{self}.instance.ensure_installed!`" @@ -351,12 +351,12 @@
-972 -973 -974+992 +993 +994
# File 'tap.rb', line 972 +# File 'tap.rb', line 992 def self.instance @instance ||= T.unsafe(self).new @@ -397,15 +397,15 @@
-977 -978 -979 -980 -981 -982+997 +998 +999 +1000 +1001 +1002
# File 'tap.rb', line 977 +# File 'tap.rb', line 997 def ensure_installed! return unless Homebrew::EnvConfig.no_install_from_api? diff --git a/docs/Cask/CaskLoader.html b/docs/Cask/CaskLoader.html index 86b4b3415..7f0adb502 100644 --- a/docs/Cask/CaskLoader.html +++ b/docs/Cask/CaskLoader.html @@ -244,7 +244,7 @@
-584 -585 -586+589 +590 +591
# File 'cask/cask_loader.rb', line 584 +# File 'cask/cask_loader.rb', line 589 def self.default_path(token) find_cask_in_tap(token.to_s.downcase, CoreCaskTap.instance) @@ -358,21 +358,19 @@
-588 -589 -590 -591 -592 -593+593 +594 +595 +596 +597
# File 'cask/cask_loader.rb', line 588 +# File 'cask/cask_loader.rb', line 593 def self.find_cask_in_tap(token, tap) filename = "#{token}.rb" - Tap.cask_files_by_name(tap) - .fetch(token, tap.cask_dir/filename) + tap.cask_files_by_name.fetch(token, tap.cask_dir/filename) end
-564 -565 -566 -567 -568 569 570 571 @@ -427,10 +420,15 @@+582 +583 +584 +585 +586 +587579 580 581 -582
# File 'cask/cask_loader.rb', line 564 +# File 'cask/cask_loader.rb', line 569 def self.for(ref, need_path: false, warn: true) [ @@ -549,7 +547,7 @@
- # File 'cask/cask_loader.rb', line 532 +# File 'cask/cask_loader.rb', line 533 def self.tap_cask_token_type(tapped_token, warn:) - user, repo, token = tapped_token.split("/", 3).map(&:downcase) - tap = Tap.fetch(user, repo) + return unless (tap_with_token = Tap.with_cask_token(tapped_token)) + + tap, token = tap_with_token + type = nil if (new_token = tap.cask_renames[token].presence) @@ -632,7 +675,9 @@ |
diff --git a/docs/Cask/Installer.html b/docs/Cask/Installer.html
index 87f605115..9965ab845 100644
--- a/docs/Cask/Installer.html
+++ b/docs/Cask/Installer.html
@@ -1654,8 +1654,8 @@
- # File 'tap.rb', line 1236 +# File 'tap.rb', line 1256 def cask_files return super if Homebrew::EnvConfig.no_install_from_api? @@ -398,16 +398,16 @@ |
- # File 'tap.rb', line 1264 +# File 'tap.rb', line 1284 def cask_renames @cask_renames ||= if Homebrew::EnvConfig.no_install_from_api? @@ -459,14 +459,14 @@ |
- # File 'tap.rb', line 1243 +# File 'tap.rb', line 1263 def cask_tokens return super if Homebrew::EnvConfig.no_install_from_api? @@ -531,13 +531,13 @@ |
- # File 'tap.rb', line 1230 +# File 'tap.rb', line 1250 def new_cask_path(token) cask_subdir = token[0].to_s @@ -586,18 +586,18 @@ |
- # File 'tap.rb', line 1273 +# File 'tap.rb', line 1293 def tap_migrations @tap_migrations ||= if Homebrew::EnvConfig.no_install_from_api? diff --git a/docs/CoreTap.html b/docs/CoreTap.html index d205822ea..c1e2b1295 100644 --- a/docs/CoreTap.html +++ b/docs/CoreTap.html @@ -274,7 +274,7 @@ |
- # File 'tap.rb', line 1009 +# File 'tap.rb', line 1029 def ensure_installed! return if ENV["HOMEBREW_TESTS"] @@ -385,24 +385,24 @@ |
- # File 'tap.rb', line 1023 +# File 'tap.rb', line 1043 def install(quiet: false, clone_target: nil, force_auto_update: nil, custom_remote: false, verify: false, force: false) @@ -477,20 +477,20 @@ |
- # File 'tap.rb', line 1069 +# File 'tap.rb', line 1089 def new_formula_path(name) formula_subdir = if name.start_with?("lib") @@ -546,14 +546,14 @@ |
- # File 'tap.rb', line 1016 +# File 'tap.rb', line 1036 def remote super if Homebrew::EnvConfig.no_install_from_api? @@ -603,24 +603,24 @@ |
- # File 'tap.rb', line 1198 +# File 'tap.rb', line 1218 def to_api_hash formulae_api_hash = formula_names.to_h do |name| diff --git a/docs/Dependency.html b/docs/Dependency.html index 4e7dacb21..277aed4ab 100644 --- a/docs/Dependency.html +++ b/docs/Dependency.html @@ -701,7 +701,9 @@+23 +24 +25 |
# File 'dependency.rb', line 16 @@ -712,7 +714,9 @@ |
- # File 'dependency.rb', line 156 +# File 'dependency.rb', line 158 def action(dependent, dep, &block) catch(:action) do @@ -916,8 +920,6 @@ |
- # File 'dependency.rb', line 113 +# File 'dependency.rb', line 115 def (dependent, deps = dependent.deps, cache_key: nil, &block) # Keep track dependencies to avoid infinite cyclic dependency recursion. @@ -1039,12 +1043,12 @@ |
- # File 'dependency.rb', line 180 +# File 'dependency.rb', line 182 def keep_but_prune_recursive_deps throw(:action, :keep_but_prune_recursive_deps) @@ -1084,8 +1088,6 @@ |
- # File 'dependency.rb', line 184 +# File 'dependency.rb', line 186 def merge_repeats(all) grouped = all.group_by(&:name) @@ -1147,12 +1151,12 @@ |
- # File 'dependency.rb', line 168 +# File 'dependency.rb', line 170 def prune throw(:action, :prune) @@ -1192,12 +1196,12 @@ |
- # File 'dependency.rb', line 174 +# File 'dependency.rb', line 176 def skip throw(:action, :skip) @@ -1247,12 +1251,12 @@ |
- # File 'dependency.rb', line 29 +# File 'dependency.rb', line 31 def ==(other) instance_of?(other.class) && name == other.name && == other. @@ -1320,12 +1324,12 @@ |
- # File 'dependency.rb', line 103 +# File 'dependency.rb', line 105 def dup_with_formula_name(formula) self.class.new(formula.full_name.to_s, ) @@ -1365,12 +1369,12 @@ |
- # File 'dependency.rb', line 34 +# File 'dependency.rb', line 36 def hash [name, ].hash @@ -1423,12 +1427,12 @@ |
- # File 'dependency.rb', line 98 +# File 'dependency.rb', line 100 def inspect "#<#{self.class.name}: #{name.inspect} #{.inspect}>" @@ -1511,8 +1515,6 @@ |
- # File 'dependency.rb', line 45 +# File 'dependency.rb', line 47 def installed?(minimum_version: nil, minimum_revision: nil) formula = begin @@ -1606,17 +1610,17 @@ |
- # File 'dependency.rb', line 79 +# File 'dependency.rb', line 81 def () formula = to_formula @@ -1661,12 +1665,12 @@ |
- # File 'dependency.rb', line 88 +# File 'dependency.rb', line 90 def option_names [name.split("/").last].freeze @@ -1719,13 +1723,13 @@ |
- # File 'dependency.rb', line 74 +# File 'dependency.rb', line 76 def satisfied?( = [], minimum_version: nil, minimum_revision: nil) installed?(minimum_version: minimum_version, minimum_revision: minimum_revision) && @@ -1766,14 +1770,14 @@ |
- # File 'dependency.rb', line 38 +# File 'dependency.rb', line 40 def to_formula formula = Formulary.factory(name, warn: false) @@ -1815,12 +1819,12 @@ |
- # File 'dependency.rb', line 25 +# File 'dependency.rb', line 27 def to_s name @@ -1873,12 +1877,12 @@ |
- # File 'dependency.rb', line 93 +# File 'dependency.rb', line 95 def uses_from_macos? false diff --git a/docs/Formulary.html b/docs/Formulary.html index fbff85077..9f58afc11 100644 --- a/docs/Formulary.html +++ b/docs/Formulary.html @@ -756,7 +756,7 @@
|
- # File 'formulary.rb', line 1118 +# File 'formulary.rb', line 1120 def self.canonical_name(ref) loader_for(ref).name @@ -1090,12 +1090,12 @@ |
- # File 'formulary.rb', line 1192 +# File 'formulary.rb', line 1200 def self.core_path(name) find_formula_in_tap(name.to_s.downcase, CoreTap.instance) @@ -1352,8 +1352,6 @@ |
- # File 'formulary.rb', line 948 +# File 'formulary.rb', line 950 def self.factory( ref, @@ -1550,19 +1550,18 @@ |
- # File 'formulary.rb', line 1197 +# File 'formulary.rb', line 1205 def self.find_formula_in_tap(name, tap) filename = if name.end_with?(".rb") @@ -1571,8 +1570,7 @@ |
@@ -1930,8 +1928,6 @@
- # File 'formulary.rb', line 1086 +# File 'formulary.rb', line 1088 def self.from_contents( name, @@ -2085,8 +2083,6 @@ |
- # File 'formulary.rb', line 1036 +# File 'formulary.rb', line 1038 def self.from_keg( keg, @@ -2297,8 +2295,6 @@ |
- # File 'formulary.rb', line 996 +# File 'formulary.rb', line 998 def self.from_rack( rack, spec = T.unsafe(nil), @@ -2391,14 +2389,14 @@ |
- # File 'formulary.rb', line 1019 +# File 'formulary.rb', line 1021 def self.keg_only?(rack) Formulary.from_rack(rack).keg_only? @@ -3316,14 +3314,6 @@ |
- # File 'formulary.rb', line 1170 +# File 'formulary.rb', line 1178 def self.loader_for(ref, from: T.unsafe(nil), warn: true) = { from: from, warn: warn }.compact @@ -3474,12 +3472,12 @@ |
- # File 'formulary.rb', line 1126 +# File 'formulary.rb', line 1128 def self.path(ref) loader_for(ref).path @@ -3729,7 +3727,7 @@
-
- - .formula_files_by_name(tap) ⇒ Hash{String => Pathname} - - - - - --
@@ -2493,14 +2301,14 @@
|
- # File 'tap.rb', line 871 +# File 'tap.rb', line 891 def self.names # odeprecated "`#{self}.names`" @@ -2550,22 +2358,22 @@ |
- # File 'tap.rb', line 794 +# File 'tap.rb', line 814 def self.reverse_tap_migrations_renames Tap.each_with_object({}) do |tap, hash| @@ -2623,12 +2431,12 @@ |
- # File 'tap.rb', line 885 +# File 'tap.rb', line 905 def self.untapped_official_taps Homebrew::Settings.read(:untapped)&.split(";") || [] @@ -2697,13 +2505,13 @@ |
- # File 'tap.rb', line 842 +# File 'tap.rb', line 862 def ==(other) other = Tap.fetch(other) if other.is_a?(String) @@ -2729,25 +2537,25 @@ |
- # File 'tap.rb', line 901 +# File 'tap.rb', line 921 def audit_exception(list, formula_or_cask, value = nil) return false if audit_exceptions.blank? @@ -2808,12 +2616,12 @@ |
- # File 'tap.rb', line 820 +# File 'tap.rb', line 840 def audit_exceptions @audit_exceptions = read_formula_list_directory "#{HOMEBREW_TAP_AUDIT_EXCEPTIONS_DIR}/*" @@ -2861,12 +2669,12 @@ |
- # File 'tap.rb', line 514 +# File 'tap.rb', line 548 def cask_dir @cask_dir ||= path/"Casks" @@ -2914,16 +2722,16 @@ |
- # File 'tap.rb', line 585 +# File 'tap.rb', line 612 def cask_files @cask_files ||= if cask_dir.directory? @@ -2975,16 +2783,16 @@ |
- # File 'tap.rb', line 757 +# File 'tap.rb', line 777 def cask_renames @cask_renames ||= if (rename_file = path/HOMEBREW_TAP_CASK_RENAMES_FILE).file? @@ -3036,12 +2844,12 @@ |
- # File 'tap.rb', line 664 +# File 'tap.rb', line 684 def cask_tokens @cask_tokens ||= cask_files.map(&method(:formula_file_to_name)) @@ -3076,33 +2884,35 @@ |
- # File 'tap.rb', line 123 +# File 'tap.rb', line 155 def clear_cache @remote = nil @@ -3112,7 +2922,9 @@ |
- # File 'tap.rb', line 716 +# File 'tap.rb', line 736 def command_dir @command_dir ||= path/"cmd" @@ -3224,16 +3036,16 @@ |
+742
+743
+744
+745
+746
+747
+748
+
- # File 'tap.rb', line 722 +# File 'tap.rb', line 742 def command_files @command_files ||= if command_dir.directory? @@ -3272,16 +3084,16 @@ |
- # File 'tap.rb', line 240 +# File 'tap.rb', line 274 def config @config ||= begin @@ -3310,26 +3122,26 @@ |
- # File 'tap.rb', line 529 +# File 'tap.rb', line 563 def contents contents = [] @@ -3391,14 +3203,14 @@ |
- # File 'tap.rb', line 485 +# File 'tap.rb', line 519 def custom_remote? return true unless remote @@ -3448,12 +3260,12 @@ |
- # File 'tap.rb', line 175 +# File 'tap.rb', line 209 def default_remote "https://github.com/#{full_name}" @@ -3488,14 +3300,14 @@ |
- # File 'tap.rb', line 149 +# File 'tap.rb', line 183 def ensure_installed! return if installed? @@ -3522,40 +3334,40 @@ |
- # File 'tap.rb', line 416 +# File 'tap.rb', line 450 def fix_remote_configuration(requested_remote: nil, quiet: false) if requested_remote.present? @@ -3631,17 +3443,17 @@ |
- # File 'tap.rb', line 493 +# File 'tap.rb', line 527 def formula_dir # Official formulae taps always use this directory, saves time to hardcode. @@ -3694,22 +3506,22 @@ |
- # File 'tap.rb', line 549 +# File 'tap.rb', line 583 def formula_files @formula_files ||= if formula_dir.directory? @@ -3767,12 +3579,12 @@ |
- # File 'tap.rb', line 647 +# File 'tap.rb', line 667 def formula_names @formula_names ||= formula_files.map(&method(:formula_file_to_name)) @@ -3820,16 +3632,16 @@ |
- # File 'tap.rb', line 776 +# File 'tap.rb', line 796 def formula_renames @formula_renames ||= if (rename_file = path/HOMEBREW_TAP_FORMULA_RENAMES_FILE).file? @@ -3881,15 +3693,15 @@ |
- # File 'tap.rb', line 786 +# File 'tap.rb', line 806 def formula_reverse_renames @formula_reverse_renames ||= formula_renames.each_with_object({}) do |(old_name, new_name), hash| @@ -3940,12 +3752,12 @@ |
- # File 'tap.rb', line 189 +# File 'tap.rb', line 223 def git? git_repo.git_repo? @@ -3993,14 +3805,14 @@ |
- # File 'tap.rb', line 194 +# File 'tap.rb', line 228 def git_branch raise TapUnavailableError, name unless installed? @@ -4050,14 +3862,14 @@ |
- # File 'tap.rb', line 201 +# File 'tap.rb', line 235 def git_head raise TapUnavailableError, name unless installed? @@ -4107,14 +3919,14 @@ |
- # File 'tap.rb', line 208 +# File 'tap.rb', line 242 def git_last_commit raise TapUnavailableError, name unless installed? @@ -4271,40 +4083,6 @@ |
- # File 'tap.rb', line 279 +# File 'tap.rb', line 313 def install(quiet: false, clone_target: nil, force_auto_update: nil, custom_remote: false, verify: false, force: false) @@ -4566,12 +4378,12 @@ |
- # File 'tap.rb', line 249 +# File 'tap.rb', line 283 def installed? path.directory? @@ -4620,14 +4432,14 @@ |
- # File 'tap.rb', line 217 +# File 'tap.rb', line 251 def issues_url return if !official? && custom_remote? @@ -4654,20 +4466,20 @@ |
- # File 'tap.rb', line 404 +# File 'tap.rb', line 438 def link_completions_and_manpages command = "brew tap --repair" @@ -4738,12 +4550,12 @@ |
- # File 'tap.rb', line 519 +# File 'tap.rb', line 553 def new_cask_path(token) cask_dir/"#{token.downcase}.rb" @@ -4806,12 +4618,12 @@ |
- # File 'tap.rb', line 508 +# File 'tap.rb', line 542 def new_formula_path(name) formula_dir/"#{name.downcase}.rb" @@ -4859,12 +4671,12 @@ |
- # File 'tap.rb', line 228 +# File 'tap.rb', line 262 def official? user == "Homebrew" @@ -4912,12 +4724,12 @@ |
- # File 'tap.rb', line 503 +# File 'tap.rb', line 537 def potential_formula_dirs @potential_formula_dirs ||= [path/"Formula", path/"HomebrewFormula", path].freeze @@ -4965,14 +4777,14 @@ |
- # File 'tap.rb', line 233 +# File 'tap.rb', line 267 def private? return @private if instance_variable_defined?(:@private) @@ -5009,12 +4821,12 @@ |
- # File 'tap.rb', line 831 +# File 'tap.rb', line 851 def pypi_formula_mappings @pypi_formula_mappings = read_formula_list path/HOMEBREW_TAP_PYPI_FORMULA_MAPPINGS @@ -5077,13 +4889,13 @@ |
- # File 'tap.rb', line 524 +# File 'tap.rb', line 558 def relative_cask_path(token) new_cask_path(token).to_s @@ -5120,14 +4932,14 @@ |
- # File 'tap.rb', line 157 +# File 'tap.rb', line 191 def remote return default_remote unless installed? @@ -5165,16 +4977,16 @@ |
- # File 'tap.rb', line 165 +# File 'tap.rb', line 199 def remote_repo return unless remote @@ -5226,15 +5038,15 @@ |
- # File 'tap.rb', line 767 +# File 'tap.rb', line 787 def reverse_cask_renames @reverse_cask_renames ||= cask_renames.each_with_object({}) do |(old_name, new_name), hash| @@ -5285,12 +5097,12 @@ |
- # File 'tap.rb', line 254 +# File 'tap.rb', line 288 def shallow? (path/".git/shallow").exist? @@ -5338,12 +5150,12 @@ |
- # File 'tap.rb', line 826 +# File 'tap.rb', line 846 def style_exceptions @style_exceptions = read_formula_list_directory "#{HOMEBREW_TAP_STYLE_EXCEPTIONS_DIR}/*" @@ -5391,16 +5203,16 @@ |
- # File 'tap.rb', line 810 +# File 'tap.rb', line 830 def tap_migrations @tap_migrations ||= if (migration_file = path/HOMEBREW_TAP_MIGRATIONS_FILE).file? @@ -5452,32 +5264,32 @@ |
- # File 'tap.rb', line 731 +# File 'tap.rb', line 751 def to_hash hash = { @@ -5522,12 +5334,12 @@ |
- # File 'tap.rb', line 223 +# File 'tap.rb', line 257 def to_s name @@ -5575,43 +5387,43 @@ |
- # File 'tap.rb', line 449 +# File 'tap.rb', line 483 def uninstall(manual: false) require "descriptions" diff --git a/docs/TapConfig.html b/docs/TapConfig.html index 70d3e0fc4..5d8819698 100644 --- a/docs/TapConfig.html +++ b/docs/TapConfig.html @@ -292,12 +292,12 @@ |
- # File 'tap.rb', line 1289 +# File 'tap.rb', line 1309 def initialize(tap) @tap = tap @@ -339,12 +339,12 @@ |
- # File 'tap.rb', line 1286 +# File 'tap.rb', line 1306 def tap @tap @@ -376,15 +376,15 @@ |
- # File 'tap.rb', line 1293 +# File 'tap.rb', line 1313 def [](key) return unless tap.git? @@ -412,15 +412,15 @@ |
- # File 'tap.rb', line 1300 +# File 'tap.rb', line 1320 def []=(key, value) return unless tap.git? @@ -448,15 +448,15 @@ |
- # File 'tap.rb', line 1307 +# File 'tap.rb', line 1327 def delete(key) return unless tap.git? diff --git a/docs/UsesFromMacOSDependency.html b/docs/UsesFromMacOSDependency.html index 66bb21975..11b3d3758 100644 --- a/docs/UsesFromMacOSDependency.html +++ b/docs/UsesFromMacOSDependency.html @@ -456,14 +456,14 @@ |
- # File 'dependency.rb', line 234 +# File 'dependency.rb', line 236 def initialize(name, = [], bounds:) super(name, ) @@ -507,12 +507,12 @@ |
- # File 'dependency.rb', line 231 +# File 'dependency.rb', line 233 def bounds @bounds @@ -544,12 +544,12 @@ |
- # File 'dependency.rb', line 240 +# File 'dependency.rb', line 242 def ==(other) instance_of?(other.class) && name == other.name && == other. && bounds == other.bounds @@ -612,12 +612,12 @@ |
- # File 'dependency.rb', line 276 +# File 'dependency.rb', line 278 def dup_with_formula_name(formula) self.class.new(formula.full_name.to_s, , bounds: bounds) @@ -642,12 +642,12 @@ |
- # File 'dependency.rb', line 244 +# File 'dependency.rb', line 246 def hash [name, , bounds].hash @@ -695,12 +695,12 @@ |
- # File 'dependency.rb', line 281 +# File 'dependency.rb', line 283 def inspect "#<#{self.class.name}: #{name.inspect} #{.inspect} #{bounds.inspect}>" @@ -778,12 +778,12 @@ |
- # File 'dependency.rb', line 249 +# File 'dependency.rb', line 251 def installed?(minimum_version: nil, minimum_revision: nil) use_macos_install? || super(minimum_version: minimum_version, minimum_revision: minimum_revision) @@ -831,8 +831,6 @@ |
- # File 'dependency.rb', line 254 +# File 'dependency.rb', line 256 def use_macos_install? # Check whether macOS is new enough for dependency to not be required. @@ -908,12 +908,12 @@ |
- # File 'dependency.rb', line 271 +# File 'dependency.rb', line 273 def uses_from_macos? true diff --git a/docs/method_list.html b/docs/method_list.html index 7c457ae43..7aaec5087 100644 --- a/docs/method_list.html +++ b/docs/method_list.html @@ -4141,14 +4141,6 @@
- cask_files_by_name
- Tap
-
-
cask_name
Homebrew::Livecheck
@@ -4156,7 +4148,7 @@ Method List-
#cask_node
RuboCop::Cask::AST::CaskBlock
@@ -4164,7 +4156,7 @@ Method List-
#cask_on_system_block?
RuboCop::AST::Node
@@ -4172,7 +4164,7 @@ Method List-
#cask_options
Homebrew::CLI::Parser
@@ -4180,7 +4172,7 @@ Method List-
cask_opts
Homebrew::EnvConfig
@@ -4188,7 +4180,7 @@ Method List-
cask_opts_binaries?
Homebrew::EnvConfig
@@ -4196,7 +4188,7 @@ Method List-
cask_opts_quarantine?
Homebrew::EnvConfig
@@ -4204,7 +4196,7 @@ Method List-
cask_opts_require_sha?
Homebrew::EnvConfig
@@ -4212,7 +4204,7 @@ Method List-
cask_output
Utils::Analytics
@@ -4220,7 +4212,7 @@ Method List-
cask_reason
Homebrew::MissingFormula
@@ -4228,7 +4220,7 @@ Method List-
#cask_renames
Tap
@@ -4236,7 +4228,7 @@ Method List-
#cask_renames
CoreCaskTap
@@ -4244,7 +4236,7 @@ Method List-
#cask_token
RuboCop::Cask::AST::CaskHeader
@@ -4252,7 +4244,7 @@ Method List-
#cask_tokens
Tap
@@ -4260,7 +4252,7 @@ Method List-
#cask_tokens
CoreCaskTap
@@ -4268,7 +4260,7 @@ Method List-
#cask_tokens
Homebrew::TapAuditor
@@ -4276,7 +4268,7 @@ Method List-
cask_url_unversioned
Homebrew::Livecheck::SkipConditions
@@ -4284,7 +4276,7 @@ Method List-
cask_version_latest
Homebrew::Livecheck::SkipConditions
@@ -4292,7 +4284,7 @@ Method List-
#caskfile_only?
Cask::Cask
@@ -4300,7 +4292,7 @@ Method List-
#caskroom_path
Cask::DSL
@@ -4308,7 +4300,7 @@ Method List-
#caskroom_path
Cask::Cask
@@ -4316,7 +4308,7 @@ Method List-
casks
Cask::Caskroom
@@ -4324,7 +4316,7 @@ Method List-
cat
Homebrew
@@ -4332,7 +4324,7 @@ Method List-
cat_args
Homebrew
@@ -4340,7 +4332,7 @@ Method List-
#cause
CompilerFailure
@@ -4348,7 +4340,7 @@ Method List-
#cause
DownloadError
@@ -4356,7 +4348,7 @@ Method List-
#caveats
Caveats
@@ -4364,7 +4356,7 @@ Method List-
#caveats
Formula
@@ -4372,7 +4364,7 @@ Method List-
#caveats
Cask::DSL
@@ -4380,7 +4372,7 @@ Method List-
#caveats
Messages
@@ -4388,7 +4380,7 @@ Method List-
caveats
Cask::Installer
@@ -4396,7 +4388,7 @@ Method List-
#caveats
Cask::Installer
@@ -4404,7 +4396,7 @@ Method List-
#caveats
FormulaInstaller
@@ -4412,7 +4404,7 @@ Method List-
#caveats_strings
RuboCop::Cop::FormulaCop
@@ -4420,7 +4412,7 @@ Method List-
#cc
SharedEnvExtension
@@ -4428,7 +4420,7 @@ Method List-
#cd
Pathname
@@ -4436,7 +4428,7 @@ Method List-
#cellar
Bottle
@@ -4444,7 +4436,7 @@ Method List-
#cellar
Utils::Bottles::TagSpecification
@@ -4452,7 +4444,7 @@ Method List-
cellar_parameter_needed?
Homebrew
@@ -4460,7 +4452,7 @@ Method List-
#cflags
SharedEnvExtension
@@ -4468,7 +4460,7 @@ Method List-
#change_dylib_id
Keg
@@ -4476,7 +4468,7 @@ Method List-
#change_dylib_id
MachOShim
@@ -4484,7 +4476,7 @@ Method List-
#change_install_name
Keg
@@ -4492,7 +4484,7 @@ Method List-
#change_install_name
MachOShim
@@ -4500,7 +4492,7 @@ Method List-
#change_make_var!
StringInreplaceExtension
@@ -4508,7 +4500,7 @@ Method List-
#change_rpath
Keg
@@ -4516,7 +4508,7 @@ Method List-
#change_rpath
MachOShim
@@ -4524,7 +4516,7 @@ Method List-
#changed_files
Tab
@@ -4532,7 +4524,7 @@ Method List-
changed_packages
Homebrew
@@ -4540,7 +4532,7 @@ Method List-
changed_test_files
Homebrew
@@ -4548,7 +4540,7 @@ Method List-
#channel
Homebrew::Livecheck::Strategy::Sparkle::Item
@@ -4556,7 +4548,7 @@ Method List-
#check_access_directories
Homebrew::Diagnostic::Checks
@@ -4564,7 +4556,7 @@ Method List-
#check_arch_requirements
Cask::Installer
@@ -4572,7 +4564,7 @@ Method List-
#check_binary_arches
FormulaCellarChecks
@@ -4580,7 +4572,7 @@ Method List-
#check_block_component_order
RuboCop::Cop::FormulaAudit::ComponentsOrder
@@ -4588,7 +4580,7 @@ Method List-
check_bottled_formulae!
Homebrew
@@ -4596,7 +4588,7 @@ Method List-
#check_brew_git_origin
Homebrew::Diagnostic::Checks
@@ -4604,7 +4596,7 @@ Method List-
check_broken_dependents
Homebrew::Upgrade
@@ -4612,7 +4604,7 @@ Method List-
#check_broken_sdks
Homebrew::Diagnostic::Checks
@@ -4620,7 +4612,7 @@ Method List-
#check_cask_deprecated_disabled
Homebrew::Diagnostic::Checks
@@ -4628,7 +4620,7 @@ Method List-
#check_cask_environment_variables
Homebrew::Diagnostic::Checks
@@ -4636,7 +4628,7 @@ Method List-
#check_cask_install_location
Homebrew::Diagnostic::Checks
@@ -4644,7 +4636,7 @@ Method List-
#check_cask_load_path
Homebrew::Diagnostic::Checks
@@ -4652,7 +4644,7 @@ Method List-
#check_cask_quarantine_support
Homebrew::Diagnostic::Checks
@@ -4660,7 +4652,7 @@ Method List-
#check_cask_software_versions
Homebrew::Diagnostic::Checks
@@ -4668,7 +4660,7 @@ Method List-
#check_cask_staging_location
Homebrew::Diagnostic::Checks
@@ -4676,7 +4668,7 @@ Method List-
#check_cask_taps
Homebrew::Diagnostic::Checks
@@ -4684,7 +4676,7 @@ Method List-
#check_cask_xattr
Homebrew::Diagnostic::Checks
@@ -4692,7 +4684,7 @@ Method List-
#check_casktap_integrity
Homebrew::Diagnostic::Checks
@@ -4700,7 +4692,7 @@ Method List-
check_closed_pull_requests
Homebrew
@@ -4708,7 +4700,7 @@ Method List-
#check_clt_minimum_version
Homebrew::Diagnostic::Checks
@@ -4716,7 +4708,7 @@ Method List-
#check_clt_up_to_date
Homebrew::Diagnostic::Checks
@@ -4724,7 +4716,7 @@ Method List-
#check_conflicts
Cask::Installer
@@ -4732,7 +4724,7 @@ Method List-
#check_conflicts
FormulaInstaller
@@ -4740,7 +4732,7 @@ Method List-
#check_coretap_integrity
Homebrew::Diagnostic::Checks
@@ -4748,7 +4740,7 @@ Method List-
#check_cpuid_instruction
FormulaCellarChecks
@@ -4756,7 +4748,7 @@ Method List-
#check_deleted_formula
Homebrew::Diagnostic::Checks
@@ -4764,7 +4756,7 @@ Method List-
#check_dependency_nodes_order
RuboCop::Cop::FormulaAudit::DependencyOrder
@@ -4772,7 +4764,7 @@ Method List-
#check_deprecate_disable
Cask::Installer
@@ -4780,7 +4772,7 @@ Method List-
#check_deprecated_caskroom_taps
Homebrew::Diagnostic::Checks
@@ -4788,7 +4780,7 @@ Method List-
#check_deprecated_disabled
Homebrew::Diagnostic::Checks
@@ -4796,7 +4788,7 @@ Method List-
#check_deprecated_official_taps
Homebrew::Diagnostic::Checks
@@ -4804,7 +4796,7 @@ Method List-
#check_easy_install_pth
FormulaCellarChecks
@@ -4812,7 +4804,7 @@ Method List-
#check_elisp_dirname
FormulaCellarChecks
@@ -4820,7 +4812,7 @@ Method List-
#check_elisp_root
FormulaCellarChecks
@@ -4828,7 +4820,7 @@ Method List-
#check_env_path
FormulaCellarChecks
@@ -4836,7 +4828,7 @@ Method List-
#check_exist_directories
Homebrew::Diagnostic::Checks
@@ -4844,7 +4836,7 @@ Method List-
#check_filesystem_case_sensitive
Homebrew::Diagnostic::Checks
@@ -4852,7 +4844,7 @@ Method List-
#check_flat_namespace
FormulaCellarChecks
@@ -4860,7 +4852,7 @@ Method List-
#check_for_broken_symlinks
Homebrew::Diagnostic::Checks
@@ -4868,7 +4860,7 @@ Method List-
check_for_dependents
Homebrew::Uninstall
@@ -4876,7 +4868,7 @@ Method List-
check_for_duplicate_pull_requests
GitHub
@@ -4884,7 +4876,7 @@ Method List-
#check_for_external_cmd_name_conflict
Homebrew::Diagnostic::Checks
@@ -4892,7 +4884,7 @@ Method List-
#check_for_gettext
Homebrew::Diagnostic::Checks
@@ -4900,7 +4892,7 @@ Method List-
#check_for_git
Homebrew::Diagnostic::Checks
@@ -4908,7 +4900,7 @@ Method List-
#check_for_iconv
Homebrew::Diagnostic::Checks
@@ -4916,7 +4908,7 @@ Method List-
#check_for_installed_developer_tools
Homebrew::Diagnostic::Checks
@@ -4924,7 +4916,7 @@ Method List-
check_for_mirrors
Homebrew
@@ -4932,7 +4924,7 @@ Method List-
#check_for_multiple_volumes
Homebrew::Diagnostic::Checks
@@ -4940,7 +4932,7 @@ Method List-
#check_for_non_prefixed_coreutils
Homebrew::Diagnostic::Checks
@@ -4948,7 +4940,7 @@ Method List-
#check_for_non_prefixed_findutils
Homebrew::Diagnostic::Checks
@@ -4956,7 +4948,7 @@ Method List-
#check_for_other_frameworks
Homebrew::Diagnostic::Checks
@@ -4964,7 +4956,7 @@ Method List-
#check_for_pydistutils_cfg_in_home
Homebrew::Diagnostic::Checks
@@ -4972,7 +4964,7 @@ Method List-
#check_for_stray_dylibs
Homebrew::Diagnostic::Checks
@@ -4980,7 +4972,7 @@ Method List-
#check_for_stray_headers
Homebrew::Diagnostic::Checks
@@ -4988,7 +4980,7 @@ Method List-
#check_for_stray_las
Homebrew::Diagnostic::Checks
@@ -4996,7 +4988,7 @@ Method List-
#check_for_stray_pcs
Homebrew::Diagnostic::Checks
@@ -5004,7 +4996,7 @@ Method List-
#check_for_stray_static_libs
Homebrew::Diagnostic::Checks
@@ -5012,7 +5004,7 @@ Method List-
#check_for_symlinked_cellar
Homebrew::Diagnostic::Checks
@@ -5020,7 +5012,7 @@ Method List-
#check_for_tap_ruby_files_locations
Homebrew::Diagnostic::Checks
@@ -5028,7 +5020,7 @@ Method List-
#check_for_unlinked_but_not_keg_only
Homebrew::Diagnostic::Checks
@@ -5036,7 +5028,7 @@ Method List-
#check_for_unnecessary_cask_tap
Homebrew::Diagnostic::Checks
@@ -5044,7 +5036,7 @@ Method List-
#check_for_unnecessary_core_tap
Homebrew::Diagnostic::Checks
@@ -5052,7 +5044,7 @@ Method List-
#check_for_unreadable_installed_formula
Homebrew::Diagnostic::Checks
@@ -5060,7 +5052,7 @@ Method List-
#check_for_unsupported_macos
Homebrew::Diagnostic::Checks
@@ -5068,7 +5060,7 @@ Method List-
#check_gcc_dependent_linkage
Homebrew::Diagnostic::Checks
@@ -5076,7 +5068,7 @@ Method List-
#check_generic_executables
FormulaCellarChecks
@@ -5084,7 +5076,7 @@ Method List-
#check_git_newline_settings
Homebrew::Diagnostic::Checks
@@ -5092,7 +5084,7 @@ Method List-
#check_git_status
Homebrew::Diagnostic::Checks
@@ -5100,7 +5092,7 @@ Method List-
#check_git_version
Homebrew::Diagnostic::Checks
@@ -5108,7 +5100,7 @@ Method List-
#check_glibc_minimum_version
Homebrew::Diagnostic::Checks
@@ -5116,7 +5108,7 @@ Method List- |