From ccf890ff8b2c5829415f9fce7ecf30882279d9a7 Mon Sep 17 00:00:00 2001
From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
Date: Tue, 23 Apr 2024 23:33:50 +0000
Subject: [PATCH] docs: updates from Homebrew/brew
---
docs/ELFShim.html | 144 +-
docs/OS.html | 2 +-
docs/OS/Linux.html | 4 +-
docs/OS/Linux/Ld.html | 558 +++++
docs/Utils.html | 4 +-
docs/Utils/Path.html | 227 ++
docs/_index.html | 14 +
docs/class_list.html | 2 +-
docs/method_list.html | 5054 +++++++++++++++++++++--------------------
9 files changed, 3424 insertions(+), 2585 deletions(-)
create mode 100644 docs/OS/Linux/Ld.html
create mode 100644 docs/Utils/Path.html
diff --git a/docs/ELFShim.html b/docs/ELFShim.html
index fd9aeb971..bc5159c83 100644
--- a/docs/ELFShim.html
+++ b/docs/ELFShim.html
@@ -518,8 +518,6 @@
-58
-59
60
61
62
@@ -529,10 +527,12 @@
66
67
68
-69
+69
+70
+71
- # File 'os/linux/elf.rb', line 58
+ # File 'os/linux/elf.rb', line 60
def arch
return :dunno unless elf?
@@ -594,12 +594,12 @@
-85
-86
-87
+87
+88
+89
- # File 'os/linux/elf.rb', line 85
+ # File 'os/linux/elf.rb', line 87
def binary_executable?
elf_type == :executable
@@ -652,12 +652,12 @@
-81
-82
-83
+83
+84
+85
- # File 'os/linux/elf.rb', line 81
+ # File 'os/linux/elf.rb', line 83
def dylib?
elf_type == :dylib
@@ -697,12 +697,12 @@
-184
-185
-186
+220
+221
+222
- # File 'os/linux/elf.rb', line 184
+ # File 'os/linux/elf.rb', line 220
def dylib_id
metadata . dylib_id
@@ -755,14 +755,14 @@
-115
-116
117
118
-119
+119
+120
+121
- # File 'os/linux/elf.rb', line 115
+ # File 'os/linux/elf.rb', line 117
def dynamic_elf?
return @dynamic_elf if defined? @dynamic_elf
@@ -804,12 +804,12 @@
-188
-189
-190
+224
+225
+226
- # File 'os/linux/elf.rb', line 188
+ # File 'os/linux/elf.rb', line 224
def dynamically_linked_libraries ( * )
metadata . dylibs
@@ -862,17 +862,17 @@
-49
-50
51
52
53
54
55
-56
+56
+57
+58
- # File 'os/linux/elf.rb', line 49
+ # File 'os/linux/elf.rb', line 51
def elf?
return @elf if defined? @elf
@@ -917,18 +917,18 @@
-71
-72
73
74
75
76
77
78
-79
+79
+80
+81
- # File 'os/linux/elf.rb', line 71
+ # File 'os/linux/elf.rb', line 73
def elf_type
return :dunno unless elf?
@@ -974,14 +974,14 @@
-103
-104
105
106
-107
+107
+108
+109
- # File 'os/linux/elf.rb', line 103
+ # File 'os/linux/elf.rb', line 105
def interpreter
return @interpreter if defined? @interpreter
@@ -1023,14 +1023,14 @@
-109
-110
111
112
-113
+113
+114
+115
- # File 'os/linux/elf.rb', line 109
+ # File 'os/linux/elf.rb', line 111
def patch! ( interpreter: nil , rpath: nil )
return if interpreter . blank? && rpath . blank?
@@ -1072,13 +1072,13 @@
-174
-175
-176
-177
+210
+211
+212
+213
- # File 'os/linux/elf.rb', line 174
+ # File 'os/linux/elf.rb', line 210
def patchelf_patcher
require " patchelf "
@@ -1119,12 +1119,12 @@
-45
-46
-47
+47
+48
+49
- # File 'os/linux/elf.rb', line 45
+ # File 'os/linux/elf.rb', line 47
def read_uint16 ( offset )
read ( 2 , offset ) . unpack1 ( " v " )
@@ -1164,12 +1164,12 @@
-41
-42
-43
+43
+44
+45
- # File 'os/linux/elf.rb', line 41
+ # File 'os/linux/elf.rb', line 43
def read_uint8 ( offset )
read ( 1 , offset ) . unpack1 ( " C " )
@@ -1210,14 +1210,14 @@
-91
-92
93
94
-95
+95
+96
+97
- # File 'os/linux/elf.rb', line 91
+ # File 'os/linux/elf.rb', line 93
def rpath
return @rpath if defined? @rpath
@@ -1259,12 +1259,12 @@
-170
-171
-172
+206
+207
+208
- # File 'os/linux/elf.rb', line 170
+ # File 'os/linux/elf.rb', line 206
def rpath_using_patchelf_rb
patchelf_patcher . runpath || patchelf_patcher . rpath
@@ -1305,12 +1305,12 @@
-99
-100
-101
+101
+102
+103
- # File 'os/linux/elf.rb', line 99
+ # File 'os/linux/elf.rb', line 101
def rpaths
Array ( rpath &. split ( " : " ) )
@@ -1350,15 +1350,15 @@
-163
-164
-165
-166
-167
-168
+199
+200
+201
+202
+203
+204
- # File 'os/linux/elf.rb', line 163
+ # File 'os/linux/elf.rb', line 199
def save_using_patchelf_rb ( new_interpreter , new_rpath )
patcher = patchelf_patcher
diff --git a/docs/OS.html b/docs/OS.html
index 8da3947f2..9a5ac1795 100644
--- a/docs/OS.html
+++ b/docs/OS.html
@@ -79,7 +79,7 @@
Defined in:
os.rb,
- os/mac.rb, os/linux.rb, cask/macos.rb, os/mac/sdk.rb, os/mac/xcode.rb, macos_version.rb, os/linux/glibc.rb, os/linux/kernel.rb
+ os/mac.rb, os/linux.rb, cask/macos.rb, os/mac/sdk.rb, os/linux/ld.rb, os/mac/xcode.rb, macos_version.rb, os/linux/glibc.rb, os/linux/kernel.rb
diff --git a/docs/OS/Linux.html b/docs/OS/Linux.html
index 500792ff3..0ab078c61 100644
--- a/docs/OS/Linux.html
+++ b/docs/OS/Linux.html
@@ -79,7 +79,7 @@
Defined in:
os/linux.rb,
- os/linux/glibc.rb, os/linux/kernel.rb
+ os/linux/ld.rb, os/linux/glibc.rb, os/linux/kernel.rb
@@ -104,7 +104,7 @@ Overview
- Modules: Glibc , Kernel
+ Modules: Glibc , Kernel , Ld
diff --git a/docs/OS/Linux/Ld.html b/docs/OS/Linux/Ld.html
new file mode 100644
index 000000000..5420b5cff
--- /dev/null
+++ b/docs/OS/Linux/Ld.html
@@ -0,0 +1,558 @@
+
+
+
+
+
+
+ Module: OS::Linux::Ld
+
+ — Homebrew Ruby API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Module: OS::Linux::Ld
+
+
+ Private
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defined in:
+ os/linux/ld.rb
+
+
+
+
+
Overview
+
+
+ This module is part of a private API.
+ This module may only be used in the Homebrew/brew repository.
+ Third parties should avoid using this module if possible, as it may be removed or changed without warning.
+
+
Helper functions for querying ld
information.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class Method Summary
+ collapse
+
+
+
+
+
+
+
+
+
Class Method Details
+
+
+
+
+
+ .brewed_ld_so_diagnostics ⇒ String
+
+
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+
+
+
+
+
+
+11
+12
+13
+14
+15
+16
+17
+18
+19
+
+
+ # File 'os/linux/ld.rb', line 11
+
+def self . brewed_ld_so_diagnostics
+ brewed_ld_so = HOMEBREW_PREFIX / " lib/ld.so "
+ return " " unless brewed_ld_so . exist?
+
+ ld_so_output = Utils . popen_read ( brewed_ld_so , " --list-diagnostics " )
+ return " " unless $CHILD_STATUS . success?
+
+ ld_so_output
+end
+
+
+
+
+
+
+
+
+ .library_paths (conf_path = Pathname(sysconfdir)/"ld.so.conf") ⇒ Array <String >
+
+
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+
+
+
+
+
+
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+
+
+ # File 'os/linux/ld.rb', line 46
+
+def self . library_paths ( conf_path = Pathname ( sysconfdir ) / " ld.so.conf " )
+ conf_file = Pathname ( conf_path )
+ paths = Set . new
+ directory = conf_file . realpath . dirname
+
+ conf_file . readlines . each do | line |
+ line . strip!
+ line . sub! ( / \s*#.*$ / , " " )
+
+ if line . start_with? ( / \s*include\s+ / )
+ include_path = Pathname ( line . sub ( / ^\s*include\s+ / , " " ) ) . expand_path
+ wildcard = include_path . absolute? ? include_path : directory / include_path
+
+ Dir . glob ( wildcard . to_s ) . each do | include_file |
+ paths += library_paths ( include_file )
+ end
+ elsif line . empty?
+ next
+ else
+ paths << line
+ end
+ end
+
+ paths . to_a
+end
+
+
+
+
+
+
+
+
+ .sysconfdir ⇒ String
+
+
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+
+
+
+
+
+
+22
+23
+24
+25
+26
+27
+28
+29
+
+
+ # File 'os/linux/ld.rb', line 22
+
+def self . sysconfdir
+ fallback_sysconfdir = " /etc "
+
+ match = brewed_ld_so_diagnostics . match ( / path.sysconfdir="(.+)" / )
+ return fallback_sysconfdir unless match
+
+ match . captures . compact . first || fallback_sysconfdir
+end
+
+
+
+
+
+
+
+
+ .system_dirs ⇒ Array <String >
+
+
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+
+
+
+
+
+
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+
+
+ # File 'os/linux/ld.rb', line 32
+
+def self . system_dirs
+ dirs = [ ]
+
+ brewed_ld_so_diagnostics . split ( " \n " ) . each do | line |
+ match = line . match ( / path.system_dirs\[0x.*\]="(.*)" / )
+ next unless match
+
+ dirs << match . captures . compact . first
+ end
+
+ dirs
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Utils.html b/docs/Utils.html
index 0c2b76353..058ecbdae 100644
--- a/docs/Utils.html
+++ b/docs/Utils.html
@@ -79,7 +79,7 @@
Defined in:
extend/os/mac/utils/bottles.rb,
- utils.rb, utils/ast.rb, utils/git.rb, utils/svn.rb, utils/tar.rb, utils/curl.rb, utils/fork.rb, utils/gzip.rb, utils/link.rb, utils/popen.rb, utils/shell.rb, utils/timer.rb, utils/bottles.rb, utils/service.rb, utils/shebang.rb, utils/analytics.rb, utils/backtrace.rb, utils/inreplace.rb, utils/autoremove.rb, utils/git_repository.rb, utils/topological_hash.rb, utils/ast.rbi, utils/shell.rbi, utils/service.rbi, utils/shebang.rbi, sorbet/rbi/parlour.rbi
+ utils.rb, utils/ast.rb, utils/git.rb, utils/svn.rb, utils/tar.rb, utils/curl.rb, utils/fork.rb, utils/gzip.rb, utils/link.rb, utils/path.rb, utils/popen.rb, utils/shell.rb, utils/timer.rb, utils/bottles.rb, utils/service.rb, utils/shebang.rb, utils/analytics.rb, utils/backtrace.rb, utils/inreplace.rb, utils/autoremove.rb, utils/git_repository.rb, utils/topological_hash.rb, utils/ast.rbi, utils/shell.rbi, utils/service.rbi, utils/shebang.rbi, sorbet/rbi/parlour.rbi
@@ -89,7 +89,7 @@
Defined Under Namespace
- Modules: AST , Analytics , Backtrace , Bottles , Curl , Git , Gzip , Inreplace , Link , Service , Shebang , Shell , Svn , Tar , Timer
+ Modules: AST , Analytics , Backtrace , Bottles , Curl , Git , Gzip , Inreplace , Link , Path , Service , Shebang , Shell , Svn , Tar , Timer
diff --git a/docs/Utils/Path.html b/docs/Utils/Path.html
new file mode 100644
index 000000000..166e625af
--- /dev/null
+++ b/docs/Utils/Path.html
@@ -0,0 +1,227 @@
+
+
+
+
+
+
+ Module: Utils::Path
+
+ — Homebrew Ruby API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Module: Utils::Path
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defined in:
+ utils/path.rb
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class Method Summary
+ collapse
+
+
+
+
+
+
+
+
+
Class Method Details
+
+
+
+
+
+ .child_of? (parent, child) ⇒ Boolean
+
+
+
+
+
+
+
+
+
+
+
+
+7
+8
+9
+10
+11
+12
+
+
+ # File 'utils/path.rb', line 7
+
+def self . child_of? ( parent , child )
+ parent_pathname = Pathname ( parent ) . expand_path
+ child_pathname = Pathname ( child ) . expand_path
+ child_pathname . ascend { | p | return true if p == parent_pathname }
+ false
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/_index.html b/docs/_index.html
index 43b6dab19..0b65592e9 100644
--- a/docs/_index.html
+++ b/docs/_index.html
@@ -3369,6 +3369,13 @@
Namespace Listing A-Z
+
+ Ld
+
+ (OS::Linux)
+
+
+
Leaves
@@ -4273,6 +4280,13 @@ Namespace Listing A-Z
+
+ Path
+
+ (Utils)
+
+
+
Pathname
diff --git a/docs/class_list.html b/docs/class_list.html
index cf8a03afa..dbd2cd986 100644
--- a/docs/class_list.html
+++ b/docs/class_list.html
@@ -43,7 +43,7 @@
-Array < Object
Top Level Namespace Attr < Plugin
Top Level Namespace Bottle < Object
Top Level Namespace Build < Object
Top Level Namespace App < Moved
Cask::Artifact Binary < Symlinked
Cask::Artifact Font < Moved
Cask::Artifact Moved < Relocated
Cask::Artifact Pkg < AbstractArtifact
Cask::Artifact Suite < Moved
Cask::Artifact Zap < AbstractUninstall
Cask::Artifact Caveats < Object
Top Level Namespace Cleaner < Object
Top Level Namespace CoreTap < AbstractCoreTap
Top Level Namespace ENV < Object
Top Level Namespace File < Object
Top Level Namespace Formula < Object
Top Level Namespace Error < RuntimeError
GitHub::API Hash < Object
Top Level Namespace Args < OpenStruct
Homebrew::CLI Args < Args
Homebrew::Cmd::Analytics Args < Args
Homebrew::Cmd::Autoremove Cache < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Cache Args < Args
Homebrew::Cmd::Caskroom Cellar < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Cellar Args < Args
Homebrew::Cmd::CleanupCmd Args < Args
Homebrew::Cmd::CommandsCmd Args < Args
Homebrew::Cmd::CompletionsCmd Config < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Config Deps < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Deps Desc < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Desc Args < Args
Homebrew::Cmd::Developer Docs < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Docs Doctor < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Doctor Env < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Env Args < Args
Homebrew::Cmd::FetchCmd Args < Args
Homebrew::Cmd::GistLogs HelpCmd < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::HelpCmd Home < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Home Info < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Info Args < Args
Homebrew::Cmd::InstallCmd Leaves < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Leaves Link < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Link List < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::List Log < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Log Migrate < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Migrate Missing < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Missing Args < Args
Homebrew::Cmd::NodenvSync Args < Args
Homebrew::Cmd::OptionsCmd Args < Args
Homebrew::Cmd::Outdated Pin < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Pin Args < Args
Homebrew::Cmd::PostgresqlUpgradeDatabase Args < Args
Homebrew::Cmd::Postinstall Prefix < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Prefix Args < Args
Homebrew::Cmd::PyenvSync Args < Args
Homebrew::Cmd::RbenvSync Args < Args
Homebrew::Cmd::ReadallCmd Args < Args
Homebrew::Cmd::Reinstall Args < Args
Homebrew::Cmd::Repository Args < Args
Homebrew::Cmd::SearchCmd TapCmd < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::TapCmd TapInfo < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::TapInfo Args < Args
Homebrew::Cmd::UninstallCmd Args < Args
Homebrew::Cmd::UnlinkCmd Unpin < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Unpin Untap < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Untap Args < Args
Homebrew::Cmd::UpdateReport Args < Args
Homebrew::Cmd::UpgradeCmd Uses < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Uses Audit < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Audit Bottle < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Bottle Bump < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Bump Args < Args
Homebrew::DevCmd::BumpCaskPr Args < Args
Homebrew::DevCmd::BumpFormulaPr Args < Args
Homebrew::DevCmd::BumpRevision Args < Args
Homebrew::DevCmd::BumpUnversionedCasks Cat < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Cat Command < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Command Args < Args
Homebrew::DevCmd::Contributions Create < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Create Args < Args
Homebrew::DevCmd::DetermineTestRunners Args < Args
Homebrew::DevCmd::DispatchBuildBottle Edit < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Edit Args < Args
Homebrew::DevCmd::FormulaCmd Args < Args
Homebrew::DevCmd::GenerateCaskApi Args < Args
Homebrew::DevCmd::GenerateFormulaApi Args < Args
Homebrew::DevCmd::GenerateManCompletions Args < Args
Homebrew::DevCmd::InstallBundlerGems Irb < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Irb Linkage < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Linkage Args < Args
Homebrew::DevCmd::LivecheckCmd Args < Args
Homebrew::DevCmd::PrAutomerge Args < Args
Homebrew::DevCmd::PrPublish PrPull < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::PrPull PrUpload < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::PrUpload Prof < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Prof Release < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Release Ruby < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Ruby Sh < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Sh StyleCmd < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::StyleCmd TapNew < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::TapNew Test < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Test Tests < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Tests Args < Args
Homebrew::DevCmd::Typecheck Args < Args
Homebrew::DevCmd::Unbottled Unpack < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Unpack Args < Args
Homebrew::DevCmd::UpdateLicenseData Args < Args
Homebrew::DevCmd::UpdateMaintainers Args < Args
Homebrew::DevCmd::UpdatePythonResources Args < Args
Homebrew::DevCmd::UpdateTest Args < Args
Homebrew::DevCmd::VendorGems Checks < Object
Homebrew::Diagnostic Volumes < Object
Homebrew::Diagnostic Error < RuntimeError
Homebrew::Livecheck Apache < Object
Homebrew::Livecheck::Strategy Bitbucket < Object
Homebrew::Livecheck::Strategy Cpan < Object
Homebrew::Livecheck::Strategy Crate < Object
Homebrew::Livecheck::Strategy Git < Object
Homebrew::Livecheck::Strategy Gnome < Object
Homebrew::Livecheck::Strategy Gnu < Object
Homebrew::Livecheck::Strategy Hackage < Object
Homebrew::Livecheck::Strategy Json < Object
Homebrew::Livecheck::Strategy Launchpad < Object
Homebrew::Livecheck::Strategy Npm < Object
Homebrew::Livecheck::Strategy PageMatch < Object
Homebrew::Livecheck::Strategy Pypi < Object
Homebrew::Livecheck::Strategy Sparkle < Object
Homebrew::Livecheck::Strategy Item < Struct
Homebrew::Livecheck::Strategy::Sparkle Xml < Object
Homebrew::Livecheck::Strategy Xorg < Object
Homebrew::Livecheck::Strategy Yaml < Object
Homebrew::Livecheck::Strategy Kramdown < Kramdown
Homebrew::Manpages::Converter Roff < Man
Homebrew::Manpages::Converter Ronn < Kramdown
Homebrew::Manpages::Parser IO < Object
Top Level Namespace Keg < Object
Top Level Namespace Locale < Object
Top Level Namespace Error < RuntimeError
MacOSVersion Method < Object
Top Level Namespace Mktemp < Object
Top Level Namespace Module < Object
Top Level Namespace Numeric < Object
Top Level Namespace Object < BasicObject
Top Level Namespace Option < Object
Top Level Namespace Options < Object
Top Level Namespace PATH < Object
Top Level Namespace Resource < Downloadable
Top Level Namespace Node < Object
RuboCop::AST Stanza < Object
RuboCop::Cask::AST Desc < Base
RuboCop::Cop::Cask Url < Base
RuboCop::Cop::Cask Caveats < FormulaCop
RuboCop::Cop::FormulaAudit Checksum < FormulaCop
RuboCop::Cop::FormulaAudit ClassName < FormulaCop
RuboCop::Cop::FormulaAudit Conflicts < FormulaCop
RuboCop::Cop::FormulaAudit Desc < FormulaCop
RuboCop::Cop::FormulaAudit Files < FormulaCop
RuboCop::Cop::FormulaAudit GitUrls < FormulaCop
RuboCop::Cop::FormulaAudit Homepage < FormulaCop
RuboCop::Cop::FormulaAudit KegOnly < FormulaCop
RuboCop::Cop::FormulaAudit Licenses < FormulaCop
RuboCop::Cop::FormulaAudit Lines < FormulaCop
RuboCop::Cop::FormulaAudit MpiCheck < FormulaCop
RuboCop::Cop::FormulaAudit Options < FormulaCop
RuboCop::Cop::FormulaAudit Patches < FormulaCop
RuboCop::Cop::FormulaAudit PyPiUrls < FormulaCop
RuboCop::Cop::FormulaAudit Service < FormulaCop
RuboCop::Cop::FormulaAudit Test < FormulaCop
RuboCop::Cop::FormulaAudit Text < FormulaCop
RuboCop::Cop::FormulaAudit Urls < FormulaCop
RuboCop::Cop::FormulaAudit Version < FormulaCop
RuboCop::Cop::FormulaAudit GitUrls < FormulaCop
RuboCop::Cop::FormulaAuditStrict MakeCheck < FormulaCop
RuboCop::Cop::FormulaAuditStrict RustCheck < FormulaCop
RuboCop::Cop::FormulaAuditStrict TestPresent < FormulaCop
RuboCop::Cop::FormulaAuditStrict Text < FormulaCop
RuboCop::Cop::FormulaAuditStrict Blank < Base
RuboCop::Cop::Homebrew IORead < Base
RuboCop::Cop::Homebrew Present < Base
RuboCop::Cop::Homebrew Sandbox < Object
Top Level Namespace Sorbet < Object
Top Level Namespace ENVClass < Object
Sorbet::Private::Static String < Object
Top Level Namespace Symbol < Object
Top Level Namespace Tab < Object
Top Level Namespace Tap < Object
Top Level Namespace Args < Compiler
Tapioca::Compilers RuboCop < Compiler
Tapioca::Compilers Tty < Compiler
Tapioca::Compilers Time < Object
Top Level Namespace URL < Object
Top Level Namespace Air < Object
UnpackStrategy Bazaar < Directory
UnpackStrategy Bzip2 < Object
UnpackStrategy Cab < Object
UnpackStrategy Cvs < Directory
UnpackStrategy Dmg < Object
UnpackStrategy Error < RuntimeError
UnpackStrategy::Dmg::Bom Git < Directory
UnpackStrategy Gzip < Object
UnpackStrategy Jar < Uncompressed
UnpackStrategy Lha < Object
UnpackStrategy LuaRock < Uncompressed
UnpackStrategy Lzip < Object
UnpackStrategy Lzma < Object
UnpackStrategy Otf < Uncompressed
UnpackStrategy P7Zip < Object
UnpackStrategy Pax < Object
UnpackStrategy Pkg < Uncompressed
UnpackStrategy Rar < Object
UnpackStrategy Sit < GenericUnar
UnpackStrategy Tar < Object
UnpackStrategy Ttf < Uncompressed
UnpackStrategy Xar < Object
UnpackStrategy Xz < Object
UnpackStrategy Zip < Object
UnpackStrategy Zstd < Object
UnpackStrategy User < SimpleDelegator
Top Level Namespace Tag < Object
Utils::Bottles Error < RuntimeError
Utils::Inreplace Version < Object
Top Level Namespace
+Array < Object
Top Level Namespace Attr < Plugin
Top Level Namespace Bottle < Object
Top Level Namespace Build < Object
Top Level Namespace App < Moved
Cask::Artifact Binary < Symlinked
Cask::Artifact Font < Moved
Cask::Artifact Moved < Relocated
Cask::Artifact Pkg < AbstractArtifact
Cask::Artifact Suite < Moved
Cask::Artifact Zap < AbstractUninstall
Cask::Artifact Caveats < Object
Top Level Namespace Cleaner < Object
Top Level Namespace CoreTap < AbstractCoreTap
Top Level Namespace ENV < Object
Top Level Namespace File < Object
Top Level Namespace Formula < Object
Top Level Namespace Error < RuntimeError
GitHub::API Hash < Object
Top Level Namespace Args < OpenStruct
Homebrew::CLI Args < Args
Homebrew::Cmd::Analytics Args < Args
Homebrew::Cmd::Autoremove Cache < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Cache Args < Args
Homebrew::Cmd::Caskroom Cellar < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Cellar Args < Args
Homebrew::Cmd::CleanupCmd Args < Args
Homebrew::Cmd::CommandsCmd Args < Args
Homebrew::Cmd::CompletionsCmd Config < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Config Deps < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Deps Desc < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Desc Args < Args
Homebrew::Cmd::Developer Docs < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Docs Doctor < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Doctor Env < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Env Args < Args
Homebrew::Cmd::FetchCmd Args < Args
Homebrew::Cmd::GistLogs HelpCmd < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::HelpCmd Home < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Home Info < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Info Args < Args
Homebrew::Cmd::InstallCmd Leaves < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Leaves Link < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Link List < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::List Log < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Log Migrate < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Migrate Missing < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Missing Args < Args
Homebrew::Cmd::NodenvSync Args < Args
Homebrew::Cmd::OptionsCmd Args < Args
Homebrew::Cmd::Outdated Pin < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Pin Args < Args
Homebrew::Cmd::PostgresqlUpgradeDatabase Args < Args
Homebrew::Cmd::Postinstall Prefix < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Prefix Args < Args
Homebrew::Cmd::PyenvSync Args < Args
Homebrew::Cmd::RbenvSync Args < Args
Homebrew::Cmd::ReadallCmd Args < Args
Homebrew::Cmd::Reinstall Args < Args
Homebrew::Cmd::Repository Args < Args
Homebrew::Cmd::SearchCmd TapCmd < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::TapCmd TapInfo < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::TapInfo Args < Args
Homebrew::Cmd::UninstallCmd Args < Args
Homebrew::Cmd::UnlinkCmd Unpin < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Unpin Untap < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Untap Args < Args
Homebrew::Cmd::UpdateReport Args < Args
Homebrew::Cmd::UpgradeCmd Uses < AbstractCommand
Homebrew::Cmd Args < Args
Homebrew::Cmd::Uses Audit < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Audit Bottle < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Bottle Bump < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Bump Args < Args
Homebrew::DevCmd::BumpCaskPr Args < Args
Homebrew::DevCmd::BumpFormulaPr Args < Args
Homebrew::DevCmd::BumpRevision Args < Args
Homebrew::DevCmd::BumpUnversionedCasks Cat < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Cat Command < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Command Args < Args
Homebrew::DevCmd::Contributions Create < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Create Args < Args
Homebrew::DevCmd::DetermineTestRunners Args < Args
Homebrew::DevCmd::DispatchBuildBottle Edit < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Edit Args < Args
Homebrew::DevCmd::FormulaCmd Args < Args
Homebrew::DevCmd::GenerateCaskApi Args < Args
Homebrew::DevCmd::GenerateFormulaApi Args < Args
Homebrew::DevCmd::GenerateManCompletions Args < Args
Homebrew::DevCmd::InstallBundlerGems Irb < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Irb Linkage < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Linkage Args < Args
Homebrew::DevCmd::LivecheckCmd Args < Args
Homebrew::DevCmd::PrAutomerge Args < Args
Homebrew::DevCmd::PrPublish PrPull < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::PrPull PrUpload < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::PrUpload Prof < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Prof Release < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Release Ruby < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Ruby Sh < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Sh StyleCmd < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::StyleCmd TapNew < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::TapNew Test < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Test Tests < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Tests Args < Args
Homebrew::DevCmd::Typecheck Args < Args
Homebrew::DevCmd::Unbottled Unpack < AbstractCommand
Homebrew::DevCmd Args < Args
Homebrew::DevCmd::Unpack Args < Args
Homebrew::DevCmd::UpdateLicenseData Args < Args
Homebrew::DevCmd::UpdateMaintainers Args < Args
Homebrew::DevCmd::UpdatePythonResources Args < Args
Homebrew::DevCmd::UpdateTest Args < Args
Homebrew::DevCmd::VendorGems Checks < Object
Homebrew::Diagnostic Volumes < Object
Homebrew::Diagnostic Error < RuntimeError
Homebrew::Livecheck Apache < Object
Homebrew::Livecheck::Strategy Bitbucket < Object
Homebrew::Livecheck::Strategy Cpan < Object
Homebrew::Livecheck::Strategy Crate < Object
Homebrew::Livecheck::Strategy Git < Object
Homebrew::Livecheck::Strategy Gnome < Object
Homebrew::Livecheck::Strategy Gnu < Object
Homebrew::Livecheck::Strategy Hackage < Object
Homebrew::Livecheck::Strategy Json < Object
Homebrew::Livecheck::Strategy Launchpad < Object
Homebrew::Livecheck::Strategy Npm < Object
Homebrew::Livecheck::Strategy PageMatch < Object
Homebrew::Livecheck::Strategy Pypi < Object
Homebrew::Livecheck::Strategy Sparkle < Object
Homebrew::Livecheck::Strategy Item < Struct
Homebrew::Livecheck::Strategy::Sparkle Xml < Object
Homebrew::Livecheck::Strategy Xorg < Object
Homebrew::Livecheck::Strategy Yaml < Object
Homebrew::Livecheck::Strategy Kramdown < Kramdown
Homebrew::Manpages::Converter Roff < Man
Homebrew::Manpages::Converter Ronn < Kramdown
Homebrew::Manpages::Parser IO < Object
Top Level Namespace Keg < Object
Top Level Namespace Locale < Object
Top Level Namespace Error < RuntimeError
MacOSVersion Method < Object
Top Level Namespace Mktemp < Object
Top Level Namespace Module < Object
Top Level Namespace Numeric < Object
Top Level Namespace Object < BasicObject
Top Level Namespace Option < Object
Top Level Namespace Options < Object
Top Level Namespace PATH < Object
Top Level Namespace Resource < Downloadable
Top Level Namespace Node < Object
RuboCop::AST Stanza < Object
RuboCop::Cask::AST Desc < Base
RuboCop::Cop::Cask Url < Base
RuboCop::Cop::Cask Caveats < FormulaCop
RuboCop::Cop::FormulaAudit Checksum < FormulaCop
RuboCop::Cop::FormulaAudit ClassName < FormulaCop
RuboCop::Cop::FormulaAudit Conflicts < FormulaCop
RuboCop::Cop::FormulaAudit Desc < FormulaCop
RuboCop::Cop::FormulaAudit Files < FormulaCop
RuboCop::Cop::FormulaAudit GitUrls < FormulaCop
RuboCop::Cop::FormulaAudit Homepage < FormulaCop
RuboCop::Cop::FormulaAudit KegOnly < FormulaCop
RuboCop::Cop::FormulaAudit Licenses < FormulaCop
RuboCop::Cop::FormulaAudit Lines < FormulaCop
RuboCop::Cop::FormulaAudit MpiCheck < FormulaCop
RuboCop::Cop::FormulaAudit Options < FormulaCop
RuboCop::Cop::FormulaAudit Patches < FormulaCop
RuboCop::Cop::FormulaAudit PyPiUrls < FormulaCop
RuboCop::Cop::FormulaAudit Service < FormulaCop
RuboCop::Cop::FormulaAudit Test < FormulaCop
RuboCop::Cop::FormulaAudit Text < FormulaCop
RuboCop::Cop::FormulaAudit Urls < FormulaCop
RuboCop::Cop::FormulaAudit Version < FormulaCop
RuboCop::Cop::FormulaAudit GitUrls < FormulaCop
RuboCop::Cop::FormulaAuditStrict MakeCheck < FormulaCop
RuboCop::Cop::FormulaAuditStrict RustCheck < FormulaCop
RuboCop::Cop::FormulaAuditStrict TestPresent < FormulaCop
RuboCop::Cop::FormulaAuditStrict Text < FormulaCop
RuboCop::Cop::FormulaAuditStrict Blank < Base
RuboCop::Cop::Homebrew IORead < Base
RuboCop::Cop::Homebrew Present < Base
RuboCop::Cop::Homebrew Sandbox < Object
Top Level Namespace Sorbet < Object
Top Level Namespace ENVClass < Object
Sorbet::Private::Static String < Object
Top Level Namespace Symbol < Object
Top Level Namespace Tab < Object
Top Level Namespace Tap < Object
Top Level Namespace Args < Compiler
Tapioca::Compilers RuboCop < Compiler
Tapioca::Compilers Tty < Compiler
Tapioca::Compilers Time < Object
Top Level Namespace URL < Object
Top Level Namespace Air < Object
UnpackStrategy Bazaar < Directory
UnpackStrategy Bzip2 < Object
UnpackStrategy Cab < Object
UnpackStrategy Cvs < Directory
UnpackStrategy Dmg < Object
UnpackStrategy Error < RuntimeError
UnpackStrategy::Dmg::Bom Git < Directory
UnpackStrategy Gzip < Object
UnpackStrategy Jar < Uncompressed
UnpackStrategy Lha < Object
UnpackStrategy LuaRock < Uncompressed
UnpackStrategy Lzip < Object
UnpackStrategy Lzma < Object
UnpackStrategy Otf < Uncompressed
UnpackStrategy P7Zip < Object
UnpackStrategy Pax < Object
UnpackStrategy Pkg < Uncompressed
UnpackStrategy Rar < Object
UnpackStrategy Sit < GenericUnar
UnpackStrategy Tar < Object
UnpackStrategy Ttf < Uncompressed
UnpackStrategy Xar < Object
UnpackStrategy Xz < Object
UnpackStrategy Zip < Object
UnpackStrategy Zstd < Object
UnpackStrategy User < SimpleDelegator
Top Level Namespace Tag < Object
Utils::Bottles Error < RuntimeError
Utils::Inreplace Version < Object
Top Level Namespace
diff --git a/docs/method_list.html b/docs/method_list.html
index f9b964a25..4b3e77c83 100644
--- a/docs/method_list.html
+++ b/docs/method_list.html
@@ -4533,6 +4533,14 @@
+
+
+
+
+
#broken_library_linkage?
LinkageChecker
@@ -4540,7 +4548,7 @@
-
+
#broken_tap
Homebrew::Diagnostic::Checks
@@ -4548,7 +4556,7 @@
-
+
browser
Homebrew::EnvConfig
@@ -4556,7 +4564,7 @@
-
+
#build
Formula
@@ -4564,7 +4572,7 @@
-
+
build
Requirement
@@ -4572,7 +4580,7 @@
-
+
#build
Dependencies
@@ -4580,7 +4588,7 @@
-
+
#build
SoftwareSpec
@@ -4588,7 +4596,7 @@
-
+
#build
FormulaInstaller
@@ -4596,7 +4604,7 @@
-
+
#build
DependencyCollector
@@ -4604,7 +4612,7 @@
-
+
#build?
Dependable
@@ -4612,7 +4620,7 @@
-
+
#build_argv
FormulaInstaller
@@ -4620,7 +4628,7 @@
-
+
#build_bottle?
FormulaInstaller
@@ -4628,7 +4636,7 @@
-
+
#build_bottle?
Homebrew::Cmd::FetchCmd::Args
@@ -4636,7 +4644,7 @@
-
+
#build_bottle?
Homebrew::Cmd::InstallCmd::Args
@@ -4644,7 +4652,7 @@
-
+
#build_bottle_postinstall
FormulaInstaller
@@ -4652,7 +4660,7 @@
-
+
#build_bottle_preinstall
FormulaInstaller
@@ -4660,7 +4668,7 @@
-
+
#build_error_checks
Homebrew::Diagnostic::Checks
@@ -4668,7 +4676,7 @@
-
+
#build_from_source?
FormulaInstaller
@@ -4676,7 +4684,7 @@
-
+
#build_from_source?
Homebrew::CLI::Args
@@ -4684,7 +4692,7 @@
-
+
#build_from_source?
Homebrew::Cmd::Cache::Args
@@ -4692,7 +4700,7 @@
-
+
#build_from_source?
Homebrew::Cmd::FetchCmd::Args
@@ -4700,7 +4708,7 @@
-
+
#build_from_source?
Homebrew::Cmd::Reinstall::Args
@@ -4708,7 +4716,7 @@
-
+
#build_from_source?
Homebrew::Cmd::InstallCmd::Args
@@ -4716,7 +4724,7 @@
-
+
#build_from_source?
Homebrew::Cmd::UpgradeCmd::Args
@@ -4724,7 +4732,7 @@
-
+
#build_from_source_checks
Homebrew::Diagnostic::Checks
@@ -4732,7 +4740,7 @@
-
+
#build_from_source_formulae
Homebrew::CLI::Args
@@ -4740,7 +4748,7 @@
-
+
build_man_page
Homebrew::Manpages
@@ -4748,7 +4756,7 @@
-
+
#build_time
FormulaInstaller
@@ -4756,7 +4764,7 @@
-
+
#build_with_dependency_name
RuboCop::Cop::FormulaAudit::DependencyOrder
@@ -4764,7 +4772,7 @@
-
+
#build_with_dependency_node
RuboCop::Cop::FormulaAudit::DependencyOrder
@@ -4772,7 +4780,7 @@
-
+
#buildpath
Formula
@@ -4780,7 +4788,7 @@
-
+
#buildtime_dependency?
RuboCop::Cop::FormulaAudit::DependencyOrder
@@ -4788,7 +4796,7 @@
-
+
built_as?
Utils::Bottles
@@ -4796,7 +4804,7 @@
-
+
#built_as_bottle
Tab
@@ -4804,7 +4812,7 @@
-
+
#built_bottle?
Tab
@@ -4812,7 +4820,7 @@
-
+
#built_on
Tab
@@ -4820,7 +4828,7 @@
-
+
#builtin_command_descriptions
Homebrew::Completions::Variables
@@ -4828,7 +4836,7 @@
-
+
#bundle_long_version
Cask::Cask
@@ -4836,7 +4844,7 @@
-
+
bundle_path
OS::Mac::Xcode
@@ -4844,7 +4852,7 @@
-
+
#bundle_short_version
Cask::Cask
@@ -4852,7 +4860,7 @@
-
+
#bundle_version
Homebrew::Livecheck::Strategy::Sparkle::Item
@@ -4860,7 +4868,7 @@
-
+
#bundle_version
Homebrew::Livecheck::Strategy::ExtractPlist::Item
@@ -4868,7 +4876,7 @@
-
+
bundler_definition
Homebrew
@@ -4876,7 +4884,7 @@
-
+
#by_macos?
KegOnlyReason
@@ -4884,7 +4892,7 @@
-
+
#bzip2_dep_if_needed
DependencyCollector
@@ -4892,7 +4900,7 @@
-
+
#c
Homebrew::DevCmd::Sh::Args
@@ -4900,7 +4908,7 @@
-
+
#cache
Homebrew::Cleanup
@@ -4908,7 +4916,7 @@
-
+
#cache
Homebrew::API::Download
@@ -4916,7 +4924,7 @@
-
+
#cache
Cachable
@@ -4924,7 +4932,7 @@
-
+
#cache
AbstractDownloadStrategy
@@ -4932,7 +4940,7 @@
-
+
cache
Homebrew::EnvConfig
@@ -4940,7 +4948,7 @@
-
+
#cache_files
Homebrew::Cleanup
@@ -4948,7 +4956,7 @@
-
+
#cache_key
DependencyCollector
@@ -4956,7 +4964,7 @@
-
+
#cached?
Homebrew::DevCmd::Linkage::Args
@@ -4964,7 +4972,7 @@
-
+
#cached_download
Downloadable
@@ -4972,7 +4980,7 @@
-
+
#cached_download
Formula
@@ -4980,7 +4988,7 @@
-
+
#cached_location
AbstractDownloadStrategy
@@ -4988,7 +4996,7 @@
-
+
#cached_location
AbstractFileDownloadStrategy
@@ -4996,7 +5004,7 @@
-
+
#call
Cask::URL::BlockDSL
@@ -5004,7 +5012,7 @@
-
+
call_node_match?
Utils::AST
@@ -5012,7 +5020,7 @@
-
+
can_extract?
UnpackStrategy::Xz
@@ -5020,7 +5028,7 @@
-
+
can_extract?
UnpackStrategy::Air
@@ -5028,7 +5036,7 @@
-
+
can_extract?
UnpackStrategy::Cab
@@ -5036,7 +5044,7 @@
-
+
can_extract?
UnpackStrategy::Cvs
@@ -5044,7 +5052,7 @@
-
+
can_extract?
UnpackStrategy::Dmg
@@ -5052,7 +5060,7 @@
-
+
can_extract?
UnpackStrategy::Git
@@ -5060,7 +5068,7 @@
-
+
can_extract?
UnpackStrategy::Jar
@@ -5068,7 +5076,7 @@
-
+
can_extract?
UnpackStrategy::Lha
@@ -5076,7 +5084,7 @@
-
+
can_extract?
UnpackStrategy::Otf
@@ -5084,7 +5092,7 @@
-
+
can_extract?
UnpackStrategy::Pax
@@ -5092,7 +5100,7 @@
-
+
can_extract?
UnpackStrategy::Pkg
@@ -5100,7 +5108,7 @@
-
+
can_extract?
UnpackStrategy::Rar
@@ -5108,7 +5116,7 @@
-
+
can_extract?
UnpackStrategy::Sit
@@ -5116,7 +5124,7 @@
-
+
can_extract?
UnpackStrategy::Tar
@@ -5124,7 +5132,7 @@
-
+
can_extract?
UnpackStrategy::Ttf
@@ -5132,7 +5140,7 @@
-
+
can_extract?
UnpackStrategy::Xar
@@ -5140,7 +5148,7 @@
-
+
can_extract?
UnpackStrategy::Zip
@@ -5148,7 +5156,7 @@
-
+
can_extract?
UnpackStrategy::Gzip
@@ -5156,7 +5164,7 @@
-
+
can_extract?
UnpackStrategy::Lzip
@@ -5164,7 +5172,7 @@
-
+
can_extract?
UnpackStrategy::Lzma
@@ -5172,7 +5180,7 @@
-
+
can_extract?
UnpackStrategy::Zstd
@@ -5180,7 +5188,7 @@
-
+
can_extract?
UnpackStrategy::Bzip2
@@ -5188,7 +5196,7 @@
-
+
can_extract?
UnpackStrategy::P7Zip
@@ -5196,7 +5204,7 @@
-
+
can_extract?
UnpackStrategy::Bazaar
@@ -5204,7 +5212,7 @@
-
+
can_extract?
UnpackStrategy::Fossil
@@ -5212,7 +5220,7 @@
-
+
can_extract?
UnpackStrategy::Compress
@@ -5220,7 +5228,7 @@
-
+
can_extract?
UnpackStrategy::LuaRock
@@ -5228,7 +5236,7 @@
-
+
can_extract?
UnpackStrategy::Directory
@@ -5236,7 +5244,7 @@
-
+
can_extract?
UnpackStrategy::Mercurial
@@ -5244,7 +5252,7 @@
-
+
can_extract?
UnpackStrategy::Executable
@@ -5252,7 +5260,7 @@
-
+
can_extract?
UnpackStrategy::Subversion
@@ -5260,7 +5268,7 @@
-
+
can_extract?
UnpackStrategy::GenericUnar
@@ -5268,7 +5276,7 @@
-
+
can_extract?
UnpackStrategy::MicrosoftOfficeXml
@@ -5276,7 +5284,7 @@
-
+
can_extract?
UnpackStrategy::SelfExtractingExecutable
@@ -5284,7 +5292,7 @@
-
+
canonical_name
Formulary
@@ -5292,7 +5300,7 @@
-
+
canonicalize
Cask::Config
@@ -5300,7 +5308,7 @@
-
+
#cask
Cask::DSL
@@ -5308,7 +5316,7 @@
-
+
#cask
Livecheck
@@ -5316,7 +5324,7 @@
-
+
#cask
Cask::Audit
@@ -5324,7 +5332,7 @@
-
+
#cask
Requirement
@@ -5332,7 +5340,7 @@
-
+
#cask
Cask::Auditor
@@ -5340,7 +5348,7 @@
-
+
#cask
Cask::Download
@@ -5348,7 +5356,7 @@
-
+
#cask
CaskDependent
@@ -5356,7 +5364,7 @@
-
+
#cask
Cask::DSL::DependsOn
@@ -5364,7 +5372,7 @@
-
+
#cask
Homebrew::UnversionedCaskChecker
@@ -5372,7 +5380,7 @@
-
+
#cask
Cask::Artifact::AbstractArtifact
@@ -5380,7 +5388,7 @@
-
+
cask
Requirement
@@ -5388,7 +5396,7 @@
-
+
cask!
Cask::Quarantine
@@ -5396,7 +5404,7 @@
-
+
#cask?
Homebrew::CLI::Args
@@ -5404,7 +5412,7 @@
-
+
#cask?
Homebrew::Cmd::Log::Args
@@ -5412,7 +5420,7 @@
-
+
#cask?
Homebrew::Cmd::Deps::Args
@@ -5420,7 +5428,7 @@
-
+
#cask?
Homebrew::Cmd::Desc::Args
@@ -5428,7 +5436,7 @@
-
+
#cask?
Homebrew::Cmd::Home::Args
@@ -5436,7 +5444,7 @@
-
+
#cask?
Homebrew::Cmd::Info::Args
@@ -5444,7 +5452,7 @@
-
+
#cask?
Homebrew::Cmd::List::Args
@@ -5452,7 +5460,7 @@
-
+
#cask?
Homebrew::Cmd::Uses::Args
@@ -5460,7 +5468,7 @@
-
+
#cask?
Homebrew::Cmd::Cache::Args
@@ -5468,7 +5476,7 @@
-
+
#cask?
Homebrew::Cmd::Migrate::Args
@@ -5476,7 +5484,7 @@
-
+
#cask?
Homebrew::DevCmd::Cat::Args
@@ -5484,7 +5492,7 @@
-
+
#cask?
Homebrew::Cmd::Outdated::Args
@@ -5492,7 +5500,7 @@
-
+
#cask?
Homebrew::DevCmd::Bump::Args
@@ -5500,7 +5508,7 @@
-
+
#cask?
Homebrew::DevCmd::Edit::Args
@@ -5508,7 +5516,7 @@
-
+
#cask?
Homebrew::Cmd::FetchCmd::Args
@@ -5516,7 +5524,7 @@
-
+
#cask?
Homebrew::Cmd::Reinstall::Args
@@ -5524,7 +5532,7 @@
-
+
#cask?
Homebrew::DevCmd::Audit::Args
@@ -5532,7 +5540,7 @@
-
+