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
   .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(*)
   .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_diagnosticsString + + + + + +

+
+

+ 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. +

+ + + +
+
+
+ +

Returns:

+
    + +
  • + + + (String) + + + +
  • + +
+ +
+ + + + +
+
+
+
+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. +

+ + + +
+
+
+

Parameters:

+
    + +
  • + + conf_path + + + (Pathname, String) + + + (defaults to: Pathname(sysconfdir)/"ld.so.conf") + + +
  • + +
+ +

Returns:

+ + +
+ + + + +
+
+
+
+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|
+    # Remove comments and leading/trailing whitespace
+    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
+
+
+ +
+

+ + .sysconfdirString + + + + + +

+
+

+ 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. +

+ + + +
+
+
+ +

Returns:

+
    + +
  • + + + (String) + + + +
  • + +
+ +
+ + + + +
+
+
+
+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_dirsArray<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. +

+ + + +
+
+
+ +

Returns:

+ + +
+ + + + +
+
+
+
+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 + + + + + +

+
+ + + +
+
+
+

Parameters:

+ + +

Returns:

+
    + +
  • + + + (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 @@

    Class List

  • 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 @@

    Method List

  • +
    + brewed_ld_so_diagnostics + OS::Linux::Ld +
    +
  • + + +
  • #broken_library_linkage? LinkageChecker @@ -4540,7 +4548,7 @@

    Method List

  • -
  • +
  • #broken_tap Homebrew::Diagnostic::Checks @@ -4548,7 +4556,7 @@

    Method List

  • -
  • +
  • browser Homebrew::EnvConfig @@ -4556,7 +4564,7 @@

    Method List

  • -
  • +
  • #build Formula @@ -4564,7 +4572,7 @@

    Method List

  • -
  • +
  • build Requirement @@ -4572,7 +4580,7 @@

    Method List

  • -
  • +
  • #build Dependencies @@ -4580,7 +4588,7 @@

    Method List

  • -
  • +
  • #build SoftwareSpec @@ -4588,7 +4596,7 @@

    Method List

  • -
  • +
  • #build FormulaInstaller @@ -4596,7 +4604,7 @@

    Method List

  • -
  • +
  • #build DependencyCollector @@ -4604,7 +4612,7 @@

    Method List

  • -
  • +
  • #build? Dependable @@ -4612,7 +4620,7 @@

    Method List

  • -
  • +
  • #build_argv FormulaInstaller @@ -4620,7 +4628,7 @@

    Method List

  • -
  • +
  • #build_bottle? FormulaInstaller @@ -4628,7 +4636,7 @@

    Method List

  • -
  • +
  • #build_bottle? Homebrew::Cmd::FetchCmd::Args @@ -4636,7 +4644,7 @@

    Method List

  • -
  • +
  • #build_bottle? Homebrew::Cmd::InstallCmd::Args @@ -4644,7 +4652,7 @@

    Method List

  • -
  • +
  • #build_bottle_postinstall FormulaInstaller @@ -4652,7 +4660,7 @@

    Method List

  • -
  • +
  • #build_bottle_preinstall FormulaInstaller @@ -4660,7 +4668,7 @@

    Method List

  • -
  • +
  • #build_error_checks Homebrew::Diagnostic::Checks @@ -4668,7 +4676,7 @@

    Method List

  • -
  • +
  • #build_from_source? FormulaInstaller @@ -4676,7 +4684,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::CLI::Args @@ -4684,7 +4692,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::Cmd::Cache::Args @@ -4692,7 +4700,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::Cmd::FetchCmd::Args @@ -4700,7 +4708,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::Cmd::Reinstall::Args @@ -4708,7 +4716,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::Cmd::InstallCmd::Args @@ -4716,7 +4724,7 @@

    Method List

  • -
  • +
  • #build_from_source? Homebrew::Cmd::UpgradeCmd::Args @@ -4724,7 +4732,7 @@

    Method List

  • -
  • +
  • #build_from_source_checks Homebrew::Diagnostic::Checks @@ -4732,7 +4740,7 @@

    Method List

  • -
  • +
  • #build_from_source_formulae Homebrew::CLI::Args @@ -4740,7 +4748,7 @@

    Method List

  • -
  • +
  • build_man_page Homebrew::Manpages @@ -4748,7 +4756,7 @@

    Method List

  • -
  • +
  • #build_time FormulaInstaller @@ -4756,7 +4764,7 @@

    Method List

  • -
  • +
  • #build_with_dependency_name RuboCop::Cop::FormulaAudit::DependencyOrder @@ -4764,7 +4772,7 @@

    Method List

  • -
  • +
  • #build_with_dependency_node RuboCop::Cop::FormulaAudit::DependencyOrder @@ -4772,7 +4780,7 @@

    Method List

  • -
  • +
  • #buildpath Formula @@ -4780,7 +4788,7 @@

    Method List

  • -
  • +
  • #buildtime_dependency? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -4788,7 +4796,7 @@

    Method List

  • -
  • +
  • built_as? Utils::Bottles @@ -4796,7 +4804,7 @@

    Method List

  • -
  • +
  • #built_as_bottle Tab @@ -4804,7 +4812,7 @@

    Method List

  • -
  • +
  • #built_bottle? Tab @@ -4812,7 +4820,7 @@

    Method List

  • -
  • +
  • #built_on Tab @@ -4820,7 +4828,7 @@

    Method List

  • -
  • +
  • #builtin_command_descriptions Homebrew::Completions::Variables @@ -4828,7 +4836,7 @@

    Method List

  • -
  • +
  • #bundle_long_version Cask::Cask @@ -4836,7 +4844,7 @@

    Method List

  • -
  • +
  • bundle_path OS::Mac::Xcode @@ -4844,7 +4852,7 @@

    Method List

  • -
  • +
  • #bundle_short_version Cask::Cask @@ -4852,7 +4860,7 @@

    Method List

  • -
  • +
  • #bundle_version Homebrew::Livecheck::Strategy::Sparkle::Item @@ -4860,7 +4868,7 @@

    Method List

  • -
  • +
  • #bundle_version Homebrew::Livecheck::Strategy::ExtractPlist::Item @@ -4868,7 +4876,7 @@

    Method List

  • -
  • +
  • bundler_definition Homebrew @@ -4876,7 +4884,7 @@

    Method List

  • -
  • +
  • #by_macos? KegOnlyReason @@ -4884,7 +4892,7 @@

    Method List

  • -
  • +
  • #bzip2_dep_if_needed DependencyCollector @@ -4892,7 +4900,7 @@

    Method List

  • -
  • +
  • #c Homebrew::DevCmd::Sh::Args @@ -4900,7 +4908,7 @@

    Method List

  • -
  • +
  • #cache Homebrew::Cleanup @@ -4908,7 +4916,7 @@

    Method List

  • -
  • +
  • #cache Homebrew::API::Download @@ -4916,7 +4924,7 @@

    Method List

  • -
  • +
  • #cache Cachable @@ -4924,7 +4932,7 @@

    Method List

  • -
  • +
  • #cache AbstractDownloadStrategy @@ -4932,7 +4940,7 @@

    Method List

  • -
  • +
  • cache Homebrew::EnvConfig @@ -4940,7 +4948,7 @@

    Method List

  • -
  • +
  • #cache_files Homebrew::Cleanup @@ -4948,7 +4956,7 @@

    Method List

  • -
  • +
  • #cache_key DependencyCollector @@ -4956,7 +4964,7 @@

    Method List

  • -
  • +
  • #cached? Homebrew::DevCmd::Linkage::Args @@ -4964,7 +4972,7 @@

    Method List

  • -
  • +
  • #cached_download Downloadable @@ -4972,7 +4980,7 @@

    Method List

  • -
  • +
  • #cached_download Formula @@ -4980,7 +4988,7 @@

    Method List

  • -
  • +
  • #cached_location AbstractDownloadStrategy @@ -4988,7 +4996,7 @@

    Method List

  • -
  • +
  • #cached_location AbstractFileDownloadStrategy @@ -4996,7 +5004,7 @@

    Method List

  • -
  • +
  • #call Cask::URL::BlockDSL @@ -5004,7 +5012,7 @@

    Method List

  • -
  • +
  • call_node_match? Utils::AST @@ -5012,7 +5020,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Xz @@ -5020,7 +5028,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Air @@ -5028,7 +5036,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Cab @@ -5036,7 +5044,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Cvs @@ -5044,7 +5052,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Dmg @@ -5052,7 +5060,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Git @@ -5060,7 +5068,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Jar @@ -5068,7 +5076,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Lha @@ -5076,7 +5084,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Otf @@ -5084,7 +5092,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Pax @@ -5092,7 +5100,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Pkg @@ -5100,7 +5108,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Rar @@ -5108,7 +5116,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Sit @@ -5116,7 +5124,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Tar @@ -5124,7 +5132,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Ttf @@ -5132,7 +5140,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Xar @@ -5140,7 +5148,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Zip @@ -5148,7 +5156,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Gzip @@ -5156,7 +5164,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Lzip @@ -5164,7 +5172,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Lzma @@ -5172,7 +5180,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Zstd @@ -5180,7 +5188,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Bzip2 @@ -5188,7 +5196,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::P7Zip @@ -5196,7 +5204,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Bazaar @@ -5204,7 +5212,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Fossil @@ -5212,7 +5220,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Compress @@ -5220,7 +5228,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::LuaRock @@ -5228,7 +5236,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Directory @@ -5236,7 +5244,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Mercurial @@ -5244,7 +5252,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Executable @@ -5252,7 +5260,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::Subversion @@ -5260,7 +5268,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::GenericUnar @@ -5268,7 +5276,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::MicrosoftOfficeXml @@ -5276,7 +5284,7 @@

    Method List

  • -
  • +
  • can_extract? UnpackStrategy::SelfExtractingExecutable @@ -5284,7 +5292,7 @@

    Method List

  • -
  • +
  • canonical_name Formulary @@ -5292,7 +5300,7 @@

    Method List

  • -
  • +
  • canonicalize Cask::Config @@ -5300,7 +5308,7 @@

    Method List

  • -
  • +
  • #cask Cask::DSL @@ -5308,7 +5316,7 @@

    Method List

  • -
  • +
  • #cask Livecheck @@ -5316,7 +5324,7 @@

    Method List

  • -
  • +
  • #cask Cask::Audit @@ -5324,7 +5332,7 @@

    Method List

  • -
  • +
  • #cask Requirement @@ -5332,7 +5340,7 @@

    Method List

  • -
  • +
  • #cask Cask::Auditor @@ -5340,7 +5348,7 @@

    Method List

  • -
  • +
  • #cask Cask::Download @@ -5348,7 +5356,7 @@

    Method List

  • -
  • +
  • #cask CaskDependent @@ -5356,7 +5364,7 @@

    Method List

  • -
  • +
  • #cask Cask::DSL::DependsOn @@ -5364,7 +5372,7 @@

    Method List

  • -
  • +
  • #cask Homebrew::UnversionedCaskChecker @@ -5372,7 +5380,7 @@

    Method List

  • -
  • +
  • #cask Cask::Artifact::AbstractArtifact @@ -5380,7 +5388,7 @@

    Method List

  • -
  • +
  • cask Requirement @@ -5388,7 +5396,7 @@

    Method List

  • -
  • +
  • cask! Cask::Quarantine @@ -5396,7 +5404,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::CLI::Args @@ -5404,7 +5412,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Log::Args @@ -5412,7 +5420,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Deps::Args @@ -5420,7 +5428,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Desc::Args @@ -5428,7 +5436,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Home::Args @@ -5436,7 +5444,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Info::Args @@ -5444,7 +5452,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::List::Args @@ -5452,7 +5460,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Uses::Args @@ -5460,7 +5468,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Cache::Args @@ -5468,7 +5476,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Migrate::Args @@ -5476,7 +5484,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::Cat::Args @@ -5484,7 +5492,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Outdated::Args @@ -5492,7 +5500,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::Bump::Args @@ -5500,7 +5508,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::Edit::Args @@ -5508,7 +5516,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::FetchCmd::Args @@ -5516,7 +5524,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::Reinstall::Args @@ -5524,7 +5532,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::Audit::Args @@ -5532,7 +5540,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::SearchCmd::Args @@ -5540,7 +5548,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::Create::Args @@ -5548,7 +5556,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::InstallCmd::Args @@ -5556,7 +5564,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::UpgradeCmd::Args @@ -5564,7 +5572,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::Cmd::UninstallCmd::Args @@ -5572,7 +5580,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::StyleCmd::Args @@ -5580,7 +5588,7 @@

    Method List

  • -
  • +
  • #cask? Homebrew::DevCmd::LivecheckCmd::Args @@ -5588,7 +5596,7 @@

    Method List

  • -
  • +
  • #cask_and_formula_dependencies Cask::Installer @@ -5596,7 +5604,7 @@

    Method List

  • -
  • +
  • #cask_block? RuboCop::AST::Node @@ -5604,7 +5612,7 @@

    Method List

  • -
  • +
  • #cask_checks Homebrew::Diagnostic::Checks @@ -5612,7 +5620,7 @@

    Method List

  • -
  • +
  • cask_deprecated Homebrew::Livecheck::SkipConditions @@ -5620,7 +5628,7 @@

    Method List

  • -
  • +
  • #cask_dir Tap @@ -5628,7 +5636,7 @@

    Method List

  • -
  • +
  • cask_disabled Homebrew::Livecheck::SkipConditions @@ -5636,7 +5644,7 @@

    Method List

  • -
  • +
  • cask_discontinued Homebrew::Livecheck::SkipConditions @@ -5644,7 +5652,7 @@

    Method List

  • -
  • +
  • cask_extract_plist Homebrew::Livecheck::SkipConditions @@ -5652,7 +5660,7 @@

    Method List

  • -
  • +
  • #cask_files Tap @@ -5660,7 +5668,7 @@

    Method List

  • -
  • +
  • #cask_files CoreCaskTap @@ -5668,7 +5676,7 @@

    Method List

  • -
  • +
  • cask_name Homebrew::Livecheck @@ -5676,7 +5684,7 @@

    Method List

  • -
  • +
  • #cask_node RuboCop::Cask::AST::CaskBlock @@ -5684,7 +5692,7 @@

    Method List

  • -
  • +
  • #cask_on_system_block? RuboCop::AST::Node @@ -5692,7 +5700,7 @@

    Method List

  • -
  • +
  • #cask_options Homebrew::CLI::Parser @@ -5700,7 +5708,7 @@

    Method List

  • -
  • +
  • cask_opts Homebrew::EnvConfig @@ -5708,7 +5716,7 @@

    Method List

  • -
  • +
  • cask_opts_binaries? Homebrew::EnvConfig @@ -5716,7 +5724,7 @@

    Method List

  • -
  • +
  • cask_opts_quarantine? Homebrew::EnvConfig @@ -5724,7 +5732,7 @@

    Method List

  • -
  • +
  • cask_opts_require_sha? Homebrew::EnvConfig @@ -5732,7 +5740,7 @@

    Method List

  • -
  • +
  • cask_output Utils::Analytics @@ -5740,7 +5748,7 @@

    Method List

  • -
  • +
  • cask_reason Homebrew::MissingFormula @@ -5748,7 +5756,7 @@

    Method List

  • -
  • +
  • #cask_renames Tap @@ -5756,7 +5764,7 @@

    Method List

  • -
  • +
  • #cask_renames CoreCaskTap @@ -5764,7 +5772,7 @@

    Method List

  • -
  • +
  • #cask_token RuboCop::Cask::AST::CaskHeader @@ -5772,7 +5780,7 @@

    Method List

  • -
  • +
  • #cask_tokens CoreCaskTap @@ -5780,7 +5788,7 @@

    Method List

  • -
  • +
  • #cask_tokens Homebrew::TapAuditor @@ -5788,7 +5796,7 @@

    Method List

  • -
  • +
  • cask_url_unversioned Homebrew::Livecheck::SkipConditions @@ -5796,7 +5804,7 @@

    Method List

  • -
  • +
  • cask_version_latest Homebrew::Livecheck::SkipConditions @@ -5804,7 +5812,7 @@

    Method List

  • -
  • +
  • #caskfile_only? Cask::Cask @@ -5812,7 +5820,7 @@

    Method List

  • -
  • +
  • #caskroom_path Cask::DSL @@ -5820,7 +5828,7 @@

    Method List

  • -
  • +
  • #caskroom_path Cask::Cask @@ -5828,7 +5836,7 @@

    Method List

  • -
  • +
  • casks Cask::Caskroom @@ -5836,7 +5844,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Log::Args @@ -5844,7 +5852,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Deps::Args @@ -5852,7 +5860,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Desc::Args @@ -5860,7 +5868,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Home::Args @@ -5868,7 +5876,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Info::Args @@ -5876,7 +5884,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::List::Args @@ -5884,7 +5892,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Uses::Args @@ -5892,7 +5900,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Cache::Args @@ -5900,7 +5908,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Migrate::Args @@ -5908,7 +5916,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::Cat::Args @@ -5916,7 +5924,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Outdated::Args @@ -5924,7 +5932,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::Bump::Args @@ -5932,7 +5940,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::Edit::Args @@ -5940,7 +5948,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::FetchCmd::Args @@ -5948,7 +5956,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::Reinstall::Args @@ -5956,7 +5964,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::Audit::Args @@ -5964,7 +5972,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::SearchCmd::Args @@ -5972,7 +5980,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::InstallCmd::Args @@ -5980,7 +5988,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::UpgradeCmd::Args @@ -5988,7 +5996,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::Cmd::UninstallCmd::Args @@ -5996,7 +6004,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::StyleCmd::Args @@ -6004,7 +6012,7 @@

    Method List

  • -
  • +
  • #casks? Homebrew::DevCmd::LivecheckCmd::Args @@ -6012,7 +6020,7 @@

    Method List

  • -
  • +
  • #category Homebrew::Cmd::Info::Args @@ -6020,7 +6028,7 @@

    Method List

  • -
  • +
  • #cause CompilerFailure @@ -6028,7 +6036,7 @@

    Method List

  • -
  • +
  • #cause DownloadError @@ -6036,7 +6044,7 @@

    Method List

  • -
  • +
  • #caveats Caveats @@ -6044,7 +6052,7 @@

    Method List

  • -
  • +
  • #caveats Formula @@ -6052,7 +6060,7 @@

    Method List

  • -
  • +
  • #caveats Cask::DSL @@ -6060,7 +6068,7 @@

    Method List

  • -
  • +
  • #caveats Messages @@ -6068,7 +6076,7 @@

    Method List

  • -
  • +
  • caveats Cask::Installer @@ -6076,7 +6084,7 @@

    Method List

  • -
  • +
  • #caveats Cask::Installer @@ -6084,7 +6092,7 @@

    Method List

  • -
  • +
  • #caveats FormulaInstaller @@ -6092,7 +6100,7 @@

    Method List

  • -
  • +
  • #caveats Cask::Cask @@ -6100,7 +6108,7 @@

    Method List

  • -
  • +
  • #caveats_contains_only_discontinued? RuboCop::Cop::Cask::Discontinued @@ -6108,7 +6116,7 @@

    Method List

  • -
  • +
  • #caveats_strings RuboCop::Cop::FormulaCop @@ -6116,7 +6124,7 @@

    Method List

  • -
  • +
  • #cc SharedEnvExtension @@ -6124,7 +6132,7 @@

    Method List

  • -
  • +
  • #cc Homebrew::Cmd::InstallCmd::Args @@ -6132,7 +6140,7 @@

    Method List

  • -
  • +
  • #cd Pathname @@ -6140,7 +6148,7 @@

    Method List

  • -
  • +
  • #cellar Bottle @@ -6148,7 +6156,7 @@

    Method List

  • -
  • +
  • #cellar Utils::Bottles::TagSpecification @@ -6156,7 +6164,7 @@

    Method List

  • -
  • +
  • #cflags SharedEnvExtension @@ -6164,7 +6172,7 @@

    Method List

  • -
  • +
  • #change_dylib_id Keg @@ -6172,7 +6180,7 @@

    Method List

  • -
  • +
  • #change_dylib_id MachOShim @@ -6180,7 +6188,7 @@

    Method List

  • -
  • +
  • #change_install_name Keg @@ -6188,7 +6196,7 @@

    Method List

  • -
  • +
  • #change_install_name MachOShim @@ -6196,7 +6204,7 @@

    Method List

  • -
  • +
  • #change_make_var! StringInreplaceExtension @@ -6204,7 +6212,7 @@

    Method List

  • -
  • +
  • #change_rpath Keg @@ -6212,7 +6220,7 @@

    Method List

  • -
  • +
  • #change_rpath MachOShim @@ -6220,7 +6228,7 @@

    Method List

  • -
  • +
  • #changed? Homebrew::DevCmd::Tests::Args @@ -6228,7 +6236,7 @@

    Method List

  • -
  • +
  • #changed_files Tab @@ -6236,7 +6244,7 @@

    Method List

  • -
  • +
  • #channel Homebrew::Livecheck::Strategy::Sparkle::Item @@ -6244,7 +6252,7 @@

    Method List

  • -
  • +
  • #check_access_directories Homebrew::Diagnostic::Checks @@ -6252,7 +6260,7 @@

    Method List

  • -
  • +
  • #check_arch_requirements Cask::Installer @@ -6260,7 +6268,7 @@

    Method List

  • -
  • +
  • check_attestation Homebrew::Attestation @@ -6268,7 +6276,7 @@

    Method List

  • -
  • +
  • #check_binary_arches FormulaCellarChecks @@ -6276,7 +6284,7 @@

    Method List

  • -
  • +
  • #check_block_component_order RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -6284,7 +6292,7 @@

    Method List

  • -
  • +
  • #check_brew_git_origin Homebrew::Diagnostic::Checks @@ -6292,7 +6300,7 @@

    Method List

  • -
  • +
  • check_broken_dependents Homebrew::Upgrade @@ -6300,7 +6308,7 @@

    Method List

  • -
  • +
  • #check_broken_sdks Homebrew::Diagnostic::Checks @@ -6308,7 +6316,7 @@

    Method List

  • -
  • +
  • #check_cask_deprecated_disabled Homebrew::Diagnostic::Checks @@ -6316,7 +6324,7 @@

    Method List

  • -
  • +
  • #check_cask_environment_variables Homebrew::Diagnostic::Checks @@ -6324,7 +6332,7 @@

    Method List

  • -
  • +
  • #check_cask_install_location Homebrew::Diagnostic::Checks @@ -6332,7 +6340,7 @@

    Method List

  • -
  • +
  • #check_cask_load_path Homebrew::Diagnostic::Checks @@ -6340,7 +6348,7 @@

    Method List

  • -
  • +
  • #check_cask_quarantine_support Homebrew::Diagnostic::Checks @@ -6348,7 +6356,7 @@

    Method List

  • -
  • +
  • #check_cask_software_versions Homebrew::Diagnostic::Checks @@ -6356,7 +6364,7 @@

    Method List

  • -
  • +
  • #check_cask_staging_location Homebrew::Diagnostic::Checks @@ -6364,7 +6372,7 @@

    Method List

  • -
  • +
  • #check_cask_taps Homebrew::Diagnostic::Checks @@ -6372,7 +6380,7 @@

    Method List

  • -
  • +
  • #check_cask_xattr Homebrew::Diagnostic::Checks @@ -6380,7 +6388,7 @@

    Method List

  • -
  • +
  • #check_casktap_integrity Homebrew::Diagnostic::Checks @@ -6388,7 +6396,7 @@

    Method List

  • -
  • +
  • #check_clt_minimum_version Homebrew::Diagnostic::Checks @@ -6396,7 +6404,7 @@

    Method List

  • -
  • +
  • #check_clt_up_to_date Homebrew::Diagnostic::Checks @@ -6404,7 +6412,7 @@

    Method List

  • -
  • +
  • #check_conflicts Cask::Installer @@ -6412,7 +6420,7 @@

    Method List

  • -
  • +
  • #check_conflicts FormulaInstaller @@ -6420,7 +6428,7 @@

    Method List

  • -
  • +
  • check_core_attestation Homebrew::Attestation @@ -6428,7 +6436,7 @@

    Method List

  • -
  • +
  • #check_coretap_integrity Homebrew::Diagnostic::Checks @@ -6436,7 +6444,7 @@

    Method List

  • -
  • +
  • #check_cpuid_instruction FormulaCellarChecks @@ -6444,7 +6452,7 @@

    Method List

  • -
  • +
  • #check_deleted_formula Homebrew::Diagnostic::Checks @@ -6452,7 +6460,7 @@

    Method List

  • -
  • +
  • #check_dependency_nodes_order RuboCop::Cop::FormulaAudit::DependencyOrder @@ -6460,7 +6468,7 @@

    Method List

  • -
  • +
  • #check_deprecate_disable Cask::Installer @@ -6468,7 +6476,7 @@

    Method List

  • -
  • +
  • #check_deprecated_caskroom_taps Homebrew::Diagnostic::Checks @@ -6476,7 +6484,7 @@

    Method List

  • -
  • +
  • #check_deprecated_disabled Homebrew::Diagnostic::Checks @@ -6484,7 +6492,7 @@

    Method List

  • -
  • +
  • #check_deprecated_official_taps Homebrew::Diagnostic::Checks @@ -6492,7 +6500,7 @@

    Method List

  • -
  • +
  • #check_easy_install_pth FormulaCellarChecks @@ -6500,7 +6508,7 @@

    Method List

  • -
  • +
  • #check_elisp_dirname FormulaCellarChecks @@ -6508,7 +6516,7 @@

    Method List

  • -
  • +
  • #check_elisp_root FormulaCellarChecks @@ -6516,7 +6524,7 @@

    Method List

  • -
  • +
  • #check_env_path FormulaCellarChecks @@ -6524,7 +6532,7 @@

    Method List

  • -
  • +
  • #check_exist_directories Homebrew::Diagnostic::Checks @@ -6532,7 +6540,7 @@

    Method List

  • -
  • +
  • #check_filesystem_case_sensitive Homebrew::Diagnostic::Checks @@ -6540,7 +6548,7 @@

    Method List

  • -
  • +
  • #check_flat_namespace FormulaCellarChecks @@ -6548,7 +6556,7 @@

    Method List

  • -
  • +
  • #check_for_broken_symlinks Homebrew::Diagnostic::Checks @@ -6556,7 +6564,7 @@

    Method List

  • -
  • +
  • check_for_dependents Homebrew::Uninstall @@ -6564,7 +6572,7 @@

    Method List

  • -
  • +
  • check_for_duplicate_pull_requests GitHub @@ -6572,7 +6580,7 @@

    Method List

  • -
  • +
  • #check_for_external_cmd_name_conflict Homebrew::Diagnostic::Checks @@ -6580,7 +6588,7 @@

    Method List

  • -
  • +
  • #check_for_gettext Homebrew::Diagnostic::Checks @@ -6588,7 +6596,7 @@

    Method List

  • -
  • +
  • #check_for_git Homebrew::Diagnostic::Checks @@ -6596,7 +6604,7 @@

    Method List

  • -
  • +
  • #check_for_iconv Homebrew::Diagnostic::Checks @@ -6604,7 +6612,7 @@

    Method List

  • -
  • +
  • #check_for_installed_developer_tools Homebrew::Diagnostic::Checks @@ -6612,7 +6620,7 @@

    Method List

  • -
  • +
  • #check_for_multiple_volumes Homebrew::Diagnostic::Checks @@ -6620,7 +6628,7 @@

    Method List

  • -
  • +
  • #check_for_non_prefixed_coreutils Homebrew::Diagnostic::Checks @@ -6628,7 +6636,7 @@

    Method List

  • -
  • +
  • #check_for_non_prefixed_findutils Homebrew::Diagnostic::Checks @@ -6636,7 +6644,7 @@

    Method List

  • -
  • +
  • #check_for_other_frameworks Homebrew::Diagnostic::Checks @@ -6644,7 +6652,7 @@

    Method List

  • -
  • +
  • #check_for_pydistutils_cfg_in_home Homebrew::Diagnostic::Checks @@ -6652,7 +6660,7 @@

    Method List

  • -
  • +
  • #check_for_stray_dylibs Homebrew::Diagnostic::Checks @@ -6660,7 +6668,7 @@

    Method List

  • -
  • +
  • #check_for_stray_headers Homebrew::Diagnostic::Checks @@ -6668,7 +6676,7 @@

    Method List

  • -
  • +
  • #check_for_stray_las Homebrew::Diagnostic::Checks @@ -6676,7 +6684,7 @@

    Method List

  • -
  • +
  • #check_for_stray_pcs Homebrew::Diagnostic::Checks @@ -6684,7 +6692,7 @@

    Method List

  • -
  • +
  • #check_for_stray_static_libs Homebrew::Diagnostic::Checks @@ -6692,7 +6700,7 @@

    Method List

  • -
  • +
  • #check_for_symlinked_cellar Homebrew::Diagnostic::Checks @@ -6700,7 +6708,7 @@

    Method List

  • -
  • +
  • #check_for_tap_ruby_files_locations Homebrew::Diagnostic::Checks @@ -6708,7 +6716,7 @@

    Method List

  • -
  • +
  • #check_for_unlinked_but_not_keg_only Homebrew::Diagnostic::Checks @@ -6716,7 +6724,7 @@

    Method List

  • -
  • +
  • #check_for_unnecessary_cask_tap Homebrew::Diagnostic::Checks @@ -6724,7 +6732,7 @@

    Method List

  • -
  • +
  • #check_for_unnecessary_core_tap Homebrew::Diagnostic::Checks @@ -6732,7 +6740,7 @@

    Method List

  • -
  • +
  • #check_for_unreadable_installed_formula Homebrew::Diagnostic::Checks @@ -6740,7 +6748,7 @@

    Method List

  • -
  • +
  • #check_for_unsupported_macos Homebrew::Diagnostic::Checks @@ -6748,7 +6756,7 @@

    Method List

  • -
  • +
  • #check_gcc_dependent_linkage Homebrew::Diagnostic::Checks @@ -6756,7 +6764,7 @@

    Method List

  • -
  • +
  • #check_generic_executables FormulaCellarChecks @@ -6764,7 +6772,7 @@

    Method List

  • -
  • +
  • #check_git_newline_settings Homebrew::Diagnostic::Checks @@ -6772,7 +6780,7 @@

    Method List

  • -
  • +
  • #check_git_status Homebrew::Diagnostic::Checks @@ -6780,7 +6788,7 @@

    Method List

  • -
  • +
  • #check_git_version Homebrew::Diagnostic::Checks @@ -6788,7 +6796,7 @@

    Method List

  • -
  • +
  • #check_glibc_minimum_version Homebrew::Diagnostic::Checks @@ -6796,7 +6804,7 @@

    Method List

  • -
  • +
  • #check_homebrew_prefix Homebrew::Diagnostic::Checks @@ -6804,7 +6812,7 @@

    Method List

  • -
  • +
  • #check_if_supported_sdk_available Homebrew::Diagnostic::Checks @@ -6812,7 +6820,7 @@

    Method List

  • -
  • +
  • #check_if_xcode_needs_clt_installed Homebrew::Diagnostic::Checks @@ -6820,7 +6828,7 @@

    Method List

  • -
  • +
  • #check_infopages FormulaCellarChecks @@ -6828,7 +6836,7 @@

    Method List

  • -
  • +
  • #check_install_sanity FormulaInstaller @@ -6836,7 +6844,7 @@

    Method List

  • -
  • +
  • #check_installation_already_attempted FormulaInstaller @@ -6844,7 +6852,7 @@

    Method List

  • -
  • +
  • check_installed_dependents Homebrew::Upgrade @@ -6852,7 +6860,7 @@

    Method List

  • -
  • +
  • #check_jars FormulaCellarChecks @@ -6860,7 +6868,7 @@

    Method List

  • -
  • +
  • #check_kernel_minimum_version Homebrew::Diagnostic::Checks @@ -6868,7 +6876,7 @@

    Method List

  • -
  • +
  • #check_linkage FormulaCellarChecks @@ -6876,7 +6884,7 @@

    Method List

  • -
  • +
  • #check_linuxbrew_bottle_domain Homebrew::Diagnostic::Checks @@ -6884,7 +6892,7 @@

    Method List

  • -
  • +
  • #check_linuxbrew_core Homebrew::Diagnostic::Checks @@ -6892,7 +6900,7 @@

    Method List

  • -
  • +
  • #check_macos_requirements Cask::Installer @@ -6900,7 +6908,7 @@

    Method List

  • -
  • +
  • #check_manpages FormulaCellarChecks @@ -6908,7 +6916,7 @@

    Method List

  • -
  • +
  • #check_missing_deps Homebrew::Diagnostic::Checks @@ -6916,7 +6924,7 @@

    Method List

  • -
  • +
  • #check_multiple_cellars Homebrew::Diagnostic::Checks @@ -6924,7 +6932,7 @@

    Method List

  • -
  • +
  • #check_non_executables FormulaCellarChecks @@ -6932,7 +6940,7 @@

    Method List

  • -
  • +
  • #check_non_libraries FormulaCellarChecks @@ -6940,7 +6948,7 @@

    Method List

  • -
  • +
  • #check_on_system_block_content RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -6948,7 +6956,7 @@

    Method List

  • -
  • +
  • #check_openssl_links FormulaCellarChecks @@ -6956,7 +6964,7 @@

    Method List

  • -
  • +
  • #check_order RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -6964,7 +6972,7 @@

    Method List

  • -
  • +
  • #check_plist FormulaCellarChecks @@ -6972,7 +6980,7 @@

    Method List

  • -
  • +
  • #check_precedence RuboCop::Cop::HelperFunctions @@ -6980,7 +6988,7 @@

    Method List

  • -
  • +
  • check_prefix Homebrew::Install @@ -6988,7 +6996,7 @@

    Method List

  • -
  • +
  • #check_python_framework_links FormulaCellarChecks @@ -6996,7 +7004,7 @@

    Method List

  • -
  • +
  • #check_python_packages FormulaCellarChecks @@ -7004,7 +7012,7 @@

    Method List

  • -
  • +
  • #check_python_symlinks FormulaCellarChecks @@ -7012,7 +7020,7 @@

    Method List

  • -
  • +
  • check_quarantine_support Cask::Quarantine @@ -7020,7 +7028,7 @@

    Method List

  • -
  • +
  • #check_requirements Cask::Installer @@ -7028,7 +7036,7 @@

    Method List

  • -
  • +
  • #check_requirements FormulaInstaller @@ -7036,7 +7044,7 @@

    Method List

  • -
  • +
  • check_runs GitHub @@ -7044,7 +7052,7 @@

    Method List

  • -
  • +
  • #check_service_command FormulaCellarChecks @@ -7052,7 +7060,7 @@

    Method List

  • -
  • +
  • #check_shadowed_headers FormulaCellarChecks @@ -7060,7 +7068,7 @@

    Method List

  • -
  • +
  • #check_shim_references FormulaCellarChecks @@ -7068,7 +7076,7 @@

    Method List

  • -
  • +
  • check_style_and_print Homebrew::Style @@ -7076,7 +7084,7 @@

    Method List

  • -
  • +
  • check_style_impl Homebrew::Style @@ -7084,7 +7092,7 @@

    Method List

  • -
  • +
  • check_style_json Homebrew::Style @@ -7092,7 +7100,7 @@

    Method List

  • -
  • +
  • #check_supported_architecture Homebrew::Diagnostic::Checks @@ -7100,7 +7108,7 @@

    Method List

  • -
  • +
  • #check_tap_git_branch Homebrew::Diagnostic::Checks @@ -7108,7 +7116,7 @@

    Method List

  • -
  • +
  • #check_tmpdir Homebrew::Diagnostic::Checks @@ -7116,7 +7124,7 @@

    Method List

  • -
  • +
  • #check_tmpdir_executable Homebrew::Diagnostic::Checks @@ -7124,7 +7132,7 @@

    Method List

  • -
  • +
  • #check_tmpdir_sticky_bit Homebrew::Diagnostic::Checks @@ -7132,7 +7140,7 @@

    Method List

  • -
  • +
  • #check_umask_not_zero Homebrew::Diagnostic::Checks @@ -7140,7 +7148,7 @@

    Method List

  • -
  • +
  • #check_user_path_1 Homebrew::Diagnostic::Checks @@ -7148,7 +7156,7 @@

    Method List

  • -
  • +
  • #check_user_path_2 Homebrew::Diagnostic::Checks @@ -7156,7 +7164,7 @@

    Method List

  • -
  • +
  • #check_user_path_3 Homebrew::Diagnostic::Checks @@ -7164,7 +7172,7 @@

    Method List

  • -
  • +
  • #check_uses_from_macos_nodes_order RuboCop::Cop::FormulaAudit::DependencyOrder @@ -7172,7 +7180,7 @@

    Method List

  • -
  • +
  • #check_xcode_license_approved Homebrew::Diagnostic::Checks @@ -7180,7 +7188,7 @@

    Method List

  • -
  • +
  • #check_xcode_minimum_version Homebrew::Diagnostic::Checks @@ -7188,7 +7196,7 @@

    Method List

  • -
  • +
  • #check_xcode_prefix Homebrew::Diagnostic::Checks @@ -7196,7 +7204,7 @@

    Method List

  • -
  • +
  • #check_xcode_prefix_exists Homebrew::Diagnostic::Checks @@ -7204,7 +7212,7 @@

    Method List

  • -
  • +
  • #check_xcode_select_path Homebrew::Diagnostic::Checks @@ -7212,7 +7220,7 @@

    Method List

  • -
  • +
  • #check_xcode_up_to_date Homebrew::Diagnostic::Checks @@ -7220,7 +7228,7 @@

    Method List

  • -
  • +
  • #check_xdg_data_dirs Homebrew::Diagnostic::Checks @@ -7228,7 +7236,7 @@

    Method List

  • -
  • +
  • checkable_urls Homebrew::Livecheck @@ -7236,7 +7244,7 @@

    Method List

  • -
  • +
  • checks Homebrew::Diagnostic @@ -7244,7 +7252,7 @@

    Method List

  • -
  • +
  • #checksum Downloadable @@ -7252,7 +7260,7 @@

    Method List

  • -
  • +
  • #checksum Cask::Download @@ -7260,7 +7268,7 @@

    Method List

  • -
  • +
  • #checksum Utils::Bottles::TagSpecification @@ -7268,7 +7276,7 @@

    Method List

  • -
  • +
  • #checksum Homebrew::ResourceAuditor @@ -7276,7 +7284,7 @@

    Method List

  • -
  • +
  • #checksumable? Cask::Cask @@ -7284,7 +7292,7 @@

    Method List

  • -
  • +
  • #checksums BottleSpecification @@ -7292,7 +7300,7 @@

    Method List

  • -
  • +
  • cherry_pick! Utils::Git @@ -7300,6 +7308,14 @@

    Method List

  • +
  • +
    + child_of? + Utils::Path +
    +
  • + +
  • #choice @@ -22341,6 +22357,14 @@

    Method List

  • +
    + library_paths + OS::Linux::Ld +
    +
  • + + +
  • #libtool_files Keg @@ -22348,7 +22372,7 @@

    Method List

  • -
  • +
  • #libxml2 Stdenv @@ -22356,7 +22380,7 @@

    Method List

  • -
  • +
  • #license Formula @@ -22364,7 +22388,7 @@

    Method List

  • -
  • +
  • license Formula @@ -22372,7 +22396,7 @@

    Method List

  • -
  • +
  • license_data SPDX @@ -22380,7 +22404,7 @@

    Method List

  • -
  • +
  • #license_exception? RuboCop::Cop::FormulaAudit::Licenses @@ -22388,7 +22412,7 @@

    Method List

  • -
  • +
  • license_expression_to_string SPDX @@ -22396,7 +22420,7 @@

    Method List

  • -
  • +
  • license_version_info SPDX @@ -22404,7 +22428,7 @@

    Method List

  • -
  • +
  • licenses_forbid_installation? SPDX @@ -22412,7 +22436,7 @@

    Method List

  • -
  • +
  • #limit Homebrew::DevCmd::Bump::Args @@ -22420,7 +22444,7 @@

    Method List

  • -
  • +
  • #limit Homebrew::DevCmd::BumpUnversionedCasks::Args @@ -22428,7 +22452,7 @@

    Method List

  • -
  • +
  • #line Homebrew::SourceLocation @@ -22436,7 +22460,7 @@

    Method List

  • -
  • +
  • #line_number Homebrew::FormulaTextAuditor @@ -22444,7 +22468,7 @@

    Method List

  • -
  • +
  • #line_number RuboCop::Cop::HelperFunctions @@ -22452,7 +22476,7 @@

    Method List

  • -
  • +
  • #line_start_column RuboCop::Cop::HelperFunctions @@ -22460,7 +22484,7 @@

    Method List

  • -
  • +
  • #link Keg @@ -22468,7 +22492,7 @@

    Method List

  • -
  • +
  • #link FormulaInstaller @@ -22476,7 +22500,7 @@

    Method List

  • -
  • +
  • #link Cask::Artifact::Binary @@ -22484,7 +22508,7 @@

    Method List

  • -
  • +
  • #link Homebrew::Livecheck::Strategy::Sparkle::Item @@ -22492,7 +22516,7 @@

    Method List

  • -
  • +
  • link! Homebrew::Completions @@ -22500,7 +22524,7 @@

    Method List

  • -
  • +
  • link_completions Utils::Link @@ -22508,7 +22532,7 @@

    Method List

  • -
  • +
  • link_completions? Homebrew::Completions @@ -22516,7 +22540,7 @@

    Method List

  • -
  • +
  • #link_completions_and_manpages Tap @@ -22524,7 +22548,7 @@

    Method List

  • -
  • +
  • link_docs Utils::Link @@ -22532,7 +22556,7 @@

    Method List

  • -
  • +
  • #link_keg FormulaInstaller @@ -22540,7 +22564,7 @@

    Method List

  • -
  • +
  • link_manpages Utils::Link @@ -22548,7 +22572,7 @@

    Method List

  • -
  • +
  • #link_newname Migrator @@ -22556,7 +22580,7 @@

    Method List

  • -
  • +
  • #link_oldname_cellar Migrator @@ -22564,7 +22588,7 @@

    Method List

  • -
  • +
  • #link_oldname_opt Migrator @@ -22572,7 +22596,7 @@

    Method List

  • -
  • +
  • link_overwrite Formula @@ -22580,7 +22604,7 @@

    Method List

  • -
  • +
  • link_type_english_name Cask::Artifact::Symlinked @@ -22588,7 +22612,7 @@

    Method List

  • -
  • +
  • #linked? Keg @@ -22596,7 +22620,7 @@

    Method List

  • -
  • +
  • #linked? Formula @@ -22604,7 +22628,7 @@

    Method List

  • -
  • +
  • #linked_keg Formula @@ -22612,7 +22636,7 @@

    Method List

  • -
  • +
  • #linked_keg_record Keg @@ -22620,7 +22644,7 @@

    Method List

  • -
  • +
  • #linked_old_linked_kegs Migrator @@ -22628,7 +22652,7 @@

    Method List

  • -
  • +
  • #linked_version Formula @@ -22636,7 +22660,7 @@

    Method List

  • -
  • +
  • linux? OS @@ -22644,7 +22668,7 @@

    Method List

  • -
  • +
  • #linux? GitHubRunner @@ -22652,7 +22676,7 @@

    Method List

  • -
  • +
  • #linux? Utils::Bottles::Tag @@ -22660,7 +22684,7 @@

    Method List

  • -
  • +
  • #linux? Homebrew::DevCmd::DispatchBuildBottle::Args @@ -22668,7 +22692,7 @@

    Method List

  • -
  • +
  • #linux_compatible? TestRunnerFormula @@ -22676,7 +22700,7 @@

    Method List

  • -
  • +
  • #linux_only? TestRunnerFormula @@ -22684,7 +22708,7 @@

    Method List

  • -
  • +
  • #linux_self_hosted? Homebrew::DevCmd::DispatchBuildBottle::Args @@ -22692,7 +22716,7 @@

    Method List

  • -
  • +
  • #linux_wheezy? Homebrew::DevCmd::DispatchBuildBottle::Args @@ -22700,7 +22724,7 @@

    Method List

  • -
  • +
  • list? Metafiles @@ -22708,7 +22732,7 @@

    Method List

  • -
  • +
  • list_artifacts Cask::List @@ -22716,7 +22740,7 @@

    Method List

  • -
  • +
  • list_casks Cask::List @@ -22724,7 +22748,7 @@

    Method List

  • -
  • +
  • #list_checks? Homebrew::Cmd::Doctor::Args @@ -22732,7 +22756,7 @@

    Method List

  • -
  • +
  • little_endian? Hardware::CPU @@ -22740,7 +22764,7 @@

    Method List

  • -
  • +
  • #livecheck Formula @@ -22748,7 +22772,7 @@

    Method List

  • -
  • +
  • livecheck Formula @@ -22756,7 +22780,7 @@

    Method List

  • -
  • +
  • #livecheck Cask::DSL @@ -22764,7 +22788,7 @@

    Method List

  • -
  • +
  • #livecheck Resource @@ -22772,7 +22796,7 @@

    Method List

  • -
  • +
  • #livecheck Cask::Cask @@ -22780,7 +22804,7 @@

    Method List

  • -
  • +
  • livecheck_strategy_names Homebrew::Livecheck @@ -22788,7 +22812,7 @@

    Method List

  • -
  • +
  • livecheck_url_to_string Homebrew::Livecheck @@ -22796,7 +22820,7 @@

    Method List

  • -
  • +
  • livecheck_watchlist Homebrew::EnvConfig @@ -22804,7 +22828,7 @@

    Method List

  • -
  • +
  • #livecheckable? Formula @@ -22812,7 +22836,7 @@

    Method List

  • -
  • +
  • livecheckable? Formula @@ -22820,7 +22844,7 @@

    Method List

  • -
  • +
  • #livecheckable? Resource @@ -22828,7 +22852,7 @@

    Method List

  • -
  • +
  • #livecheckable? Cask::Cask @@ -22836,7 +22860,7 @@

    Method List

  • -
  • +
  • #livecheckable? Cask::DSL @@ -22844,7 +22868,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::ILoader @@ -22852,7 +22876,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromContentLoader @@ -22860,7 +22884,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromPathLoader @@ -22868,7 +22892,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromURILoader @@ -22876,7 +22900,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromTapLoader @@ -22884,7 +22908,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromInstanceLoader @@ -22892,7 +22916,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromAPILoader @@ -22900,7 +22924,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::NullLoader @@ -22908,7 +22932,7 @@

    Method List

  • -
  • +
  • load Cask::CaskLoader @@ -22916,7 +22940,7 @@

    Method List

  • -
  • +
  • #load Cask::DSL::DependsOn @@ -22924,7 +22948,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::FromURILoader @@ -22932,7 +22956,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::FromTapLoader @@ -22940,7 +22964,7 @@

    Method List

  • -
  • +
  • load_formula Formulary @@ -22948,7 +22972,7 @@

    Method List

  • -
  • +
  • load_formula_from_api Formulary @@ -22956,7 +22980,7 @@

    Method List

  • -
  • +
  • load_formula_from_path Formulary @@ -22964,7 +22988,7 @@

    Method List

  • -
  • +
  • load_other_tap_strategies Homebrew::Livecheck @@ -22972,7 +22996,7 @@

    Method List

  • -
  • +
  • load_tab Utils::Bottles @@ -22980,7 +23004,7 @@

    Method List

  • -
  • +
  • #loaded_from_api Tab @@ -22988,7 +23012,7 @@

    Method List

  • -
  • +
  • loaded_from_api? Formula @@ -22996,7 +23020,7 @@

    Method List

  • -
  • +
  • #loaded_from_api? Cask::Cask @@ -23004,7 +23028,7 @@

    Method List

  • -
  • +
  • #loader Cask::Cask @@ -23012,7 +23036,7 @@

    Method List

  • -
  • +
  • loader_for Formulary @@ -23020,7 +23044,7 @@

    Method List

  • -
  • +
  • #loader_name_for Keg @@ -23028,7 +23052,7 @@

    Method List

  • -
  • +
  • #loader_path Formula @@ -23036,7 +23060,7 @@

    Method List

  • -
  • +
  • #loaders TapFormulaAmbiguityError @@ -23044,7 +23068,7 @@

    Method List

  • -
  • +
  • #loaders Cask::TapCaskAmbiguityError @@ -23052,7 +23076,7 @@

    Method List

  • -
  • +
  • local_npm_install_args Language::Node @@ -23060,7 +23084,7 @@

    Method List

  • -
  • +
  • #location Homebrew::Style::Offense @@ -23068,7 +23092,7 @@

    Method List

  • -
  • +
  • #location Cask::URL @@ -23076,7 +23100,7 @@

    Method List

  • -
  • +
  • #location_expression RuboCop::AST::Node @@ -23084,7 +23108,7 @@

    Method List

  • -
  • +
  • #lock Keg @@ -23092,7 +23116,7 @@

    Method List

  • -
  • +
  • #lock Migrator @@ -23100,7 +23124,7 @@

    Method List

  • -
  • +
  • #lock LockFile @@ -23108,7 +23132,7 @@

    Method List

  • -
  • +
  • locked FormulaInstaller @@ -23116,7 +23140,7 @@

    Method List

  • -
  • +
  • #log_path Homebrew::Service @@ -23124,7 +23148,7 @@

    Method List

  • -
  • +
  • logs Homebrew::EnvConfig @@ -23132,7 +23156,7 @@

    Method List

  • -
  • +
  • lookup FormulaInfo @@ -23140,7 +23164,7 @@

    Method List

  • -
  • +
  • #lost? Homebrew::DevCmd::Unbottled::Args @@ -23148,7 +23172,7 @@

    Method List

  • -
  • +
  • mac? OS @@ -23156,7 +23180,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? MachOShim @@ -23164,7 +23188,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? Pathname @@ -23172,7 +23196,7 @@

    Method List

  • -
  • +
  • #mach_o_executable? MachOShim @@ -23180,7 +23204,7 @@

    Method List

  • -
  • +
  • #mach_o_files Keg @@ -23188,7 +23212,7 @@

    Method List

  • -
  • +
  • #macos Cask::DSL::DependsOn @@ -23196,7 +23220,7 @@

    Method List

  • -
  • +
  • #macos Homebrew::DevCmd::DispatchBuildBottle::Args @@ -23204,7 +23228,7 @@

    Method List

  • -
  • +
  • #macos? GitHubRunner @@ -23212,7 +23236,7 @@

    Method List

  • -
  • +
  • #macos? Utils::Bottles::Tag @@ -23220,7 +23244,7 @@

    Method List

  • -
  • +
  • #macos_compatible? TestRunnerFormula @@ -23228,7 +23252,7 @@

    Method List

  • -
  • +
  • #macos_legacy_timers Homebrew::Service @@ -23236,7 +23260,7 @@

    Method List

  • -
  • +
  • #macos_only? TestRunnerFormula @@ -23244,7 +23268,7 @@

    Method List

  • -
  • +
  • #macos_version GitHubRunner @@ -23252,7 +23276,7 @@

    Method List

  • -
  • +
  • #macos_version_comparison_search RuboCop::Cop::OnSystemConditionalsHelper @@ -23260,7 +23284,7 @@

    Method List

  • -
  • +
  • #macosxsdk Stdenv @@ -23268,7 +23292,7 @@

    Method List

  • -
  • +
  • #macports? Homebrew::Cmd::SearchCmd::Args @@ -23276,7 +23300,7 @@

    Method List

  • -
  • +
  • macports_or_fink OS::Mac @@ -23284,7 +23308,7 @@

    Method List

  • -
  • +
  • magenta Tty @@ -23292,7 +23316,7 @@

    Method List

  • -
  • +
  • #magic_number Pathname @@ -23300,7 +23324,7 @@

    Method List

  • -
  • +
  • #maintainers Homebrew::Manpages::Variables @@ -23308,7 +23332,7 @@

    Method List

  • -
  • +
  • #major Version @@ -23316,7 +23340,7 @@

    Method List

  • -
  • +
  • #major Cask::DSL::Version @@ -23324,7 +23348,7 @@

    Method List

  • -
  • +
  • #major PkgVersion @@ -23332,7 +23356,7 @@

    Method List

  • -
  • +
  • #major? Homebrew::DevCmd::Release::Args @@ -23340,7 +23364,7 @@

    Method List

  • -
  • +
  • #major_minor Version @@ -23348,7 +23372,7 @@

    Method List

  • -
  • +
  • #major_minor Cask::DSL::Version @@ -23356,7 +23380,7 @@

    Method List

  • -
  • +
  • #major_minor PkgVersion @@ -23364,7 +23388,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Version @@ -23372,7 +23396,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Cask::DSL::Version @@ -23380,7 +23404,7 @@

    Method List

  • -
  • +
  • #major_minor_patch PkgVersion @@ -23388,7 +23412,7 @@

    Method List

  • -
  • +
  • major_minor_version Language::Python @@ -23396,7 +23420,7 @@

    Method List

  • -
  • +
  • make_jobs Homebrew::EnvConfig @@ -23404,7 +23428,7 @@

    Method List

  • -
  • +
  • #make_jobs Stdenv @@ -23412,7 +23436,7 @@

    Method List

  • -
  • +
  • #make_jobs Superenv @@ -23420,7 +23444,7 @@

    Method List

  • -
  • +
  • #man Formula @@ -23428,7 +23452,7 @@

    Method List

  • -
  • +
  • #man1 Formula @@ -23436,7 +23460,7 @@

    Method List

  • -
  • +
  • #man2 Formula @@ -23444,7 +23468,7 @@

    Method List

  • -
  • +
  • #man3 Formula @@ -23452,7 +23476,7 @@

    Method List

  • -
  • +
  • #man4 Formula @@ -23460,7 +23484,7 @@

    Method List

  • -
  • +
  • #man5 Formula @@ -23468,7 +23492,7 @@

    Method List

  • -
  • +
  • #man6 Formula @@ -23476,7 +23500,7 @@

    Method List

  • -
  • +
  • #man7 Formula @@ -23484,7 +23508,7 @@

    Method List

  • -
  • +
  • #man8 Formula @@ -23492,7 +23516,7 @@

    Method List

  • -
  • +
  • #manpagedir Cask::Config @@ -23500,7 +23524,7 @@

    Method List

  • -
  • +
  • #manual_command Homebrew::Service @@ -23508,7 +23532,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Git @@ -23516,7 +23540,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnu @@ -23524,7 +23548,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Npm @@ -23532,7 +23556,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xml @@ -23540,7 +23564,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Cpan @@ -23548,7 +23572,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Json @@ -23556,7 +23580,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Pypi @@ -23564,7 +23588,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xorg @@ -23572,7 +23596,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Yaml @@ -23580,7 +23604,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Crate @@ -23588,7 +23612,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnome @@ -23596,7 +23620,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Apache @@ -23604,7 +23628,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Hackage @@ -23612,7 +23636,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sparkle @@ -23620,7 +23644,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Bitbucket @@ -23628,7 +23652,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Launchpad @@ -23636,7 +23660,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::PageMatch @@ -23644,7 +23668,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sourceforge @@ -23652,7 +23676,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::HeaderMatch @@ -23660,7 +23684,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ExtractPlist @@ -23668,7 +23692,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubLatest @@ -23676,7 +23700,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubReleases @@ -23684,7 +23708,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ElectronBuilder @@ -23692,7 +23716,7 @@

    Method List

  • -
  • +
  • #max_count Homebrew::Cmd::Log::Args @@ -23700,7 +23724,7 @@

    Method List

  • -
  • +
  • #max_length Utils::Shebang::RewriteInfo @@ -23708,7 +23732,7 @@

    Method List

  • -
  • +
  • mdfind OS::Mac @@ -23716,7 +23740,7 @@

    Method List

  • -
  • +
  • mdfind_query OS::Mac @@ -23724,7 +23748,7 @@

    Method List

  • -
  • +
  • #mdimporterdir Homebrew::Cmd::Reinstall::Args @@ -23732,7 +23756,7 @@

    Method List

  • -
  • +
  • #mdimporterdir Homebrew::Cmd::InstallCmd::Args @@ -23740,7 +23764,7 @@

    Method List

  • -
  • +
  • #mdimporterdir Homebrew::Cmd::UpgradeCmd::Args @@ -23748,7 +23772,7 @@

    Method List

  • -
  • +
  • #mdimporters Homebrew::UnversionedCaskChecker @@ -23756,7 +23780,7 @@

    Method List

  • -
  • +
  • members_by_team GitHub @@ -23764,7 +23788,7 @@

    Method List

  • -
  • +
  • #merge Cask::Config @@ -23772,7 +23796,7 @@

    Method List

  • -
  • +
  • #merge BuildEnvironment @@ -23780,7 +23804,7 @@

    Method List

  • -
  • +
  • #merge? Homebrew::DevCmd::Bottle::Args @@ -23788,7 +23812,7 @@

    Method List

  • -
  • +
  • #merge_bottle_spec Homebrew::DevCmd::Bottle @@ -23796,7 +23820,7 @@

    Method List

  • -
  • +
  • #merge_directory Migrator @@ -23804,7 +23828,7 @@

    Method List

  • -
  • +
  • #merge_json_files Homebrew::DevCmd::Bottle @@ -23812,7 +23836,7 @@

    Method List

  • -
  • +
  • merge_pull_request GitHub @@ -23820,7 +23844,7 @@

    Method List

  • -
  • +
  • merge_repeats Dependency @@ -23828,7 +23852,7 @@

    Method List

  • -
  • +
  • merge_variations Homebrew::API @@ -23836,7 +23860,7 @@

    Method List

  • -
  • +
  • #merge_xattrs UnpackStrategy @@ -23844,7 +23868,7 @@

    Method List

  • -
  • +
  • #merged_output SystemCommand::Result @@ -23852,7 +23876,7 @@

    Method List

  • -
  • +
  • #meson? Homebrew::DevCmd::Create::Args @@ -23860,7 +23884,7 @@

    Method List

  • -
  • +
  • #message Homebrew::Style::Offense @@ -23868,7 +23892,7 @@

    Method List

  • -
  • +
  • #message TapRemoteMismatchError @@ -23876,7 +23900,7 @@

    Method List

  • -
  • +
  • #message TapCoreRemoteMismatchError @@ -23884,7 +23908,7 @@

    Method List

  • -
  • +
  • #message FormulaConflictError @@ -23892,7 +23916,7 @@

    Method List

  • -
  • +
  • #message Requirement @@ -23900,7 +23924,7 @@

    Method List

  • -
  • +
  • #message Cask::CaskCannotBeInstalledError @@ -23908,7 +23932,7 @@

    Method List

  • -
  • +
  • message DeprecateDisable @@ -23916,7 +23940,7 @@

    Method List

  • -
  • +
  • #message ArchRequirement @@ -23924,7 +23948,7 @@

    Method List

  • -
  • +
  • #message LinuxRequirement @@ -23932,7 +23956,7 @@

    Method List

  • -
  • +
  • #message MacOSRequirement @@ -23940,7 +23964,7 @@

    Method List

  • -
  • +
  • #message XcodeRequirement @@ -23948,7 +23972,7 @@

    Method List

  • -
  • +
  • #message CodesignRequirement @@ -23956,7 +23980,7 @@

    Method List

  • -
  • +
  • #message Homebrew::DevCmd::PrPull::Args @@ -23964,7 +23988,7 @@

    Method List

  • -
  • +
  • #message Homebrew::DevCmd::PrPublish::Args @@ -23972,7 +23996,7 @@

    Method List

  • -
  • +
  • #message Homebrew::DevCmd::BumpCaskPr::Args @@ -23980,7 +24004,7 @@

    Method List

  • -
  • +
  • #message Homebrew::DevCmd::BumpRevision::Args @@ -23988,7 +24012,7 @@

    Method List

  • -
  • +
  • #message Homebrew::DevCmd::BumpFormulaPr::Args @@ -23996,7 +24020,7 @@

    Method List

  • -
  • +
  • messages Homebrew @@ -24004,7 +24028,7 @@

    Method List

  • -
  • +
  • messages_displayed! Utils::Analytics @@ -24012,7 +24036,7 @@

    Method List

  • -
  • +
  • messages_displayed? Utils::Analytics @@ -24020,7 +24044,7 @@

    Method List

  • -
  • +
  • #metadata_main_container_path Cask::Metadata @@ -24028,7 +24052,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Metadata @@ -24036,7 +24060,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Installer @@ -24044,7 +24068,7 @@

    Method List

  • -
  • +
  • #metadata_timestamped_path Cask::Metadata @@ -24052,7 +24076,7 @@

    Method List

  • -
  • +
  • #metadata_versioned_path Cask::Metadata @@ -24060,7 +24084,7 @@

    Method List

  • -
  • +
  • #method_called? RuboCop::Cop::HelperFunctions @@ -24068,7 +24092,7 @@

    Method List

  • -
  • +
  • #method_called_ever? RuboCop::Cop::HelperFunctions @@ -24076,7 +24100,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL @@ -24084,7 +24108,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::URL::BlockDSL @@ -24092,7 +24116,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL::Base @@ -24100,7 +24124,7 @@

    Method List

  • -
  • +
  • method_missing_message Cask::Utils @@ -24108,7 +24132,7 @@

    Method List

  • -
  • +
  • method_name Commands @@ -24116,7 +24140,7 @@

    Method List

  • -
  • +
  • #method_name RuboCop::Cop::HelperFunctions @@ -24124,7 +24148,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::Stanza @@ -24132,7 +24156,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::CaskHeader @@ -24140,7 +24164,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::AST::Node @@ -24148,7 +24172,7 @@

    Method List

  • -
  • +
  • #method_order_index RuboCop::Cop::Cask::UninstallMethodsOrder @@ -24156,7 +24180,7 @@

    Method List

  • -
  • +
  • #migrate Migrator @@ -24164,7 +24188,7 @@

    Method List

  • -
  • +
  • #migrate Cask::Migrator @@ -24172,7 +24196,7 @@

    Method List

  • -
  • +
  • #migrate_cask_rename Reporter @@ -24180,7 +24204,7 @@

    Method List

  • -
  • +
  • #migrate_formula_rename Reporter @@ -24188,7 +24212,7 @@

    Method List

  • -
  • +
  • migrate_gcc_dependents_if_needed Homebrew @@ -24196,7 +24220,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Migrator @@ -24204,7 +24228,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Cask::Migrator @@ -24212,7 +24236,7 @@

    Method List

  • -
  • +
  • #migrate_tap_migration Reporter @@ -24220,7 +24244,7 @@

    Method List

  • -
  • +
  • #migration_needed? Formula @@ -24228,7 +24252,7 @@

    Method List

  • -
  • +
  • #minimum_system_version Homebrew::Livecheck::Strategy::Sparkle::Item @@ -24236,7 +24260,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::Xcode @@ -24244,7 +24268,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::CLT @@ -24252,7 +24276,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Glibc @@ -24260,7 +24284,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Kernel @@ -24268,7 +24292,7 @@

    Method List

  • -
  • +
  • #minor Version @@ -24276,7 +24300,7 @@

    Method List

  • -
  • +
  • #minor Cask::DSL::Version @@ -24284,7 +24308,7 @@

    Method List

  • -
  • +
  • #minor PkgVersion @@ -24292,7 +24316,7 @@

    Method List

  • -
  • +
  • #minor? Homebrew::DevCmd::Release::Args @@ -24300,7 +24324,7 @@

    Method List

  • -
  • +
  • #minor_patch Cask::DSL::Version @@ -24308,7 +24332,7 @@

    Method List

  • -
  • +
  • mirror Formula @@ -24316,7 +24340,7 @@

    Method List

  • -
  • +
  • #mirror Resource @@ -24324,7 +24348,7 @@

    Method List

  • -
  • +
  • #mirror Homebrew::DevCmd::BumpFormulaPr::Args @@ -24332,7 +24356,7 @@

    Method List

  • -
  • +
  • #mirrors Downloadable @@ -24340,7 +24364,7 @@

    Method List

  • -
  • +
  • #mirrors Homebrew::ResourceAuditor @@ -24348,7 +24372,7 @@

    Method List

  • -
  • +
  • #mirrors CurlDownloadStrategy @@ -24356,7 +24380,7 @@

    Method List

  • -
  • +
  • #mirrors CurlApacheMirrorDownloadStrategy @@ -24364,7 +24388,7 @@

    Method List

  • -
  • +
  • #missing? Homebrew::Cmd::Deps::Args @@ -24372,7 +24396,7 @@

    Method List

  • -
  • +
  • #missing? Homebrew::Cmd::Uses::Args @@ -24380,7 +24404,7 @@

    Method List

  • -
  • +
  • #missing_cask_and_formula_dependencies Cask::Installer @@ -24388,7 +24412,7 @@

    Method List

  • -
  • +
  • #missing_dependencies Formula @@ -24396,7 +24420,7 @@

    Method List

  • -
  • +
  • missing_deps Homebrew::Diagnostic @@ -24404,7 +24428,7 @@

    Method List

  • -
  • +
  • #missing_options Dependency @@ -24412,7 +24436,7 @@

    Method List

  • -
  • +
  • #mkdir Formula @@ -24420,7 +24444,7 @@

    Method List

  • -
  • +
  • #mktemp Formula @@ -24428,7 +24452,7 @@

    Method List

  • -
  • +
  • #mktemp Requirement @@ -24436,7 +24460,7 @@

    Method List

  • -
  • +
  • #modification_date Mechanize::HTTP::ContentDisposition @@ -24444,7 +24468,7 @@

    Method List

  • -
  • +
  • #modifier? RuboCop::Cop::FormulaAudit::Miscellaneous @@ -24452,7 +24476,7 @@

    Method List

  • -
  • +
  • #modify_build_environment Requirement @@ -24460,7 +24484,7 @@

    Method List

  • -
  • +
  • #move_to_new_directory Migrator @@ -24468,7 +24492,7 @@

    Method List

  • -
  • +
  • #mtime CacheStoreDatabase @@ -24476,7 +24500,7 @@

    Method List

  • -
  • +
  • #multi_stanza_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -24484,7 +24508,7 @@

    Method List

  • -
  • +
  • #multiple? Homebrew::Cmd::List::Args @@ -24492,7 +24516,7 @@

    Method List

  • -
  • +
  • multiple_short_commits_exist? GitHub @@ -24500,7 +24524,7 @@

    Method List

  • -
  • +
  • #multiple_versions Homebrew::DevCmd::Bump::VersionBumpInfo @@ -24508,7 +24532,7 @@

    Method List

  • -
  • +
  • #must_succeed? SystemCommand @@ -24516,7 +24540,7 @@

    Method List

  • -
  • +
  • #n Homebrew::Cmd::Log::Args @@ -24524,7 +24548,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::Deps::Args @@ -24532,7 +24556,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::Desc::Args @@ -24540,7 +24564,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::Link::Args @@ -24548,7 +24572,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::Migrate::Args @@ -24556,7 +24580,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::GistLogs::Args @@ -24564,7 +24588,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::Autoremove::Args @@ -24572,7 +24596,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::UnlinkCmd::Args @@ -24580,7 +24604,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::CleanupCmd::Args @@ -24588,7 +24612,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::InstallCmd::Args @@ -24596,7 +24620,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::Cmd::UpgradeCmd::Args @@ -24604,7 +24628,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::PrPull::Args @@ -24612,7 +24636,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::PrUpload::Args @@ -24620,7 +24644,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::BumpCaskPr::Args @@ -24628,7 +24652,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::BumpRevision::Args @@ -24636,7 +24660,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::BumpFormulaPr::Args @@ -24644,7 +24668,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::GenerateCaskApi::Args @@ -24652,7 +24676,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::GenerateFormulaApi::Args @@ -24660,7 +24684,7 @@

    Method List

  • -
  • +
  • #n? Homebrew::DevCmd::BumpUnversionedCasks::Args @@ -24668,7 +24692,7 @@

    Method List

  • -
  • +
  • #name Keg @@ -24676,7 +24700,7 @@

    Method List

  • -
  • +
  • #name Tap @@ -24684,7 +24708,7 @@

    Method List

  • -
  • +
  • #name Debrew::Menu::Entry @@ -24692,7 +24716,7 @@

    Method List

  • -
  • +
  • #name Formula @@ -24700,7 +24724,7 @@

    Method List

  • -
  • +
  • #name Option @@ -24708,7 +24732,7 @@

    Method List

  • -
  • +
  • #name Homebrew::Service @@ -24716,7 +24740,7 @@

    Method List

  • -
  • +
  • #name Cask::DSL @@ -24724,7 +24748,7 @@

    Method List

  • -
  • +
  • #name Resource @@ -24732,7 +24756,7 @@

    Method List

  • -
  • +
  • #name CompilerSelector::Compiler @@ -24740,7 +24764,7 @@

    Method List

  • -
  • +
  • #name Formulary::FormulaLoader @@ -24748,7 +24772,7 @@

    Method List

  • -
  • +
  • #name Dependency @@ -24756,7 +24780,7 @@

    Method List

  • -
  • +
  • #name NoSuchKegError @@ -24764,7 +24788,7 @@

    Method List

  • -
  • +
  • #name FormulaOrCaskUnavailableError @@ -24772,7 +24796,7 @@

    Method List

  • -
  • +
  • #name TapFormulaAmbiguityError @@ -24780,7 +24804,7 @@

    Method List

  • -
  • +
  • #name TapUnavailableError @@ -24788,7 +24812,7 @@

    Method List

  • -
  • +
  • #name TapRemoteMismatchError @@ -24796,7 +24820,7 @@

    Method List

  • -
  • +
  • #name TapAlreadyTappedError @@ -24804,7 +24828,7 @@

    Method List

  • -
  • +
  • #name TapNoCustomRemoteError @@ -24812,7 +24836,7 @@

    Method List

  • -
  • +
  • #name PyPI::Package @@ -24820,7 +24844,7 @@

    Method List

  • -
  • +
  • #name Requirement @@ -24828,7 +24852,7 @@

    Method List

  • -
  • +
  • #name Homebrew::TapAuditor @@ -24836,7 +24860,7 @@

    Method List

  • -
  • +
  • #name SoftwareSpec @@ -24844,7 +24868,7 @@

    Method List

  • -
  • +
  • #name Bottle::Filename @@ -24852,7 +24876,7 @@

    Method List

  • -
  • +
  • #name Bottle @@ -24860,7 +24884,7 @@

    Method List

  • -
  • +
  • #name CaskDependent @@ -24868,7 +24892,7 @@

    Method List

  • -
  • +
  • #name Homebrew::FormulaCreator @@ -24876,7 +24900,7 @@

    Method List

  • -
  • +
  • #name FormulaConflict @@ -24884,7 +24908,7 @@

    Method List

  • -
  • +
  • #name Homebrew::ResourceAuditor @@ -24892,7 +24916,7 @@

    Method List

  • -
  • +
  • #name LinuxRunnerSpec @@ -24900,7 +24924,7 @@

    Method List

  • -
  • +
  • #name MacOSRunnerSpec @@ -24908,7 +24932,7 @@

    Method List

  • -
  • +
  • #name TestRunnerFormula @@ -24916,7 +24940,7 @@

    Method List

  • -
  • +
  • #name Cask::Cask @@ -24924,7 +24948,7 @@

    Method List

  • -
  • +
  • #name? Homebrew::Cmd::Desc::Args @@ -24932,7 +24956,7 @@

    Method List

  • -
  • +
  • name_from_url Homebrew::FormulaCreator @@ -24940,7 +24964,7 @@

    Method List

  • -
  • +
  • name_info Cask::Info @@ -24948,7 +24972,7 @@

    Method List

  • -
  • +
  • #name_to_option Homebrew::CLI::Parser @@ -24956,7 +24980,7 @@

    Method List

  • -
  • +
  • #named Homebrew::CLI::Args @@ -24964,7 +24988,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::Uninstall::DependentsMessage @@ -24972,7 +24996,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::CLI::Parser @@ -24980,7 +25004,7 @@

    Method List

  • -
  • +
  • named_args_type Commands @@ -24988,7 +25012,7 @@

    Method List

  • -
  • +
  • #named_args_type Homebrew::CLI::Parser @@ -24996,7 +25020,7 @@

    Method List

  • -
  • +
  • names Tap @@ -25004,7 +25028,7 @@

    Method List

  • -
  • +
  • namespace_key Formulary @@ -25012,7 +25036,7 @@

    Method List

  • -
  • +
  • needs Formula @@ -25020,7 +25044,7 @@

    Method List

  • -
  • +
  • #needs SoftwareSpec @@ -25028,7 +25052,7 @@

    Method List

  • -
  • +
  • needs_clt_installed? OS::Mac::Xcode @@ -25036,7 +25060,7 @@

    Method List

  • -
  • +
  • needs_migration? Migrator @@ -25044,7 +25068,7 @@

    Method List

  • -
  • +
  • #needs_python? Language::Python::Virtualenv @@ -25052,7 +25076,7 @@

    Method List

  • -
  • +
  • #negate_include_call? RuboCop::Cop::Homebrew::NegateInclude @@ -25060,7 +25084,7 @@

    Method List

  • -
  • +
  • #negate_normal_dependency? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -25068,7 +25092,7 @@

    Method List

  • -
  • +
  • #nested Cask::DSL::Container @@ -25076,7 +25100,7 @@

    Method List

  • -
  • +
  • nested_cache? Homebrew::Cleanup @@ -25084,7 +25108,7 @@

    Method List

  • -
  • +
  • network_access_allowed? Formula @@ -25092,7 +25116,7 @@

    Method List

  • -
  • +
  • #network_access_allowed? Formula @@ -25100,7 +25124,7 @@

    Method List

  • -
  • +
  • #new? Homebrew::DevCmd::Audit::Args @@ -25108,7 +25132,7 @@

    Method List

  • -
  • +
  • #new_cask Cask::Migrator @@ -25116,7 +25140,7 @@

    Method List

  • -
  • +
  • #new_cask? Cask::Audit @@ -25124,7 +25148,7 @@

    Method List

  • -
  • +
  • #new_cask? Homebrew::DevCmd::Audit::Args @@ -25132,7 +25156,7 @@

    Method List

  • -
  • +
  • #new_cask_path Tap @@ -25140,7 +25164,7 @@

    Method List

  • -
  • +
  • #new_cask_path CoreCaskTap @@ -25148,7 +25172,7 @@

    Method List

  • -
  • +
  • #new_cellar Migrator @@ -25156,7 +25180,7 @@

    Method List

  • -
  • +
  • #new_cellar_existed Migrator @@ -25164,7 +25188,7 @@

    Method List

  • -
  • +
  • #new_download_sha Cask::Cask @@ -25172,7 +25196,7 @@

    Method List

  • -
  • +
  • #new_formula? Homebrew::DevCmd::Audit::Args @@ -25180,7 +25204,7 @@

    Method List

  • -
  • +
  • #new_formula_available? Formula @@ -25188,7 +25212,7 @@

    Method List

  • -
  • +
  • #new_formula_path Tap @@ -25196,7 +25220,7 @@

    Method List

  • -
  • +
  • #new_formula_path CoreTap @@ -25204,7 +25228,7 @@

    Method List

  • -
  • +
  • #new_formula_problems Homebrew::FormulaAuditor @@ -25212,7 +25236,7 @@

    Method List

  • -
  • +
  • #new_issue? Homebrew::Cmd::GistLogs::Args @@ -25220,7 +25244,7 @@

    Method List

  • -
  • +
  • #new_linked_keg_record Migrator @@ -25228,7 +25252,7 @@

    Method List

  • -
  • +
  • #new_pin_record Migrator @@ -25236,7 +25260,7 @@

    Method List

  • -
  • +
  • #new_version Homebrew::DevCmd::Bump::VersionBumpInfo @@ -25244,7 +25268,7 @@

    Method List

  • -
  • +
  • #newer_only? Homebrew::DevCmd::LivecheckCmd::Args @@ -25252,7 +25276,7 @@

    Method List

  • -
  • +
  • #newname Migrator @@ -25260,7 +25284,7 @@

    Method List

  • -
  • +
  • #nice_version Homebrew::BundleVersion @@ -25268,7 +25292,7 @@

    Method List

  • -
  • +
  • #nil_or_empty? RuboCop::Cop::Homebrew::Blank @@ -25276,7 +25300,7 @@

    Method List

  • -
  • +
  • #no_all_checks? Homebrew::DevCmd::Bottle::Args @@ -25284,7 +25308,7 @@

    Method List

  • -
  • +
  • no_analytics? Homebrew::EnvConfig @@ -25292,7 +25316,7 @@

    Method List

  • -
  • +
  • #no_audit? Homebrew::DevCmd::BumpCaskPr::Args @@ -25300,7 +25324,7 @@

    Method List

  • -
  • +
  • #no_audit? Homebrew::DevCmd::BumpFormulaPr::Args @@ -25308,7 +25332,7 @@

    Method List

  • -
  • +
  • no_auto_update? Homebrew::EnvConfig @@ -25316,7 +25340,7 @@

    Method List

  • -
  • +
  • no_bootsnap? Homebrew::EnvConfig @@ -25324,7 +25348,7 @@

    Method List

  • -
  • +
  • #no_browse? Homebrew::DevCmd::BumpCaskPr::Args @@ -25332,7 +25356,7 @@

    Method List

  • -
  • +
  • #no_browse? Homebrew::DevCmd::BumpFormulaPr::Args @@ -25340,7 +25364,7 @@

    Method List

  • -
  • +
  • no_changes_message Homebrew @@ -25348,7 +25372,7 @@

    Method List

  • -
  • +
  • #no_cherry_pick? Homebrew::DevCmd::PrPull::Args @@ -25356,7 +25380,7 @@

    Method List

  • -
  • +
  • no_cleanup_formulae Homebrew::EnvConfig @@ -25364,7 +25388,7 @@

    Method List

  • -
  • +
  • no_color? Homebrew::EnvConfig @@ -25372,7 +25396,7 @@

    Method List

  • -
  • +
  • #no_commit? Homebrew::DevCmd::Bottle::Args @@ -25380,7 +25404,7 @@

    Method List

  • -
  • +
  • #no_commit? Homebrew::DevCmd::PrPull::Args @@ -25388,7 +25412,7 @@

    Method List

  • -
  • +
  • #no_commit? Homebrew::DevCmd::PrUpload::Args @@ -25396,7 +25420,7 @@

    Method List

  • -
  • +
  • #no_commit? Homebrew::DevCmd::VendorGems::Args @@ -25404,7 +25428,7 @@

    Method List

  • -
  • +
  • #no_dividers Cask::DSL::Version @@ -25412,7 +25436,7 @@

    Method List

  • -
  • +
  • no_emoji? Homebrew::EnvConfig @@ -25420,7 +25444,7 @@

    Method List

  • -
  • +
  • no_env_hints? Homebrew::EnvConfig @@ -25428,7 +25452,7 @@

    Method List

  • -
  • +
  • #no_fetch? Homebrew::DevCmd::Create::Args @@ -25436,7 +25460,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Stdenv @@ -25444,7 +25468,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Superenv @@ -25452,7 +25476,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains_support? SharedEnvExtension @@ -25460,7 +25484,7 @@

    Method List

  • -
  • +
  • #no_fork? Homebrew::DevCmd::Bump::Args @@ -25468,7 +25492,7 @@

    Method List

  • -
  • +
  • #no_fork? Homebrew::DevCmd::BumpCaskPr::Args @@ -25476,7 +25500,7 @@

    Method List

  • -
  • +
  • #no_fork? Homebrew::DevCmd::BumpFormulaPr::Args @@ -25484,7 +25508,7 @@

    Method List

  • -
  • +
  • #no_git? Homebrew::DevCmd::TapNew::Args @@ -25492,7 +25516,7 @@

    Method List

  • -
  • +
  • no_github_api? Homebrew::EnvConfig @@ -25500,7 +25524,7 @@

    Method List

  • -
  • +
  • no_insecure_redirect? Homebrew::EnvConfig @@ -25508,7 +25532,7 @@

    Method List

  • -
  • +
  • no_install_cleanup? Homebrew::EnvConfig @@ -25516,7 +25540,7 @@

    Method List

  • -
  • +
  • no_install_from_api? Homebrew::EnvConfig @@ -25524,7 +25548,7 @@

    Method List

  • -
  • +
  • no_install_upgrade? Homebrew::EnvConfig @@ -25532,7 +25556,7 @@

    Method List

  • -
  • +
  • no_installed_dependents_check? Homebrew::EnvConfig @@ -25540,7 +25564,7 @@

    Method List

  • -
  • +
  • no_message_output? Utils::Analytics @@ -25548,7 +25572,7 @@

    Method List

  • -
  • +
  • #no_named? Homebrew::CLI::Args @@ -25556,7 +25580,7 @@

    Method List

  • -
  • +
  • no_proxy Homebrew::EnvConfig @@ -25564,7 +25588,7 @@

    Method List

  • -
  • +
  • #no_pull_requests? Homebrew::DevCmd::Bump::Args @@ -25572,7 +25596,7 @@

    Method List

  • -
  • +
  • #no_rebuild? Homebrew::DevCmd::Bottle::Args @@ -25580,7 +25604,7 @@

    Method List

  • -
  • +
  • #no_simulate? Homebrew::Cmd::ReadallCmd::Args @@ -25588,7 +25612,7 @@

    Method List

  • -
  • +
  • #no_style? Homebrew::DevCmd::BumpCaskPr::Args @@ -25596,7 +25620,7 @@

    Method List

  • -
  • +
  • no_underline Tty @@ -25604,7 +25628,7 @@

    Method List

  • -
  • +
  • no_update_report_new? Homebrew::EnvConfig @@ -25612,7 +25636,7 @@

    Method List

  • -
  • +
  • #no_upload? Homebrew::DevCmd::PrPull::Args @@ -25620,7 +25644,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Stdenv @@ -25628,7 +25652,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Superenv @@ -25636,7 +25660,7 @@

    Method List

  • -
  • +
  • #no_weak_imports_support? SharedEnvExtension @@ -25644,7 +25668,7 @@

    Method List

  • -
  • +
  • #node? Homebrew::DevCmd::Create::Args @@ -25652,7 +25676,7 @@

    Method List

  • -
  • +
  • #node_equals? RuboCop::Cop::HelperFunctions @@ -25660,7 +25684,7 @@

    Method List

  • -
  • +
  • #non_bundler_gems? Homebrew::DevCmd::VendorGems::Args @@ -25668,7 +25692,7 @@

    Method List

  • -
  • +
  • #none_string Homebrew::Diagnostic::Checks @@ -25676,7 +25700,7 @@

    Method List

  • -
  • +
  • normalize_python_package PyPI @@ -25684,7 +25708,7 @@

    Method List

  • -
  • +
  • not_this_run? Utils::Analytics @@ -25692,7 +25716,7 @@

    Method List

  • -
  • +
  • npm_cache_config Language::Node @@ -25700,7 +25724,7 @@

    Method List

  • -
  • +
  • #null? Version::Token @@ -25708,7 +25732,7 @@

    Method List

  • -
  • +
  • #null? Version @@ -25716,7 +25740,7 @@

    Method List

  • -
  • +
  • #number_readable Kernel @@ -25724,7 +25748,7 @@

    Method List

  • -
  • +
  • #numeric? Version::Token @@ -25732,7 +25756,7 @@

    Method List

  • -
  • +
  • #numeric? Version::NumericToken @@ -25740,7 +25764,7 @@

    Method List

  • -
  • +
  • #odebug Kernel @@ -25748,7 +25772,7 @@

    Method List

  • -
  • +
  • #odeprecated Kernel @@ -25756,7 +25780,7 @@

    Method List

  • -
  • +
  • #odie Kernel @@ -25764,7 +25788,7 @@

    Method List

  • -
  • +
  • odie_if_defined Homebrew @@ -25772,7 +25796,7 @@

    Method List

  • -
  • +
  • #odisabled Kernel @@ -25780,7 +25804,7 @@

    Method List

  • -
  • +
  • #ofail Kernel @@ -25788,7 +25812,7 @@

    Method List

  • -
  • +
  • #offending_node RuboCop::Cop::HelperFunctions @@ -25796,7 +25820,7 @@

    Method List

  • -
  • +
  • #official? Tap @@ -25804,7 +25828,7 @@

    Method List

  • -
  • +
  • #official_external_commands Homebrew::Manpages::Variables @@ -25812,7 +25836,7 @@

    Method List

  • -
  • +
  • official_external_commands_paths Commands @@ -25820,7 +25844,7 @@

    Method List

  • -
  • +
  • #oh1 Kernel @@ -25828,7 +25852,7 @@

    Method List

  • -
  • +
  • #oh1_title Kernel @@ -25836,7 +25860,7 @@

    Method List

  • -
  • +
  • #ohai Kernel @@ -25844,7 +25868,7 @@

    Method List

  • -
  • +
  • ohai_if_defined Homebrew @@ -25852,7 +25876,7 @@

    Method List

  • -
  • +
  • #ohai_title Kernel @@ -25860,7 +25884,7 @@

    Method List

  • -
  • +
  • #old DeprecatedOption @@ -25868,7 +25892,7 @@

    Method List

  • -
  • +
  • #old_cask Cask::Migrator @@ -25876,7 +25900,7 @@

    Method List

  • -
  • +
  • #old_cellar Migrator @@ -25884,7 +25908,7 @@

    Method List

  • -
  • +
  • #old_flag DeprecatedOption @@ -25892,7 +25916,7 @@

    Method List

  • -
  • +
  • #old_full_linked_kegs Migrator @@ -25900,7 +25924,7 @@

    Method List

  • -
  • +
  • #old_installed_formulae Formula @@ -25908,7 +25932,7 @@

    Method List

  • -
  • +
  • #old_linked_kegs Migrator @@ -25916,7 +25940,7 @@

    Method List

  • -
  • +
  • #old_opt_records Migrator @@ -25924,7 +25948,7 @@

    Method List

  • -
  • +
  • #old_pin_link_record Migrator @@ -25932,7 +25956,7 @@

    Method List

  • -
  • +
  • #old_pin_record Migrator @@ -25940,7 +25964,7 @@

    Method List

  • -
  • +
  • #old_tabs Migrator @@ -25948,7 +25972,7 @@

    Method List

  • -
  • +
  • #old_tap Migrator @@ -25956,7 +25980,7 @@

    Method List

  • -
  • +
  • #old_tokens Cask::Cask @@ -25964,7 +25988,7 @@

    Method List

  • -
  • +
  • oldest_cpu Hardware @@ -25972,7 +25996,7 @@

    Method List

  • -
  • +
  • #oldname Formula @@ -25980,7 +26004,7 @@

    Method List

  • -
  • +
  • #oldname Migrator @@ -25988,7 +26012,7 @@

    Method List

  • -
  • +
  • #oldname_opt_records Keg @@ -25996,7 +26020,7 @@

    Method List

  • -
  • +
  • #oldnames Formula @@ -26004,7 +26028,7 @@

    Method List

  • -
  • +
  • oldnames_needing_migration Migrator @@ -26012,7 +26036,7 @@

    Method List

  • -
  • +
  • #on_and RuboCop::Cop::Homebrew::Present @@ -26020,7 +26044,7 @@

    Method List

  • -
  • +
  • #on_arch_conditional OnSystem::MacOSOnly @@ -26028,7 +26052,7 @@

    Method List

  • -
  • +
  • #on_block RuboCop::Cop::Cask::CaskHelp @@ -26036,7 +26060,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::Variables @@ -26044,7 +26068,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::NoOverrides @@ -26052,7 +26076,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::CaskHelp @@ -26060,7 +26084,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::StanzaGrouping @@ -26068,7 +26092,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnUrlStanza @@ -26076,7 +26100,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnDescStanza @@ -26084,7 +26108,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnSystemConditionals @@ -26092,7 +26116,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnHomepageStanza @@ -26100,7 +26124,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::Discontinued @@ -26108,7 +26132,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::StanzaOrder @@ -26116,7 +26140,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::CaskHelp @@ -26124,7 +26148,7 @@

    Method List

  • -
  • +
  • #on_class RuboCop::Cop::FormulaCop @@ -26132,7 +26156,7 @@

    Method List

  • -
  • +
  • #on_desc_stanza RuboCop::Cop::Cask::Desc @@ -26140,7 +26164,7 @@

    Method List

  • -
  • +
  • #on_homepage_stanza RuboCop::Cop::Cask::HomepageUrlTrailingSlash @@ -26148,7 +26172,7 @@

    Method List

  • -
  • +
  • #on_if RuboCop::Cop::Homebrew::Presence @@ -26156,7 +26180,7 @@

    Method List

  • -
  • +
  • #on_if RuboCop::Cop::Homebrew::SafeNavigationWithBlank @@ -26164,7 +26188,7 @@

    Method List

  • -
  • +
  • on_macos Formula @@ -26172,7 +26196,7 @@

    Method List

  • -
  • +
  • #on_macos_version_method_call RuboCop::Cop::OnSystemConditionalsHelper @@ -26180,7 +26204,7 @@

    Method List

  • -
  • +
  • #on_new_investigation RuboCop::Cop::Cask::StanzaOrder @@ -26188,7 +26212,7 @@

    Method List

  • -
  • +
  • #on_or RuboCop::Cop::Homebrew::Blank @@ -26196,7 +26220,7 @@

    Method List

  • -
  • +
  • #on_or RuboCop::Cop::Homebrew::Present @@ -26204,7 +26228,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::IORead @@ -26212,7 +26236,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::CompactBlank @@ -26220,7 +26244,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::NegateInclude @@ -26228,7 +26252,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ShellCommands @@ -26236,7 +26260,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ExecShellMetacharacters @@ -26244,7 +26268,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::MoveToExtendOS @@ -26252,7 +26276,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Cask::SharedFilelistGlob @@ -26260,7 +26284,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Cask::ArrayAlphabetization @@ -26268,7 +26292,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Cask::UninstallMethodsOrder @@ -26276,7 +26300,7 @@

    Method List

  • -
  • +
  • #on_system_block? RuboCop::AST::Node @@ -26284,7 +26308,7 @@

    Method List

  • -
  • +
  • on_system_blocks_exist? Formula @@ -26292,7 +26316,7 @@

    Method List

  • -
  • +
  • #on_system_blocks_exist? Cask::Cask @@ -26300,7 +26324,7 @@

    Method List

  • -
  • +
  • #on_system_blocks_exist? Cask::DSL @@ -26308,7 +26332,7 @@

    Method List

  • -
  • +
  • #on_system_conditional Homebrew::Service @@ -26316,7 +26340,7 @@

    Method List

  • -
  • +
  • #on_system_method_call RuboCop::Cop::OnSystemConditionalsHelper @@ -26324,7 +26348,7 @@

    Method List

  • -
  • +
  • #on_system_methods RuboCop::Cop::Cask::CaskHelp @@ -26332,7 +26356,7 @@

    Method List

  • -
  • +
  • #on_system_stanzas RuboCop::Cop::Cask::NoOverrides @@ -26340,7 +26364,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::Url @@ -26348,7 +26372,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::UrlLegacyCommaSeparators @@ -26356,7 +26380,7 @@

    Method List

  • -
  • +
  • #oneline? Homebrew::Cmd::Log::Args @@ -26364,7 +26388,7 @@

    Method List

  • -
  • +
  • #online? Cask::Audit @@ -26372,7 +26396,7 @@

    Method List

  • -
  • +
  • #online? Homebrew::DevCmd::Audit::Args @@ -26380,7 +26404,7 @@

    Method List

  • -
  • +
  • #online? Homebrew::DevCmd::Tests::Args @@ -26388,7 +26412,7 @@

    Method List

  • -
  • +
  • #online? Homebrew::DevCmd::BumpCaskPr::Args @@ -26396,7 +26420,7 @@

    Method List

  • -
  • +
  • #online? Homebrew::DevCmd::BumpFormulaPr::Args @@ -26404,7 +26428,7 @@

    Method List

  • -
  • +
  • #only Homebrew::DevCmd::Audit::Args @@ -26412,7 +26436,7 @@

    Method List

  • -
  • +
  • #only Homebrew::DevCmd::Tests::Args @@ -26420,7 +26444,7 @@

    Method List

  • -
  • +
  • #only_cops Homebrew::DevCmd::Audit::Args @@ -26428,7 +26452,7 @@

    Method List

  • -
  • +
  • #only_cops Homebrew::DevCmd::StyleCmd::Args @@ -26436,7 +26460,7 @@

    Method List

  • -
  • +
  • #only_dependencies? Homebrew::Cmd::InstallCmd::Args @@ -26444,7 +26468,7 @@

    Method List

  • -
  • +
  • #only_deps? FormulaInstaller @@ -26452,7 +26476,7 @@

    Method List

  • -
  • +
  • #only_formula_or_cask Homebrew::CLI::Args @@ -26460,7 +26484,7 @@

    Method List

  • -
  • +
  • #only_json_tab? Homebrew::DevCmd::Bottle::Args @@ -26468,7 +26492,7 @@

    Method List

  • -
  • +
  • #only_path Cask::URL::DSL @@ -26476,7 +26500,7 @@

    Method List

  • -
  • +
  • #onoe Kernel @@ -26484,7 +26508,7 @@

    Method List

  • -
  • +
  • #open? Homebrew::Cmd::SearchCmd::Args @@ -26492,7 +26516,7 @@

    Method List

  • -
  • +
  • open_graphql GitHub::API @@ -26500,7 +26524,7 @@

    Method List

  • -
  • +
  • #open_pr? Homebrew::DevCmd::Bump::Args @@ -26508,7 +26532,7 @@

    Method List

  • -
  • +
  • #open_pull_requests Homebrew::DevCmd::Bump::VersionBumpInfo @@ -26516,7 +26540,7 @@

    Method List

  • -
  • +
  • open_rest GitHub::API @@ -26524,7 +26548,7 @@

    Method List

  • -
  • +
  • #openjdk_dep_name_if_applicable Keg @@ -26532,7 +26556,7 @@

    Method List

  • -
  • +
  • #opensuse? Homebrew::Cmd::SearchCmd::Args @@ -26540,7 +26564,7 @@

    Method List

  • -
  • +
  • #opoo Kernel @@ -26548,7 +26572,7 @@

    Method List

  • -
  • +
  • opoo_if_defined Homebrew @@ -26556,7 +26580,7 @@

    Method List

  • -
  • +
  • #opt_bin Formula @@ -26564,7 +26588,7 @@

    Method List

  • -
  • +
  • #opt_bin Homebrew::Service @@ -26572,7 +26596,7 @@

    Method List

  • -
  • +
  • #opt_elisp Formula @@ -26580,7 +26604,7 @@

    Method List

  • -
  • +
  • #opt_frameworks Formula @@ -26588,7 +26612,7 @@

    Method List

  • -
  • +
  • #opt_include Formula @@ -26596,7 +26620,7 @@

    Method List

  • -
  • +
  • #opt_lib Formula @@ -26604,7 +26628,7 @@

    Method List

  • -
  • +
  • #opt_libexec Formula @@ -26612,7 +26636,7 @@

    Method List

  • -
  • +
  • #opt_libexec Homebrew::Service @@ -26620,7 +26644,7 @@

    Method List

  • -
  • +
  • #opt_pkgshare Formula @@ -26628,7 +26652,7 @@

    Method List

  • -
  • +
  • #opt_pkgshare Homebrew::Service @@ -26636,7 +26660,7 @@

    Method List

  • -
  • +
  • #opt_prefix Formula @@ -26644,7 +26668,7 @@

    Method List

  • -
  • +
  • #opt_prefix Homebrew::Service @@ -26652,7 +26676,7 @@

    Method List

  • -
  • +
  • #opt_record Keg @@ -26660,7 +26684,7 @@

    Method List

  • -
  • +
  • #opt_sbin Formula @@ -26668,7 +26692,7 @@

    Method List

  • -
  • +
  • #opt_sbin Homebrew::Service @@ -26676,7 +26700,7 @@

    Method List

  • -
  • +
  • #opt_share Formula @@ -26684,7 +26708,7 @@

    Method List

  • -
  • +
  • optimization_flags Hardware::CPU @@ -26692,7 +26716,7 @@

    Method List

  • -
  • +
  • option Formula @@ -26700,7 +26724,7 @@

    Method List

  • -
  • +
  • #option SoftwareSpec @@ -26708,7 +26732,7 @@

    Method List

  • -
  • +
  • option Formatter @@ -26716,7 +26740,7 @@

    Method List

  • -
  • +
  • option_conflicts Commands @@ -26724,7 +26748,7 @@

    Method List

  • -
  • +
  • #option_defined? Formula @@ -26732,7 +26756,7 @@

    Method List

  • -
  • +
  • #option_defined? SoftwareSpec @@ -26740,7 +26764,7 @@

    Method List

  • -
  • +
  • #option_description Homebrew::CLI::Parser @@ -26748,7 +26772,7 @@

    Method List

  • -
  • +
  • #option_names Dependency @@ -26756,7 +26780,7 @@

    Method List

  • -
  • +
  • #option_names Requirement @@ -26764,7 +26788,7 @@

    Method List

  • -
  • +
  • #option_tags Dependable @@ -26772,7 +26796,7 @@

    Method List

  • -
  • +
  • #option_to_description Homebrew::CLI::Parser @@ -26780,7 +26804,7 @@

    Method List

  • -
  • +
  • option_to_name Homebrew::CLI::Parser @@ -26788,7 +26812,7 @@

    Method List

  • -
  • +
  • #option_to_name Homebrew::CLI::Parser @@ -26796,7 +26820,7 @@

    Method List

  • -
  • +
  • #optional Dependencies @@ -26804,7 +26828,7 @@

    Method List

  • -
  • +
  • #optional? Dependable @@ -26812,7 +26836,7 @@

    Method List

  • -
  • +
  • #optional_dependency? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -26820,7 +26844,7 @@

    Method List

  • -
  • +
  • #options Dependable @@ -26828,7 +26852,7 @@

    Method List

  • -
  • +
  • #options BuildError @@ -26836,7 +26860,7 @@

    Method List

  • -
  • +
  • #options SoftwareSpec @@ -26844,7 +26868,7 @@

    Method List

  • -
  • +
  • #options FormulaInstaller @@ -26852,7 +26876,7 @@

    Method List

  • -
  • +
  • #options Formula @@ -26860,7 +26884,7 @@

    Method List

  • -
  • +
  • #options_only Homebrew::CLI::Args @@ -26868,7 +26892,7 @@

    Method List

  • -
  • +
  • #optlink Keg @@ -26876,7 +26900,7 @@

    Method List

  • -
  • +
  • #optlinked? Keg @@ -26884,7 +26908,7 @@

    Method List

  • -
  • +
  • #optlinked? Formula @@ -26892,7 +26916,7 @@

    Method List

  • -
  • +
  • origin SystemConfig @@ -26900,7 +26924,7 @@

    Method List

  • -
  • +
  • #origin_branch_name GitRepository @@ -26908,7 +26932,7 @@

    Method List

  • -
  • +
  • #origin_has_branch? GitRepository @@ -26916,7 +26940,7 @@

    Method List

  • -
  • +
  • #origin_url GitRepository @@ -26924,7 +26948,7 @@

    Method List

  • -
  • +
  • #origin_url= GitRepository @@ -26932,7 +26956,7 @@

    Method List

  • -
  • +
  • os Homebrew::SimulateSystem @@ -26940,7 +26964,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Livecheck::Strategy::Sparkle::Item @@ -26948,7 +26972,7 @@

    Method List

  • -
  • +
  • #os Homebrew::CLI::Args @@ -26956,7 +26980,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Cmd::Deps::Args @@ -26964,7 +26988,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Cmd::Cache::Args @@ -26972,7 +26996,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Cmd::FetchCmd::Args @@ -26980,7 +27004,7 @@

    Method List

  • -
  • +
  • #os Homebrew::DevCmd::Audit::Args @@ -26988,7 +27012,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Cmd::ReadallCmd::Args @@ -26996,7 +27020,7 @@

    Method List

  • -
  • +
  • #os_arch_combinations Homebrew::CLI::Args @@ -27004,7 +27028,7 @@

    Method List

  • -
  • +
  • #os_check? RuboCop::Cop::Homebrew::MoveToExtendOS @@ -27012,7 +27036,7 @@

    Method List

  • -
  • +
  • os_condition_met? OnSystem @@ -27020,7 +27044,7 @@

    Method List

  • -
  • +
  • os_version OS::Linux @@ -27028,7 +27052,7 @@

    Method List

  • -
  • +
  • #outdated? Formula @@ -27036,7 +27060,7 @@

    Method List

  • -
  • +
  • #outdated? Cask::Cask @@ -27044,7 +27068,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::Xcode @@ -27052,7 +27076,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::CLT @@ -27060,7 +27084,7 @@

    Method List

  • -
  • +
  • #outdated_download_sha? Cask::Cask @@ -27068,7 +27092,7 @@

    Method List

  • -
  • +
  • #outdated_info Cask::Cask @@ -27076,7 +27100,7 @@

    Method List

  • -
  • +
  • outdated_kegs Homebrew::Upgrade @@ -27084,7 +27108,7 @@

    Method List

  • -
  • +
  • #outdated_release? MacOSVersion @@ -27092,7 +27116,7 @@

    Method List

  • -
  • +
  • #outdated_version Cask::Cask @@ -27100,7 +27124,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::DeveloperDependentsMessage @@ -27108,7 +27132,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::NondeveloperDependentsMessage @@ -27116,7 +27140,7 @@

    Method List

  • -
  • +
  • #output ErrorDuringExecution @@ -27124,7 +27148,7 @@

    Method List

  • -
  • +
  • output Utils::Analytics @@ -27132,7 +27156,7 @@

    Method List

  • -
  • +
  • output_analytics Utils::Analytics @@ -27140,7 +27164,7 @@

    Method List

  • -
  • +
  • output_github_packages_downloads Utils::Analytics @@ -27148,7 +27172,7 @@

    Method List

  • -
  • +
  • overridable_java_home_env Language::Java @@ -27156,7 +27180,7 @@

    Method List

  • -
  • +
  • #overwrite? FormulaInstaller @@ -27164,7 +27188,7 @@

    Method List

  • -
  • +
  • #overwrite? Homebrew::Cmd::Link::Args @@ -27172,7 +27196,7 @@

    Method List

  • -
  • +
  • #overwrite? Homebrew::Cmd::InstallCmd::Args @@ -27180,7 +27204,7 @@

    Method List

  • -
  • +
  • #overwrite? Homebrew::Cmd::UpgradeCmd::Args @@ -27188,7 +27212,7 @@

    Method List

  • -
  • +
  • #owner Resource @@ -27196,7 +27220,7 @@

    Method List

  • -
  • +
  • #owner SoftwareSpec @@ -27204,7 +27228,7 @@

    Method List

  • -
  • +
  • #owner Homebrew::ResourceAuditor @@ -27212,7 +27236,7 @@

    Method List

  • -
  • +
  • #owner= ExternalPatch @@ -27220,7 +27244,7 @@

    Method List

  • -
  • +
  • owner_uid Homebrew @@ -27228,7 +27252,7 @@

    Method List

  • -
  • +
  • #p? Homebrew::Cmd::Log::Args @@ -27236,7 +27260,7 @@

    Method List

  • -
  • +
  • #p? Homebrew::Cmd::Leaves::Args @@ -27244,7 +27268,7 @@

    Method List

  • -
  • +
  • #p? Homebrew::Cmd::GistLogs::Args @@ -27252,7 +27276,7 @@

    Method List

  • -
  • +
  • #p? Homebrew::DevCmd::UpdatePythonResources::Args @@ -27260,7 +27284,7 @@

    Method List

  • -
  • +
  • pack_for_installation Language::Node @@ -27268,7 +27292,7 @@

    Method List

  • -
  • +
  • #package_count Messages @@ -27276,7 +27300,7 @@

    Method List

  • -
  • +
  • #package_id Cask::Pkg @@ -27284,7 +27308,7 @@

    Method List

  • -
  • +
  • #package_installed Messages @@ -27292,7 +27316,7 @@

    Method List

  • -
  • +
  • #package_name Homebrew::DevCmd::UpdatePythonResources::Args @@ -27300,7 +27324,7 @@

    Method List

  • -
  • +
  • package_or_resource_name Homebrew::Livecheck @@ -27308,7 +27332,7 @@

    Method List

  • -
  • +
  • package_or_resource_skip Homebrew::Livecheck::SkipConditions @@ -27316,7 +27340,7 @@

    Method List

  • -
  • +
  • page_content Homebrew::Livecheck::Strategy @@ -27324,7 +27348,7 @@

    Method List

  • -
  • +
  • page_headers Homebrew::Livecheck::Strategy @@ -27332,7 +27356,7 @@

    Method List

  • -
  • +
  • paginate_graphql GitHub::API @@ -27340,7 +27364,7 @@

    Method List

  • -
  • +
  • paginate_rest GitHub::API @@ -27348,7 +27372,7 @@

    Method List

  • -
  • +
  • #pair_node RuboCop::Cask::AST::CaskHeader @@ -27356,7 +27380,7 @@

    Method List

  • -
  • +
  • #pairs Cask::DSL::Container @@ -27364,7 +27388,7 @@

    Method List

  • -
  • +
  • #parameters RuboCop::Cop::HelperFunctions @@ -27372,7 +27396,7 @@

    Method List

  • -
  • +
  • #parameters Mechanize::HTTP::ContentDisposition @@ -27380,7 +27404,7 @@

    Method List

  • -
  • +
  • #parameters_passed? RuboCop::Cop::HelperFunctions @@ -27388,7 +27412,7 @@

    Method List

  • -
  • +
  • parent Utils::Shell @@ -27396,7 +27420,7 @@

    Method List

  • -
  • +
  • #parent Homebrew::CLI::NamedArgs @@ -27404,7 +27428,7 @@

    Method List

  • -
  • +
  • parse Locale @@ -27412,7 +27436,7 @@

    Method List

  • -
  • +
  • parse Version @@ -27420,7 +27444,7 @@

    Method List

  • -
  • +
  • #parse Homebrew::CLI::Parser @@ -27428,7 +27452,7 @@

    Method List

  • -
  • +
  • parse PkgVersion @@ -27436,7 +27460,7 @@

    Method List

  • -
  • +
  • #parse Version::Parser @@ -27444,7 +27468,7 @@

    Method List

  • -
  • +
  • #parse Version::RegexParser @@ -27452,7 +27476,7 @@

    Method List

  • -
  • +
  • #parse Mechanize::HTTP::ContentDispositionParser @@ -27460,7 +27484,7 @@

    Method List

  • -
  • +
  • parse_api_response Repology @@ -27468,7 +27492,7 @@

    Method List

  • -
  • +
  • parse_author! Utils @@ -27476,7 +27500,7 @@

    Method List

  • -
  • +
  • #parse_cask_version Homebrew::BumpVersionParser @@ -27484,7 +27508,7 @@

    Method List

  • -
  • +
  • #parse_cron Homebrew::Service @@ -27492,7 +27516,7 @@

    Method List

  • -
  • +
  • parse_curl_output Utils::Curl @@ -27500,7 +27524,7 @@

    Method List

  • -
  • +
  • parse_json Homebrew::Livecheck::Strategy::Json @@ -27508,7 +27532,7 @@

    Method List

  • -
  • +
  • #parse_json_files Homebrew::DevCmd::Bottle @@ -27516,7 +27540,7 @@

    Method List

  • -
  • +
  • parse_license_expression SPDX @@ -27524,7 +27548,7 @@

    Method List

  • -
  • +
  • #parse_remaining Homebrew::CLI::Parser @@ -27532,7 +27556,7 @@

    Method List

  • -
  • +
  • #parse_url Homebrew::FormulaCreator @@ -27540,7 +27564,7 @@

    Method List

  • -
  • +
  • #parse_variable Homebrew::Manpages::Parser::Ronn @@ -27548,7 +27572,7 @@

    Method List

  • -
  • +
  • #parse_version Homebrew::BumpVersionParser @@ -27556,7 +27580,7 @@

    Method List

  • -
  • +
  • parse_xml Homebrew::Livecheck::Strategy::Xml @@ -27564,7 +27588,7 @@

    Method List

  • -
  • +
  • parse_yaml Homebrew::Livecheck::Strategy::Yaml @@ -27572,7 +27596,7 @@

    Method List

  • -
  • +
  • #parsed_homebrew_version Tab @@ -27580,7 +27604,7 @@

    Method List

  • -
  • +
  • parser Homebrew::AbstractCommand @@ -27588,7 +27612,7 @@

    Method List

  • -
  • +
  • pat_blurb GitHub @@ -27596,7 +27620,7 @@

    Method List

  • -
  • +
  • #patch Debrew::Formula @@ -27604,7 +27628,7 @@

    Method List

  • -
  • +
  • patch Formula @@ -27612,7 +27636,7 @@

    Method List

  • -
  • +
  • #patch Version @@ -27620,7 +27644,7 @@

    Method List

  • -
  • +
  • #patch Resource @@ -27628,7 +27652,7 @@

    Method List

  • -
  • +
  • #patch SoftwareSpec @@ -27636,7 +27660,7 @@

    Method List

  • -
  • +
  • #patch Cask::DSL::Version @@ -27644,7 +27668,7 @@

    Method List

  • -
  • +
  • #patch PkgVersion @@ -27652,7 +27676,7 @@

    Method List

  • -
  • +
  • #patch! ELFShim @@ -27660,7 +27684,7 @@

    Method List

  • -
  • +
  • #patch? Homebrew::Cmd::Log::Args @@ -27668,7 +27692,7 @@

    Method List

  • -
  • +
  • #patch? Homebrew::DevCmd::Unpack::Args @@ -27676,7 +27700,7 @@

    Method List

  • -
  • +
  • #patch_data? RuboCop::Cop::FormulaAudit::Patches @@ -27684,7 +27708,7 @@

    Method List

  • -
  • +
  • #patch_files Resource::PatchResource @@ -27692,7 +27716,7 @@

    Method List

  • -
  • +
  • #patchelf_patcher ELFShim @@ -27700,7 +27724,7 @@

    Method List

  • -
  • +
  • #patches Resource @@ -27708,7 +27732,7 @@

    Method List

  • -
  • +
  • #patches SoftwareSpec @@ -27716,7 +27740,7 @@

    Method List

  • -
  • +
  • #path Tap @@ -27724,7 +27748,7 @@

    Method List

  • -
  • +
  • #path DATAPatch @@ -27732,7 +27756,7 @@

    Method List

  • -
  • +
  • #path Formula @@ -27740,7 +27764,7 @@

    Method List

  • -
  • +
  • path Commands @@ -27748,7 +27772,7 @@

    Method List

  • -
  • +
  • #path Formulary::FormulaLoader @@ -27756,7 +27780,7 @@

    Method List

  • -
  • +
  • #path Formulary::FromTapLoader @@ -27764,7 +27788,7 @@

    Method List

  • -
  • +
  • path Formulary @@ -27772,7 +27796,7 @@

    Method List

  • -
  • +
  • #path LockFile @@ -27780,7 +27804,7 @@

    Method List

  • -
  • +
  • path Utils::Git @@ -27788,7 +27812,7 @@

    Method List

  • -
  • +
  • path Cask::Cache @@ -27796,7 +27820,7 @@

    Method List

  • -
  • +
  • #path FormulaClassUnavailableErrorModule @@ -27804,7 +27828,7 @@

    Method List

  • -
  • +
  • #path OS::Mac::SDK @@ -27812,7 +27836,7 @@

    Method List

  • -
  • +
  • #path FormulaPin @@ -27820,7 +27844,7 @@

    Method List

  • -
  • +
  • #path Homebrew::TapAuditor @@ -27828,7 +27852,7 @@

    Method List

  • -
  • +
  • path Cask::Caskroom @@ -27836,7 +27860,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskQuarantineError @@ -27844,7 +27868,7 @@

    Method List

  • -
  • +
  • #path UnpackStrategy @@ -27852,7 +27876,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskLoader::FromPathLoader @@ -27860,7 +27884,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskLoader::FromAPILoader @@ -27868,7 +27892,7 @@

    Method List

  • -
  • +
  • path Cask::CaskLoader @@ -27876,7 +27900,7 @@

    Method List

  • -
  • +
  • #path Cask::Artifact::Pkg @@ -27884,7 +27908,7 @@

    Method List

  • -
  • +
  • #path Cask::Artifact::Installer @@ -27892,7 +27916,7 @@

    Method List

  • -
  • +
  • path_occupied? Cask::Utils @@ -27900,7 +27924,7 @@

    Method List

  • -
  • +
  • path_relative_to_workspace GitHub::Actions::Annotation @@ -27908,7 +27932,7 @@

    Method List

  • -
  • +
  • path_resolved_basename Utils::Bottles @@ -27916,7 +27940,7 @@

    Method List

  • -
  • +
  • #path_starts_with? RuboCop::Cop::FormulaAuditStrict::Text @@ -27924,7 +27948,7 @@

    Method List

  • -
  • +
  • path_to_regex Keg::Relocation @@ -27932,7 +27956,7 @@

    Method List

  • -
  • +
  • #pathname GitRepository @@ -27940,7 +27964,7 @@

    Method List

  • -
  • +
  • #paths Kernel @@ -27948,7 +27972,7 @@

    Method List

  • -
  • +
  • perform_build_from_source_checks Homebrew::Install @@ -27956,7 +27980,7 @@

    Method List

  • -
  • +
  • perform_preinstall_checks Homebrew::Install @@ -27964,7 +27988,7 @@

    Method List

  • -
  • +
  • periodic_clean! Homebrew::Cleanup @@ -27972,7 +27996,7 @@

    Method List

  • -
  • +
  • periodic_clean_due? Homebrew::Cleanup @@ -27980,7 +28004,7 @@

    Method List

  • -
  • +
  • #perl? Homebrew::DevCmd::Create::Args @@ -27988,7 +28012,7 @@

    Method List

  • -
  • +
  • permission GitHub @@ -27996,7 +28020,7 @@

    Method List

  • -
  • +
  • #permit_arch_flags Superenv @@ -28004,7 +28028,7 @@

    Method List

  • -
  • +
  • #permit_arch_flags SharedEnvExtension @@ -28012,7 +28036,7 @@

    Method List

  • -
  • +
  • physical_cpu_arm64? Hardware::CPU @@ -28020,7 +28044,7 @@

    Method List

  • -
  • +
  • #pin FormulaPin @@ -28028,7 +28052,7 @@

    Method List

  • -
  • +
  • #pin Formula @@ -28036,7 +28060,7 @@

    Method List

  • -
  • +
  • #pin_at FormulaPin @@ -28044,7 +28068,7 @@

    Method List

  • -
  • +
  • #pinnable? FormulaPin @@ -28052,7 +28076,7 @@

    Method List

  • -
  • +
  • #pinnable? Formula @@ -28060,7 +28084,7 @@

    Method List

  • -
  • +
  • #pinned? Migrator @@ -28068,7 +28092,7 @@

    Method List

  • -
  • +
  • #pinned? FormulaPin @@ -28076,7 +28100,7 @@

    Method List

  • -
  • +
  • #pinned? Formula @@ -28084,7 +28108,7 @@

    Method List

  • -
  • +
  • #pinned? Homebrew::Cmd::List::Args @@ -28092,7 +28116,7 @@

    Method List

  • -
  • +
  • #pinned_version FormulaPin @@ -28100,7 +28124,7 @@

    Method List

  • -
  • +
  • #pinned_version Formula @@ -28108,7 +28132,7 @@

    Method List

  • -
  • +
  • pip_index_url Homebrew::EnvConfig @@ -28116,7 +28140,7 @@

    Method List

  • -
  • +
  • #pip_install Language::Python::Virtualenv::Virtualenv @@ -28124,7 +28148,7 @@

    Method List

  • -
  • +
  • #pip_install_and_link Language::Python::Virtualenv::Virtualenv @@ -28132,7 +28156,7 @@

    Method List

  • -
  • +
  • pip_report PyPI @@ -28140,7 +28164,7 @@

    Method List

  • -
  • +
  • pip_report_to_packages PyPI @@ -28148,7 +28172,7 @@

    Method List

  • -
  • +
  • #pipe_output Homebrew::Assertions @@ -28156,7 +28180,7 @@

    Method List

  • -
  • +
  • #pkg_version Formula @@ -28164,7 +28188,7 @@

    Method List

  • -
  • +
  • #pkg_version FormulaInfo @@ -28172,7 +28196,7 @@

    Method List

  • -
  • +
  • #pkgetc Formula @@ -28180,7 +28204,7 @@

    Method List

  • -
  • +
  • #pkgs Homebrew::UnversionedCaskChecker @@ -28188,7 +28212,7 @@

    Method List

  • -
  • +
  • #pkgshare Formula @@ -28196,7 +28220,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_all Cask::Pkg @@ -28204,7 +28228,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_dirs Cask::Pkg @@ -28212,7 +28236,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_files Cask::Pkg @@ -28220,7 +28244,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_specials Cask::Pkg @@ -28228,7 +28252,7 @@

    Method List

  • -
  • +
  • pkgutil_info OS::Mac @@ -28236,7 +28260,7 @@

    Method List

  • -
  • +
  • #plain? Homebrew::Cmd::Env::Args @@ -28244,7 +28268,7 @@

    Method List

  • -
  • +
  • #platform GitHubRunner @@ -28252,7 +28276,7 @@

    Method List

  • -
  • +
  • platform_cache Formulary @@ -28260,7 +28284,7 @@

    Method List

  • -
  • +
  • #plc Homebrew::Manpages::Variables @@ -28268,7 +28292,7 @@

    Method List

  • -
  • +
  • #please_create_pull_requests Homebrew::Diagnostic::Checks @@ -28276,7 +28300,7 @@

    Method List

  • -
  • +
  • #plist Formula @@ -28284,7 +28308,7 @@

    Method List

  • -
  • +
  • #plist SystemCommand::Result @@ -28292,7 +28316,7 @@

    Method List

  • -
  • +
  • #plist_installed? Keg @@ -28300,7 +28324,7 @@

    Method List

  • -
  • +
  • #plist_name Formula @@ -28308,7 +28332,7 @@

    Method List

  • -
  • +
  • #plist_name Homebrew::Service @@ -28316,7 +28340,7 @@

    Method List

  • -
  • +
  • pluralize Utils @@ -28324,7 +28348,7 @@

    Method List

  • -
  • +
  • popen Utils @@ -28332,7 +28356,7 @@

    Method List

  • -
  • +
  • popen_read Utils @@ -28340,7 +28364,7 @@

    Method List

  • -
  • +
  • popen_write Utils @@ -28348,7 +28372,7 @@

    Method List

  • -
  • +
  • #populate_from_api! Cask::Cask @@ -28356,7 +28380,7 @@

    Method List

  • -
  • +
  • #populate_if_empty! DescriptionCacheStore @@ -28364,7 +28388,7 @@

    Method List

  • -
  • +
  • #populate_if_empty! CaskDescriptionCacheStore @@ -28372,7 +28396,7 @@

    Method List

  • -
  • +
  • #post_install Formula @@ -28380,7 +28404,7 @@

    Method List

  • -
  • +
  • #post_install FormulaInstaller @@ -28388,7 +28412,7 @@

    Method List

  • -
  • +
  • #post_install_formula_path FormulaInstaller @@ -28396,7 +28420,7 @@

    Method List

  • -
  • +
  • #post_uninstall_phase Cask::Artifact::Uninstall @@ -28404,7 +28428,7 @@

    Method List

  • -
  • +
  • #potential_formula_dirs Tap @@ -28412,7 +28436,7 @@

    Method List

  • -
  • +
  • #pour FormulaInstaller @@ -28420,7 +28444,7 @@

    Method List

  • -
  • +
  • #pour_bottle? Formula @@ -28428,7 +28452,7 @@

    Method List

  • -
  • +
  • pour_bottle? Formula @@ -28436,7 +28460,7 @@

    Method List

  • -
  • +
  • #pour_bottle? FormulaInstaller @@ -28444,7 +28468,7 @@

    Method List

  • -
  • +
  • #pour_bottle_check_unsatisfied_reason Formula @@ -28452,7 +28476,7 @@

    Method List

  • -
  • +
  • #poured_from_bottle Tab @@ -28460,7 +28484,7 @@

    Method List

  • -
  • +
  • ppc32? Hardware::CPU @@ -28468,7 +28492,7 @@

    Method List

  • -
  • +
  • ppc64? Hardware::CPU @@ -28476,7 +28500,7 @@

    Method List

  • -
  • +
  • #ppc64? MachOShim @@ -28484,7 +28508,7 @@

    Method List

  • -
  • +
  • ppc64le? Hardware::CPU @@ -28492,7 +28516,7 @@

    Method List

  • -
  • +
  • #ppc7400? MachOShim @@ -28500,7 +28524,7 @@

    Method List

  • -
  • +
  • ppc? Hardware::CPU @@ -28508,7 +28532,7 @@

    Method List

  • -
  • +
  • preferred Utils::Shell @@ -28516,7 +28540,7 @@

    Method List

  • -
  • +
  • preferred_gcc CompilerSelector @@ -28524,7 +28548,7 @@

    Method List

  • -
  • +
  • #preferred_header_str RuboCop::Cask::AST::CaskHeader @@ -28532,7 +28556,7 @@

    Method List

  • -
  • +
  • preferred_path Utils::Shell @@ -28540,7 +28564,7 @@

    Method List

  • -
  • +
  • preferred_perl_version OS::Mac @@ -28548,7 +28572,7 @@

    Method List

  • -
  • +
  • #prefix Formula @@ -28556,7 +28580,7 @@

    Method List

  • -
  • +
  • prefix OS::Mac::Xcode @@ -28564,7 +28588,7 @@

    Method List

  • -
  • +
  • #prefix_linked? Formula @@ -28572,7 +28596,7 @@

    Method List

  • -
  • +
  • #prefix_path RuboCop::Cop::FormulaAudit::Text @@ -28580,7 +28604,7 @@

    Method List

  • -
  • +
  • #prefpanedir Homebrew::Cmd::Reinstall::Args @@ -28588,7 +28612,7 @@

    Method List

  • -
  • +
  • #prefpanedir Homebrew::Cmd::InstallCmd::Args @@ -28596,7 +28620,7 @@

    Method List

  • -
  • +
  • #prefpanedir Homebrew::Cmd::UpgradeCmd::Args @@ -28604,7 +28628,7 @@

    Method List

  • -
  • +
  • #preinstall? Homebrew::Cmd::UpdateReport::Args @@ -28612,7 +28636,7 @@

    Method List

  • -
  • +
  • #prelude FormulaInstaller @@ -28620,7 +28644,7 @@

    Method List

  • -
  • +
  • #prepare_codesign_writable_files Keg @@ -28628,7 +28652,7 @@

    Method List

  • -
  • +
  • #prepare_debug_symbols Keg @@ -28636,7 +28660,7 @@

    Method List

  • -
  • +
  • #prepare_patches Resource @@ -28644,7 +28668,7 @@

    Method List

  • -
  • +
  • #prepare_relocation_to_locations Keg @@ -28652,7 +28676,7 @@

    Method List

  • -
  • +
  • #prepare_relocation_to_placeholders Keg @@ -28660,7 +28684,7 @@

    Method List

  • -
  • +
  • #prepend PATH @@ -28668,7 +28692,7 @@

    Method List

  • -
  • +
  • #prepend SharedEnvExtension @@ -28676,7 +28700,7 @@

    Method List

  • -
  • +
  • #prepend_create_path SharedEnvExtension @@ -28684,7 +28708,7 @@

    Method List

  • -
  • +
  • #prepend_path SharedEnvExtension @@ -28692,7 +28716,7 @@

    Method List

  • -
  • +
  • prepend_path_in_profile Utils::Shell @@ -28700,7 +28724,7 @@

    Method List

  • -
  • +
  • preprocess_url Homebrew::Livecheck @@ -28708,7 +28732,7 @@

    Method List

  • -
  • +
  • #prerelease? MacOSVersion @@ -28716,7 +28740,7 @@

    Method List

  • -
  • +
  • #presence Object @@ -28724,7 +28748,7 @@

    Method List

  • -
  • +
  • #present? Object @@ -28732,7 +28756,7 @@

    Method List

  • -
  • +
  • #present? NilClass @@ -28740,7 +28764,7 @@

    Method List

  • -
  • +
  • #present? FalseClass @@ -28748,7 +28772,7 @@

    Method List

  • -
  • +
  • #present? TrueClass @@ -28756,7 +28780,7 @@

    Method List

  • -
  • +
  • #present? Array @@ -28764,7 +28788,7 @@

    Method List

  • -
  • +
  • #present? Hash @@ -28772,7 +28796,7 @@

    Method List

  • -
  • +
  • #present? Symbol @@ -28780,7 +28804,7 @@

    Method List

  • -
  • +
  • #present? String @@ -28788,7 +28812,7 @@

    Method List

  • -
  • +
  • #present? Numeric @@ -28796,7 +28820,7 @@

    Method List

  • -
  • +
  • #present? Time @@ -28804,7 +28828,7 @@

    Method List

  • -
  • +
  • #pretty_duration Kernel @@ -28812,7 +28836,7 @@

    Method List

  • -
  • +
  • #pretty_installed Kernel @@ -28820,7 +28844,7 @@

    Method List

  • -
  • +
  • #pretty_name MacOSVersion @@ -28828,7 +28852,7 @@

    Method List

  • -
  • +
  • #pretty_outdated Kernel @@ -28836,7 +28860,7 @@

    Method List

  • -
  • +
  • #pretty_ratelimit_reset GitHub::API::RateLimitExceededError @@ -28844,7 +28868,7 @@

    Method List

  • -
  • +
  • #pretty_uninstalled Kernel @@ -28852,7 +28876,7 @@

    Method List

  • -
  • +
  • #previously_fetched_formula FormulaInstaller @@ -28860,7 +28884,7 @@

    Method List

  • -
  • +
  • #primary_container Cask::Installer @@ -28868,7 +28892,7 @@

    Method List

  • -
  • +
  • #print Descriptions @@ -28876,7 +28900,7 @@

    Method List

  • -
  • +
  • print_backtrace_message Utils::Backtrace @@ -28884,7 +28908,7 @@

    Method List

  • -
  • +
  • print_dry_run_dependencies Homebrew::Install @@ -28892,7 +28916,7 @@

    Method List

  • -
  • +
  • print_latest_version Homebrew::Livecheck @@ -28900,7 +28924,7 @@

    Method List

  • -
  • +
  • #print_only? Homebrew::DevCmd::UpdatePythonResources::Args @@ -28908,7 +28932,7 @@

    Method List

  • -
  • +
  • #print_path? Homebrew::DevCmd::Edit::Args @@ -28916,7 +28940,7 @@

    Method List

  • -
  • +
  • print_pull_requests_matching GitHub @@ -28924,7 +28948,7 @@

    Method List

  • -
  • +
  • print_resources_info Homebrew::Livecheck @@ -28932,7 +28956,7 @@

    Method List

  • -
  • +
  • print_skip_information Homebrew::Livecheck::SkipConditions @@ -28940,7 +28964,7 @@

    Method List

  • -
  • +
  • print_upgrade_message Homebrew::Upgrade @@ -28948,7 +28972,7 @@

    Method List

  • -
  • +
  • #private? Tap @@ -28956,7 +28980,7 @@

    Method List

  • -
  • +
  • #private? Homebrew::Cmd::GistLogs::Args @@ -28964,7 +28988,7 @@

    Method List

  • -
  • +
  • private_repo? GitHub @@ -28972,7 +28996,7 @@

    Method List

  • -
  • +
  • #problem Homebrew::TapAuditor @@ -28980,7 +29004,7 @@

    Method List

  • -
  • +
  • #problem Homebrew::ResourceAuditor @@ -28988,7 +29012,7 @@

    Method List

  • -
  • +
  • #problem RuboCop::Cop::HelperFunctions @@ -28996,7 +29020,7 @@

    Method List

  • -
  • +
  • #problem_if_output Homebrew::FormulaAuditor @@ -29004,7 +29028,7 @@

    Method List

  • -
  • +
  • #problem_if_output FormulaInstaller @@ -29012,7 +29036,7 @@

    Method List

  • -
  • +
  • #problem_if_output FormulaCellarChecks @@ -29020,7 +29044,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::TapAuditor @@ -29028,7 +29052,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::FormulaAuditor @@ -29036,7 +29060,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::ResourceAuditor @@ -29044,7 +29068,7 @@

    Method List

  • -
  • +
  • #process Utils::AST::FormulaAST @@ -29052,7 +29076,7 @@

    Method List

  • -
  • +
  • process_source Utils::AST @@ -29060,7 +29084,7 @@

    Method List

  • -
  • +
  • process_spec Version::RegexParser @@ -29068,7 +29092,7 @@

    Method List

  • -
  • +
  • process_spec Version::UrlParser @@ -29076,7 +29100,7 @@

    Method List

  • -
  • +
  • process_spec Version::StemParser @@ -29084,7 +29108,7 @@

    Method List

  • -
  • +
  • #process_type Homebrew::Service @@ -29092,7 +29116,7 @@

    Method List

  • -
  • +
  • #processed_options Homebrew::CLI::Parser @@ -29100,7 +29124,7 @@

    Method List

  • -
  • +
  • profile Utils::Shell @@ -29108,7 +29132,7 @@

    Method List

  • -
  • +
  • #profile Homebrew::DevCmd::Tests::Args @@ -29116,7 +29140,7 @@

    Method List

  • -
  • +
  • #prompt Debrew::Menu @@ -29124,7 +29148,7 @@

    Method List

  • -
  • +
  • propagate Cask::Quarantine @@ -29132,7 +29156,7 @@

    Method List

  • -
  • +
  • #provided_by_macos? KegOnlyReason @@ -29140,7 +29164,7 @@

    Method List

  • -
  • +
  • provides_sdk? OS::Mac::CLT @@ -29148,7 +29172,7 @@

    Method List

  • -
  • +
  • prune Dependency @@ -29156,7 +29180,7 @@

    Method List

  • -
  • +
  • prune Requirement @@ -29164,7 +29188,7 @@

    Method List

  • -
  • +
  • #prune Homebrew::Cmd::CleanupCmd::Args @@ -29172,7 +29196,7 @@

    Method List

  • -
  • +
  • prune? Homebrew::Cleanup @@ -29180,7 +29204,7 @@

    Method List

  • -
  • +
  • prune? Requirement @@ -29188,7 +29212,7 @@

    Method List

  • -
  • +
  • #prune? Homebrew::Cleanup @@ -29196,7 +29220,7 @@

    Method List

  • -
  • +
  • #prune_from_option? Dependable @@ -29204,7 +29228,7 @@

    Method List

  • -
  • +
  • #prune_if_build_and_not_dependent? Dependable @@ -29212,7 +29236,7 @@

    Method List

  • -
  • +
  • #prune_prefix? Homebrew::Cmd::CleanupCmd::Args @@ -29220,7 +29244,7 @@

    Method List

  • -
  • +
  • #prune_prefix_symlinks_and_directories Homebrew::Cleanup @@ -29228,7 +29252,7 @@

    Method List

  • -
  • +
  • pry? Homebrew::EnvConfig @@ -29236,7 +29260,7 @@

    Method List

  • -
  • +
  • #pry? Homebrew::DevCmd::Irb::Args @@ -29244,7 +29268,7 @@

    Method List

  • -
  • +
  • #pub_date Homebrew::Livecheck::Strategy::Sparkle::Item @@ -29252,7 +29276,7 @@

    Method List

  • -
  • +
  • public_member_usernames GitHub @@ -29260,7 +29284,7 @@

    Method List

  • -
  • +
  • #publish? Homebrew::DevCmd::PrAutomerge::Args @@ -29268,7 +29292,7 @@

    Method List

  • -
  • +
  • #pull_label Homebrew::DevCmd::TapNew::Args @@ -29276,7 +29300,7 @@

    Method List

  • -
  • +
  • #pull_request? Homebrew::Cmd::SearchCmd::Args @@ -29284,7 +29308,7 @@

    Method List

  • -
  • +
  • pull_request_commits GitHub @@ -29292,7 +29316,7 @@

    Method List

  • -
  • +
  • pull_request_labels GitHub @@ -29300,7 +29324,7 @@

    Method List

  • -
  • +
  • pull_request_title_regex GitHub @@ -29308,7 +29332,7 @@

    Method List

  • -
  • +
  • pull_requests GitHub @@ -29316,7 +29340,7 @@

    Method List

  • -
  • +
  • #purge_backed_up_versioned_files Cask::Installer @@ -29324,7 +29348,7 @@

    Method List

  • -
  • +
  • #purge_caskroom_path Cask::Installer @@ -29332,7 +29356,7 @@

    Method List

  • -
  • +
  • #purge_versioned_files Cask::Installer @@ -29340,7 +29364,7 @@

    Method List

  • -
  • +
  • #puts Cask::DSL::Caveats @@ -29348,7 +29372,7 @@

    Method List

  • -
  • +
  • puts_no_install_cleanup_disable_message Homebrew::Cleanup @@ -29356,7 +29380,7 @@

    Method List

  • -
  • +
  • puts_no_install_cleanup_disable_message_if_not_already! Homebrew::Cleanup @@ -29364,7 +29388,7 @@

    Method List

  • -
  • +
  • puts_no_installed_dependents_check_disable_message_if_not_already! Homebrew::Upgrade @@ -29372,7 +29396,7 @@

    Method List

  • -
  • +
  • #pypi_formula_mappings Tap @@ -29380,7 +29404,7 @@

    Method List

  • -
  • +
  • #pypi_info PyPI::Package @@ -29388,7 +29412,7 @@

    Method List

  • -
  • +
  • #python? Homebrew::DevCmd::Create::Args @@ -29396,7 +29420,7 @@

    Method List

  • -
  • +
  • #python_exclude_packages Homebrew::DevCmd::BumpFormulaPr::Args @@ -29404,7 +29428,7 @@

    Method List

  • -
  • +
  • #python_extra_packages Homebrew::DevCmd::BumpFormulaPr::Args @@ -29412,7 +29436,7 @@

    Method List

  • -
  • +
  • #python_names Language::Python::Virtualenv @@ -29420,7 +29444,7 @@

    Method List

  • -
  • +
  • #python_package_name Homebrew::DevCmd::BumpFormulaPr::Args @@ -29428,7 +29452,7 @@

    Method List

  • -
  • +
  • #qlplugindir Homebrew::Cmd::Reinstall::Args @@ -29436,7 +29460,7 @@

    Method List

  • -
  • +
  • #qlplugindir Homebrew::Cmd::InstallCmd::Args @@ -29444,7 +29468,7 @@

    Method List

  • -
  • +
  • #qlplugindir Homebrew::Cmd::UpgradeCmd::Args @@ -29452,7 +29476,7 @@

    Method List

  • -
  • +
  • #qlplugins Homebrew::UnversionedCaskChecker @@ -29460,7 +29484,7 @@

    Method List

  • -
  • +
  • #quarantine? Cask::Installer @@ -29468,7 +29492,7 @@

    Method List

  • -
  • +
  • #quarantine? Homebrew::Cmd::FetchCmd::Args @@ -29476,7 +29500,7 @@

    Method List

  • -
  • +
  • #quarantine? Homebrew::Cmd::Reinstall::Args @@ -29484,7 +29508,7 @@

    Method List

  • -
  • +
  • #quarantine? Homebrew::Cmd::InstallCmd::Args @@ -29492,7 +29516,7 @@

    Method List

  • -
  • +
  • #quarantine? Homebrew::Cmd::UpgradeCmd::Args @@ -29500,7 +29524,7 @@

    Method List

  • -
  • +
  • query_api Repology @@ -29508,7 +29532,7 @@

    Method List

  • -
  • +
  • query_regexp Homebrew::Search @@ -29516,7 +29540,7 @@

    Method List

  • -
  • +
  • #quiet! Mktemp @@ -29524,7 +29548,7 @@

    Method List

  • -
  • +
  • #quiet! AbstractDownloadStrategy @@ -29532,7 +29556,7 @@

    Method List

  • -
  • +
  • #quiet? Context::ContextStruct @@ -29540,7 +29564,7 @@

    Method List

  • -
  • +
  • #quiet? Context @@ -29548,7 +29572,7 @@

    Method List

  • -
  • +
  • #quiet? AbstractDownloadStrategy @@ -29556,7 +29580,7 @@

    Method List

  • -
  • +
  • #quiet? Homebrew::CLI::Args @@ -29564,7 +29588,7 @@

    Method List

  • -
  • +
  • #quiet? FormulaInstaller @@ -29572,7 +29596,7 @@

    Method List

  • -
  • +
  • #quiet? Cask::Installer @@ -29580,7 +29604,7 @@

    Method List

  • -
  • +
  • #quiet_system Kernel @@ -29588,7 +29612,7 @@

    Method List

  • -
  • +
  • #quote_dep Homebrew::FormulaAuditor @@ -29596,7 +29620,7 @@

    Method List

  • -
  • +
  • #r Homebrew::DevCmd::Ruby::Args @@ -29604,7 +29628,7 @@

    Method List

  • -
  • +
  • #r? Homebrew::Cmd::List::Args @@ -29612,7 +29636,7 @@

    Method List

  • -
  • +
  • #r? Homebrew::Cmd::Leaves::Args @@ -29620,7 +29644,7 @@

    Method List

  • -
  • +
  • #r? Homebrew::DevCmd::LivecheckCmd::Args @@ -29628,7 +29652,7 @@

    Method List

  • -
  • +
  • #rack Keg @@ -29636,7 +29660,7 @@

    Method List

  • -
  • +
  • raise Ignorable @@ -29644,7 +29668,7 @@

    Method List

  • -
  • +
  • raise_deprecation_exceptions? Homebrew @@ -29652,7 +29676,7 @@

    Method List

  • -
  • +
  • raise_error GitHub::API @@ -29660,7 +29684,7 @@

    Method List

  • -
  • +
  • #raw_version Cask::DSL::Version @@ -29668,7 +29692,7 @@

    Method List

  • -
  • +
  • read Homebrew::Settings @@ -29676,7 +29700,7 @@

    Method List

  • -
  • +
  • #read_date Mechanize::HTTP::ContentDisposition @@ -29684,7 +29708,7 @@

    Method List

  • -
  • +
  • read_script_arguments Cask::Artifact::AbstractArtifact @@ -29692,7 +29716,7 @@

    Method List

  • -
  • +
  • #read_uint16 ELFShim @@ -29700,7 +29724,7 @@

    Method List

  • -
  • +
  • #read_uint8 ELFShim @@ -29708,7 +29732,7 @@

    Method List

  • -
  • +
  • #readline_nonblock IO @@ -29716,7 +29740,7 @@

    Method List

  • -
  • +
  • reads_brewed_pth_files? Language::Python @@ -29724,7 +29748,7 @@

    Method List

  • -
  • +
  • #reason UsageError @@ -29732,7 +29756,7 @@

    Method List

  • -
  • +
  • reason Cask::Denylist @@ -29740,7 +29764,7 @@

    Method List

  • -
  • +
  • #reason PourBottleCheck @@ -29748,7 +29772,7 @@

    Method List

  • -
  • +
  • #reason Cask::AbstractCaskErrorWithToken @@ -29756,7 +29780,7 @@

    Method List

  • -
  • +
  • #reason Cask::CaskQuarantineError @@ -29764,7 +29788,7 @@

    Method List

  • -
  • +
  • #reason FormulaConflict @@ -29772,7 +29796,7 @@

    Method List

  • -
  • +
  • #reason KegOnlyReason @@ -29780,7 +29804,7 @@

    Method List

  • -
  • +
  • reason Homebrew::MissingFormula @@ -29788,7 +29812,7 @@

    Method List

  • -
  • +
  • #reason RuboCop::Cop::FormulaAudit::DeprecateDisableReason @@ -29796,7 +29820,7 @@

    Method List

  • -
  • +
  • #rebuild Bottle::Filename @@ -29804,7 +29828,7 @@

    Method List

  • -
  • +
  • #rebuild Bottle @@ -29812,7 +29836,7 @@

    Method List

  • -
  • +
  • #rebuild BottleSpecification @@ -29820,7 +29844,7 @@

    Method List

  • -
  • +
  • rebuild_commands_completion_list Commands @@ -29828,7 +29852,7 @@

    Method List

  • -
  • +
  • rebuild_internal_commands_completion_list Commands @@ -29836,7 +29860,7 @@

    Method List

  • -
  • +
  • receipt_path Utils::Bottles @@ -29844,7 +29868,7 @@

    Method List

  • -
  • +
  • #recommended Dependencies @@ -29852,7 +29876,7 @@

    Method List

  • -
  • +
  • #recommended? Dependable @@ -29860,7 +29884,7 @@

    Method List

  • -
  • +
  • #recommended_dependency? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -29868,7 +29892,7 @@

    Method List

  • -
  • +
  • #record_caveats Messages @@ -29876,7 +29900,7 @@

    Method List

  • -
  • +
  • #record_log Sandbox @@ -29884,7 +29908,7 @@

    Method List

  • -
  • +
  • #recursive? Homebrew::Cmd::Uses::Args @@ -29892,7 +29916,7 @@

    Method List

  • -
  • +
  • #recursive_dependencies Formula @@ -29900,7 +29924,7 @@

    Method List

  • -
  • +
  • #recursive_dependencies SoftwareSpec @@ -29908,7 +29932,7 @@

    Method List

  • -
  • +
  • #recursive_dependencies CaskDependent @@ -29916,7 +29940,7 @@

    Method List

  • -
  • +
  • #recursive_fgrep_args Keg @@ -29924,7 +29948,7 @@

    Method List

  • -
  • +
  • #recursive_includes DependenciesHelpers @@ -29932,7 +29956,7 @@

    Method List

  • -
  • +
  • #recursive_requirements Formula @@ -29940,7 +29964,7 @@

    Method List

  • -
  • +
  • #recursive_requirements SoftwareSpec @@ -29948,7 +29972,7 @@

    Method List

  • -
  • +
  • #recursive_requirements CaskDependent @@ -29956,7 +29980,7 @@

    Method List

  • -
  • +
  • #recursively_find_comments RuboCop::Cop::Cask::ArrayAlphabetization @@ -29964,7 +29988,7 @@

    Method List

  • -
  • +
  • red Tty @@ -29972,7 +29996,7 @@

    Method List

  • -
  • +
  • #redact_secrets Kernel @@ -29980,7 +30004,7 @@

    Method List

  • -
  • +
  • #redirect_stdout Kernel @@ -29988,7 +30012,7 @@

    Method List

  • -
  • +
  • #redundant_negative_receiver_and_other RuboCop::Cop::Homebrew::Presence @@ -29996,7 +30020,7 @@

    Method List

  • -
  • +
  • #redundant_receiver_and_other RuboCop::Cop::Homebrew::Presence @@ -30004,7 +30028,7 @@

    Method List

  • -
  • +
  • referenced_skip_information Homebrew::Livecheck::SkipConditions @@ -30012,7 +30036,7 @@

    Method List

  • -
  • +
  • #referer Cask::URL::DSL @@ -30020,7 +30044,7 @@

    Method List

  • -
  • +
  • #refresh Cask::Cask @@ -30028,7 +30052,7 @@

    Method List

  • -
  • +
  • regenerate_man_pages Homebrew::Manpages @@ -30036,7 +30060,7 @@

    Method List

  • -
  • +
  • #regex Livecheck @@ -30044,7 +30068,7 @@

    Method List

  • -
  • +
  • #regex Utils::Shebang::RewriteInfo @@ -30052,7 +30076,7 @@

    Method List

  • -
  • +
  • #regex_match_group RuboCop::Cop::HelperFunctions @@ -30060,7 +30084,7 @@

    Method List

  • -
  • +
  • #region Locale @@ -30068,7 +30092,7 @@

    Method List

  • -
  • +
  • #reinstall? Cask::Installer @@ -30076,7 +30100,7 @@

    Method List

  • -
  • +
  • reinstall_casks Cask::Reinstall @@ -30084,7 +30108,7 @@

    Method List

  • -
  • +
  • reinstall_formula Homebrew @@ -30092,7 +30116,7 @@

    Method List

  • -
  • +
  • #reject PATH @@ -30100,7 +30124,7 @@

    Method List

  • -
  • +
  • #reject_with_block? RuboCop::Cop::Homebrew::CompactBlank @@ -30108,7 +30132,7 @@

    Method List

  • -
  • +
  • #reject_with_block_pass? RuboCop::Cop::Homebrew::CompactBlank @@ -30116,7 +30140,7 @@

    Method List

  • -
  • +
  • #relative_cask_path Tap @@ -30124,7 +30148,7 @@

    Method List

  • -
  • +
  • release! Cask::Quarantine @@ -30132,7 +30156,7 @@

    Method List

  • -
  • +
  • #release_notes_link Homebrew::Livecheck::Strategy::Sparkle::Item @@ -30140,7 +30164,7 @@

    Method List

  • -
  • +
  • #relevant? GitHub::Actions::Annotation @@ -30148,7 +30172,7 @@

    Method List

  • -
  • +
  • #relocate_build_prefix Keg @@ -30156,7 +30180,7 @@

    Method List

  • -
  • +
  • #relocate_dynamic_linkage Keg @@ -30164,7 +30188,7 @@

    Method List

  • -
  • +
  • #relocated_name_for Keg @@ -30172,7 +30196,7 @@

    Method List

  • -
  • +
  • remaining Utils::Timer @@ -30180,7 +30204,7 @@

    Method List

  • -
  • +
  • #remaining Homebrew::CLI::Args @@ -30188,7 +30212,7 @@

    Method List

  • -
  • +
  • remaining! Utils::Timer @@ -30196,7 +30220,7 @@

    Method List

  • -
  • +
  • remap_deprecated_options Tab @@ -30204,7 +30228,7 @@

    Method List

  • -
  • +
  • #remote Tap @@ -30212,7 +30236,7 @@

    Method List

  • -
  • +
  • #remote CoreTap @@ -30220,7 +30244,7 @@

    Method List

  • -
  • +
  • remote_exists? Utils::Git @@ -30228,7 +30252,7 @@

    Method List

  • -
  • +
  • remote_exists? Utils::Svn @@ -30236,7 +30260,7 @@

    Method List

  • -
  • +
  • #remote_repo Tap @@ -30244,7 +30268,7 @@

    Method List

  • -
  • +
  • #remove SharedEnvExtension @@ -30252,7 +30276,7 @@

    Method List

  • -
  • +
  • #remove_bottle_block? Homebrew::DevCmd::BumpRevision::Args @@ -30260,7 +30284,7 @@

    Method List

  • -
  • +
  • #remove_cc_etc SharedEnvExtension @@ -30268,7 +30292,7 @@

    Method List

  • -
  • +
  • #remove_config_file Cask::Installer @@ -30276,7 +30300,7 @@

    Method List

  • -
  • +
  • #remove_conflicts Migrator @@ -30284,7 +30308,7 @@

    Method List

  • -
  • +
  • #remove_download_sha Cask::Installer @@ -30292,7 +30316,7 @@

    Method List

  • -
  • +
  • #remove_from_cflags SharedEnvExtension @@ -30300,7 +30324,7 @@

    Method List

  • -
  • +
  • #remove_linked_keg_record Keg @@ -30308,7 +30332,7 @@

    Method List

  • -
  • +
  • #remove_macosxsdk Stdenv @@ -30316,7 +30340,7 @@

    Method List

  • -
  • +
  • #remove_make_var! StringInreplaceExtension @@ -30324,7 +30348,7 @@

    Method List

  • -
  • +
  • #remove_old_aliases Keg @@ -30332,7 +30356,7 @@

    Method List

  • -
  • +
  • #remove_oldname_opt_records Keg @@ -30340,7 +30364,7 @@

    Method List

  • -
  • +
  • #remove_opt_record Keg @@ -30348,7 +30372,7 @@

    Method List

  • -
  • +
  • #remove_stanza Utils::AST::FormulaAST @@ -30356,7 +30380,7 @@

    Method List

  • -
  • +
  • #rename_branch GitRepository @@ -30364,7 +30388,7 @@

    Method List

  • -
  • +
  • #reorder_components RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -30372,7 +30396,7 @@

    Method List

  • -
  • +
  • #repair? Homebrew::Cmd::TapCmd::Args @@ -30380,7 +30404,7 @@

    Method List

  • -
  • +
  • #repin Migrator @@ -30388,7 +30412,7 @@

    Method List

  • -
  • +
  • #replace EnvMethods @@ -30396,7 +30420,7 @@

    Method List

  • -
  • +
  • #replace_bottle_block Utils::AST::FormulaAST @@ -30404,7 +30428,7 @@

    Method List

  • -
  • +
  • replace_caskfile_token Cask::Migrator @@ -30412,7 +30436,7 @@

    Method List

  • -
  • +
  • #replace_locations_with_placeholders Keg @@ -30420,7 +30444,7 @@

    Method List

  • -
  • +
  • replace_placeholders Homebrew::Service @@ -30428,7 +30452,7 @@

    Method List

  • -
  • +
  • #replace_placeholders_with_locations Keg @@ -30436,7 +30460,7 @@

    Method List

  • -
  • +
  • #replace_stanza Utils::AST::FormulaAST @@ -30444,7 +30468,7 @@

    Method List

  • -
  • +
  • #replace_text Keg::Relocation @@ -30452,7 +30476,7 @@

    Method List

  • -
  • +
  • #replace_text_in_files Keg @@ -30460,7 +30484,7 @@

    Method List

  • -
  • +
  • #replacement Utils::Shebang::RewriteInfo @@ -30468,7 +30492,7 @@

    Method List

  • -
  • +
  • #replacement_pair_for Keg::Relocation @@ -30476,7 +30500,7 @@

    Method List

  • -
  • +
  • #repo Tap @@ -30484,7 +30508,7 @@

    Method List

  • -
  • +
  • #repo TapFormulaUnavailableError @@ -30492,7 +30516,7 @@

    Method List

  • -
  • +
  • repo_commits_for_user GitHub @@ -30500,7 +30524,7 @@

    Method List

  • -
  • +
  • repo_info Cask::Info @@ -30508,7 +30532,7 @@

    Method List

  • -
  • +
  • #repo_valid? FossilDownloadStrategy @@ -30516,7 +30540,7 @@

    Method List

  • -
  • +
  • repo_without_prefix GitHubPackages @@ -30524,7 +30548,7 @@

    Method List

  • -
  • +
  • #repology? Homebrew::Cmd::SearchCmd::Args @@ -30532,7 +30556,7 @@

    Method List

  • -
  • +
  • #repology_latest Homebrew::DevCmd::Bump::VersionBumpInfo @@ -30540,7 +30564,7 @@

    Method List

  • -
  • +
  • #report Reporter @@ -30548,7 +30572,7 @@

    Method List

  • -
  • +
  • #report_and_correct_offense RuboCop::Cop::Cask::UninstallMethodsOrder @@ -30556,7 +30580,7 @@

    Method List

  • -
  • +
  • report_build_error Utils::Analytics @@ -30564,7 +30588,7 @@

    Method List

  • -
  • +
  • report_influx Utils::Analytics @@ -30572,7 +30596,7 @@

    Method List

  • -
  • +
  • report_package_event Utils::Analytics @@ -30580,7 +30604,7 @@

    Method List

  • -
  • +
  • #reporters ReporterHub @@ -30588,7 +30612,7 @@

    Method List

  • -
  • +
  • #repositories Homebrew::DevCmd::Contributions::Args @@ -30596,7 +30620,7 @@

    Method List

  • -
  • +
  • repository GitHub @@ -30604,7 +30628,7 @@

    Method List

  • -
  • +
  • #repository BottleSpecification @@ -30612,7 +30636,7 @@

    Method List

  • -
  • +
  • #reqs Build @@ -30620,7 +30644,7 @@

    Method List

  • -
  • +
  • #reqs Homebrew::Uninstall::DependentsMessage @@ -30628,7 +30652,7 @@

    Method List

  • -
  • +
  • #require? Kernel @@ -30636,7 +30660,7 @@

    Method List

  • -
  • +
  • #require_relocation? Keg @@ -30644,7 +30668,7 @@

    Method List

  • -
  • +
  • #require_root Homebrew::Service @@ -30652,7 +30676,7 @@

    Method List

  • -
  • +
  • #require_sha? Cask::Installer @@ -30660,7 +30684,7 @@

    Method List

  • -
  • +
  • #require_sha? Homebrew::Cmd::Reinstall::Args @@ -30668,7 +30692,7 @@

    Method List

  • -
  • +
  • #require_sha? Homebrew::Cmd::InstallCmd::Args @@ -30676,7 +30700,7 @@

    Method List

  • -
  • +
  • #require_sha? Homebrew::Cmd::UpgradeCmd::Args @@ -30684,7 +30708,7 @@

    Method List

  • -
  • +
  • #required Dependencies @@ -30692,7 +30716,7 @@

    Method List

  • -
  • +
  • #required? Dependable @@ -30700,7 +30724,7 @@

    Method List

  • -
  • +
  • #required_dependency? RuboCop::Cop::FormulaCop @@ -30708,7 +30732,7 @@

    Method List

  • -
  • +
  • #required_dependency_name? RuboCop::Cop::FormulaCop @@ -30716,7 +30740,7 @@

    Method List

  • -
  • +
  • #requirements SoftwareSpec @@ -30724,7 +30748,7 @@

    Method List

  • -
  • +
  • #requirements CaskDependent @@ -30732,7 +30756,7 @@

    Method List

  • -
  • +
  • #requirements DependencyCollector @@ -30740,7 +30764,7 @@

    Method List

  • -
  • +
  • #requirements Formula @@ -30748,7 +30772,7 @@

    Method List

  • -
  • +
  • #requires_nehalem_cpu? MacOSVersion @@ -30756,7 +30780,7 @@

    Method List

  • -
  • +
  • #requires_root? Homebrew::Service @@ -30764,7 +30788,7 @@

    Method List

  • -
  • +
  • #reset Superenv @@ -30772,7 +30796,7 @@

    Method List

  • -
  • +
  • reset Tty @@ -30780,7 +30804,7 @@

    Method List

  • -
  • +
  • #reset_cache? Homebrew::DevCmd::StyleCmd::Args @@ -30788,7 +30812,7 @@

    Method List

  • -
  • +
  • reset_escape_sequence! Tty @@ -30796,7 +30820,7 @@

    Method List

  • -
  • +
  • resolve Formulary @@ -30804,7 +30828,7 @@

    Method List

  • -
  • +
  • #resolve? Homebrew::DevCmd::PrPull::Args @@ -30812,7 +30836,7 @@

    Method List

  • -
  • +
  • resolve_formula_names Utils::Bottles @@ -30820,7 +30844,7 @@

    Method List

  • -
  • +
  • resolve_livecheck_reference Homebrew::Livecheck @@ -30828,7 +30852,7 @@

    Method List

  • -
  • +
  • #resolve_rpath MachOShim @@ -30836,7 +30860,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Manpage @@ -30844,7 +30868,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Artifact @@ -30852,7 +30876,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Relocated @@ -30860,7 +30884,7 @@

    Method List

  • -
  • +
  • #resolve_variable_name MachOShim @@ -30868,7 +30892,7 @@

    Method List

  • -
  • +
  • resolve_version Utils::Bottles @@ -30876,7 +30900,7 @@

    Method List

  • -
  • +
  • #resolved_time_file_size CurlDownloadStrategy @@ -30884,7 +30908,7 @@

    Method List

  • -
  • +
  • #resource ExternalPatch @@ -30892,7 +30916,7 @@

    Method List

  • -
  • +
  • #resource Formula @@ -30900,7 +30924,7 @@

    Method List

  • -
  • +
  • resource Formula @@ -30908,7 +30932,7 @@

    Method List

  • -
  • +
  • #resource Resource::Partial @@ -30916,7 +30940,7 @@

    Method List

  • -
  • +
  • #resource ResourceStageContext @@ -30924,7 +30948,7 @@

    Method List

  • -
  • +
  • #resource SoftwareSpec @@ -30932,7 +30956,7 @@

    Method List

  • -
  • +
  • #resource Bottle @@ -30940,7 +30964,7 @@

    Method List

  • -
  • +
  • #resource_defined? SoftwareSpec @@ -30948,7 +30972,7 @@

    Method List

  • -
  • +
  • resource_version Homebrew::Livecheck @@ -30956,7 +30980,7 @@

    Method List

  • -
  • +
  • #resources Formula @@ -30964,7 +30988,7 @@

    Method List

  • -
  • +
  • #resources SoftwareSpec @@ -30972,7 +30996,7 @@

    Method List

  • -
  • +
  • #resources? Homebrew::DevCmd::LivecheckCmd::Args @@ -30980,7 +31004,7 @@

    Method List

  • -
  • +
  • #respond_to? Version @@ -30988,7 +31012,7 @@

    Method List

  • -
  • +
  • #respond_to_missing? Cask::DSL @@ -30996,7 +31020,7 @@

    Method List

  • -
  • +
  • #respond_to_missing? Cask::URL::BlockDSL @@ -31004,7 +31028,7 @@

    Method List

  • -
  • +
  • #restart_delay Homebrew::Service @@ -31012,7 +31036,7 @@

    Method List

  • -
  • +
  • restore_backup Homebrew @@ -31020,7 +31044,7 @@

    Method List

  • -
  • +
  • #restore_backup Cask::Installer @@ -31028,7 +31052,7 @@

    Method List

  • -
  • +
  • #result Cask::Audit @@ -31036,7 +31060,7 @@

    Method List

  • -
  • +
  • #retain! Mktemp @@ -31044,7 +31068,7 @@

    Method List

  • -
  • +
  • #retain? Mktemp @@ -31052,7 +31076,7 @@

    Method List

  • -
  • +
  • #retain_bottle_dir? Homebrew::DevCmd::PrPull::Args @@ -31060,7 +31084,7 @@

    Method List

  • -
  • +
  • #retain_in_cache? Mktemp @@ -31068,7 +31092,7 @@

    Method List

  • -
  • +
  • #retry? Homebrew::DevCmd::Test::Args @@ -31076,7 +31100,7 @@

    Method List

  • -
  • +
  • #retry? Homebrew::Cmd::FetchCmd::Args @@ -31084,7 +31108,7 @@

    Method List

  • -
  • +
  • #rev Version::CompositeToken @@ -31092,7 +31116,7 @@

    Method List

  • -
  • +
  • #rev_list FormulaVersions @@ -31100,7 +31124,7 @@

    Method List

  • -
  • +
  • #reverse? Homebrew::DevCmd::Linkage::Args @@ -31108,7 +31132,7 @@

    Method List

  • -
  • +
  • #reverse_line_number Homebrew::FormulaTextAuditor @@ -31116,7 +31140,7 @@

    Method List

  • -
  • +
  • #reverse_tap_migrations_renames Tap @@ -31124,7 +31148,7 @@

    Method List

  • -
  • +
  • #revert_upgrade Cask::Installer @@ -31132,7 +31156,7 @@

    Method List

  • -
  • +
  • #revision Formula @@ -31140,7 +31164,7 @@

    Method List

  • -
  • +
  • #revision Cask::URL::DSL @@ -31148,7 +31172,7 @@

    Method List

  • -
  • +
  • #revision PkgVersion @@ -31156,7 +31180,7 @@

    Method List

  • -
  • +
  • #revision FormulaInfo @@ -31164,7 +31188,7 @@

    Method List

  • -
  • +
  • revision Formula @@ -31172,7 +31196,7 @@

    Method List

  • -
  • +
  • #revision Homebrew::DevCmd::BumpFormulaPr::Args @@ -31180,7 +31204,7 @@

    Method List

  • -
  • +
  • #revisions Cask::URL::DSL @@ -31188,7 +31212,7 @@

    Method List

  • -
  • +
  • #reword_package_commit Homebrew::DevCmd::PrPull @@ -31196,7 +31220,7 @@

    Method List

  • -
  • +
  • rewrite_child_error Utils @@ -31204,7 +31228,7 @@

    Method List

  • -
  • +
  • rewrite_shebang Utils::Shebang @@ -31212,7 +31236,7 @@

    Method List

  • -
  • +
  • right Tty @@ -31220,7 +31244,7 @@

    Method List

  • -
  • +
  • #rm_ds_store Homebrew::Cleanup @@ -31228,7 +31252,7 @@

    Method List

  • -
  • +
  • rm_pin Homebrew::Uninstall @@ -31236,7 +31260,7 @@

    Method List

  • -
  • +
  • #root Cask::Pkg @@ -31244,7 +31268,7 @@

    Method List

  • -
  • +
  • #root Language::Python::Virtualenv::Virtualenv @@ -31252,7 +31276,7 @@

    Method List

  • -
  • +
  • #root_dir Homebrew::Service @@ -31260,7 +31284,7 @@

    Method List

  • -
  • +
  • #root_url BottleSpecification @@ -31268,7 +31292,7 @@

    Method List

  • -
  • +
  • root_url GitHubPackages @@ -31276,7 +31300,7 @@

    Method List

  • -
  • +
  • #root_url Homebrew::DevCmd::Bottle::Args @@ -31284,7 +31308,7 @@

    Method List

  • -
  • +
  • #root_url Homebrew::DevCmd::PrPull::Args @@ -31292,7 +31316,7 @@

    Method List

  • -
  • +
  • #root_url Homebrew::DevCmd::PrUpload::Args @@ -31300,7 +31324,7 @@

    Method List

  • -
  • +
  • root_url_if_match GitHubPackages @@ -31308,7 +31332,7 @@

    Method List

  • -
  • +
  • #root_url_specs BottleSpecification @@ -31316,7 +31340,7 @@

    Method List

  • -
  • +
  • #root_url_using Homebrew::DevCmd::Bottle::Args @@ -31324,7 +31348,7 @@

    Method List

  • -
  • +
  • #root_url_using Homebrew::DevCmd::PrPull::Args @@ -31332,7 +31356,7 @@

    Method List

  • -
  • +
  • #root_url_using Homebrew::DevCmd::PrUpload::Args @@ -31340,7 +31364,7 @@

    Method List

  • -
  • +
  • #rpath Formula @@ -31348,7 +31372,7 @@

    Method List

  • -
  • +
  • #rpath ELFShim @@ -31356,7 +31380,7 @@

    Method List

  • -
  • +
  • #rpath_using_patchelf_rb ELFShim @@ -31364,7 +31388,7 @@

    Method List

  • -
  • +
  • #rpaths MachOShim @@ -31372,7 +31396,7 @@

    Method List

  • -
  • +
  • #rpaths ELFShim @@ -31380,7 +31404,7 @@

    Method List

  • -
  • +
  • #rpaths Pathname @@ -31388,7 +31412,7 @@

    Method List

  • -
  • +
  • #ruby? Homebrew::DevCmd::Create::Args @@ -31396,7 +31420,7 @@

    Method List

  • -
  • +
  • ruby_bindir Homebrew @@ -31404,7 +31428,7 @@

    Method List

  • -
  • +
  • #ruby_source_checksum Cask::Cask @@ -31412,7 +31436,7 @@

    Method List

  • -
  • +
  • #ruby_source_path Cask::Cask @@ -31420,7 +31444,7 @@

    Method List

  • -
  • +
  • #run Mktemp @@ -31428,7 +31452,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Log @@ -31436,7 +31460,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Pin @@ -31444,7 +31468,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::TapCmd @@ -31452,7 +31476,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Service @@ -31460,7 +31484,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Deps @@ -31468,7 +31492,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Desc @@ -31476,7 +31500,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Docs @@ -31484,7 +31508,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::HelpCmd @@ -31492,7 +31516,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Home @@ -31500,7 +31524,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Info @@ -31508,7 +31532,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Link @@ -31516,7 +31540,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::List @@ -31524,7 +31548,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Uses @@ -31532,7 +31556,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Env @@ -31540,7 +31564,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::FetchCmd @@ -31548,7 +31572,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Unpin @@ -31556,7 +31580,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Untap @@ -31564,7 +31588,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Config @@ -31572,7 +31596,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Doctor @@ -31580,7 +31604,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Leaves @@ -31588,7 +31612,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::SearchCmd @@ -31596,7 +31620,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::UnlinkCmd @@ -31604,7 +31628,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Sh @@ -31612,7 +31636,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Cache @@ -31620,7 +31644,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::CleanupCmd @@ -31628,7 +31652,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::InstallCmd @@ -31636,7 +31660,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Migrate @@ -31644,7 +31668,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Missing @@ -31652,7 +31676,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::OptionsCmd @@ -31660,7 +31684,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::ReadallCmd @@ -31668,7 +31692,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::UpgradeCmd @@ -31676,7 +31700,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Cat @@ -31684,7 +31708,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Irb @@ -31692,7 +31716,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Cellar @@ -31700,7 +31724,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Prefix @@ -31708,7 +31732,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::CommandsCmd @@ -31716,7 +31740,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Outdated @@ -31724,7 +31748,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::TapInfo @@ -31732,7 +31756,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Bump @@ -31740,7 +31764,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Edit @@ -31748,7 +31772,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Prof @@ -31756,7 +31780,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Ruby @@ -31764,7 +31788,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Test @@ -31772,7 +31796,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Analytics @@ -31780,7 +31804,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Developer @@ -31788,7 +31812,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::GistLogs @@ -31796,7 +31820,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Reinstall @@ -31804,7 +31828,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::UninstallCmd @@ -31812,7 +31836,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Audit @@ -31820,7 +31844,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::StyleCmd @@ -31828,7 +31852,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Tests @@ -31836,7 +31860,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Caskroom @@ -31844,7 +31868,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Autoremove @@ -31852,7 +31876,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::PyenvSync @@ -31860,7 +31884,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::RbenvSync @@ -31868,7 +31892,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Bottle @@ -31876,7 +31900,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Create @@ -31884,7 +31908,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Unpack @@ -31892,7 +31916,7 @@

    Method List

  • -
  • +
  • run SystemCommand @@ -31900,7 +31924,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::CompletionsCmd @@ -31908,7 +31932,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::NodenvSync @@ -31916,7 +31940,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Postinstall @@ -31924,7 +31948,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Command @@ -31932,7 +31956,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Extract @@ -31940,7 +31964,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::FormulaCmd @@ -31948,7 +31972,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Linkage @@ -31956,7 +31980,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::PrPull @@ -31964,7 +31988,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Release @@ -31972,7 +31996,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::TapNew @@ -31980,7 +32004,7 @@

    Method List

  • -
  • +
  • #run Homebrew::AbstractCommand @@ -31988,7 +32012,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::Repository @@ -31996,7 +32020,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::UpdateReport @@ -32004,7 +32028,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::LivecheckCmd @@ -32012,7 +32036,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::PrUpload @@ -32020,7 +32044,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Typecheck @@ -32028,7 +32052,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Unbottled @@ -32036,7 +32060,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::PrPublish @@ -32044,7 +32068,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::UpdateTest @@ -32052,7 +32076,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::VendorGems @@ -32060,7 +32084,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::BumpCaskPr @@ -32068,7 +32092,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::PrAutomerge @@ -32076,7 +32100,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::BumpRevision @@ -32084,7 +32108,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::Contributions @@ -32092,7 +32116,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::BumpFormulaPr @@ -32100,7 +32124,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::UpdateSponsors @@ -32108,7 +32132,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::GenerateCaskApi @@ -32116,7 +32140,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::UpdateMaintainers @@ -32124,7 +32148,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::UpdateLicenseData @@ -32132,7 +32156,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::GenerateFormulaApi @@ -32140,7 +32164,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::InstallBundlerGems @@ -32148,7 +32172,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::DispatchBuildBottle @@ -32156,7 +32180,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::BumpUnversionedCasks @@ -32164,7 +32188,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::DetermineTestRunners @@ -32172,7 +32196,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Cmd::PostgresqlUpgradeDatabase @@ -32180,7 +32204,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::UpdatePythonResources @@ -32188,7 +32212,7 @@

    Method List

  • -
  • +
  • #run Homebrew::DevCmd::GenerateManCompletions @@ -32196,7 +32220,7 @@

    Method List

  • -
  • +
  • #run! Cask::Audit @@ -32204,7 +32228,7 @@

    Method List

  • -
  • +
  • run! SystemCommand @@ -32212,7 +32236,7 @@

    Method List

  • -
  • +
  • #run! SystemCommand @@ -32220,7 +32244,7 @@

    Method List

  • -
  • +
  • #run_at_load Homebrew::Service @@ -32228,7 +32252,7 @@

    Method List

  • -
  • +
  • run_checks Homebrew::Livecheck @@ -32236,7 +32260,7 @@

    Method List

  • -
  • +
  • run_rubocop Homebrew::Style @@ -32244,7 +32268,7 @@

    Method List

  • -
  • +
  • run_shellcheck Homebrew::Style @@ -32252,7 +32276,7 @@

    Method List

  • -
  • +
  • run_shfmt Homebrew::Style @@ -32260,7 +32284,7 @@

    Method List

  • -
  • +
  • #run_type Homebrew::Service @@ -32268,7 +32292,7 @@

    Method List

  • -
  • +
  • #runner LinuxRunnerSpec @@ -32276,7 +32300,7 @@

    Method List

  • -
  • +
  • #runner MacOSRunnerSpec @@ -32284,7 +32308,7 @@

    Method List

  • -
  • +
  • #runners GitHubRunnerMatrix @@ -32292,7 +32316,7 @@

    Method List

  • -
  • +
  • running? Utils::Service @@ -32300,7 +32324,7 @@

    Method List

  • -
  • +
  • running_as_root? Homebrew @@ -32308,7 +32332,7 @@

    Method List

  • -
  • +
  • running_as_root_but_not_owned_by_root? Homebrew @@ -32316,7 +32340,7 @@

    Method List

  • -
  • +
  • #runtime_cpu_detection Superenv @@ -32324,7 +32348,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies Keg @@ -32332,7 +32356,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies Tab @@ -32340,7 +32364,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies Formula @@ -32348,7 +32372,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies CaskDependent @@ -32356,7 +32380,7 @@

    Method List

  • -
  • +
  • runtime_deps_hash Tab @@ -32364,7 +32388,7 @@

    Method List

  • -
  • +
  • #runtime_installed_formula_dependents Formula @@ -32372,7 +32396,7 @@

    Method List

  • -
  • +
  • #runtime_requirements FormulaInstaller @@ -32380,7 +32404,7 @@

    Method List

  • -
  • +
  • #rust? Homebrew::DevCmd::Create::Args @@ -32388,7 +32412,7 @@

    Method List

  • -
  • +
  • rustflags_target_cpu Hardware @@ -32396,7 +32420,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::Desc::Args @@ -32404,7 +32428,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::Cache::Args @@ -32412,7 +32436,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::FetchCmd::Args @@ -32420,7 +32444,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::Reinstall::Args @@ -32428,7 +32452,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::CleanupCmd::Args @@ -32436,7 +32460,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::InstallCmd::Args @@ -32444,7 +32468,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::Cmd::UpgradeCmd::Args @@ -32452,7 +32476,7 @@

    Method List

  • -
  • +
  • #s? Homebrew::DevCmd::UpdatePythonResources::Args @@ -32460,7 +32484,7 @@

    Method List

  • -
  • +
  • safe_filename Utils @@ -32468,7 +32492,7 @@

    Method List

  • -
  • +
  • safe_filename? Utils @@ -32476,7 +32500,7 @@

    Method List

  • -
  • +
  • safe_fork Utils @@ -32484,7 +32508,7 @@

    Method List

  • -
  • +
  • #safe_navigation_blank_in_conditional? RuboCop::Cop::Homebrew::SafeNavigationWithBlank @@ -32492,7 +32516,7 @@

    Method List

  • -
  • +
  • safe_popen_read Utils @@ -32500,7 +32524,7 @@

    Method List

  • -
  • +
  • safe_popen_write Utils @@ -32508,7 +32532,7 @@

    Method List

  • -
  • +
  • #safe_system Kernel @@ -32516,7 +32540,7 @@

    Method List

  • -
  • +
  • #same_group? RuboCop::Cask::AST::Stanza @@ -32524,7 +32548,7 @@

    Method List

  • -
  • +
  • #same_package? PyPI::Package @@ -32532,7 +32556,7 @@

    Method List

  • -
  • +
  • #sanitized_argv_options FormulaInstaller @@ -32540,7 +32564,7 @@

    Method List

  • -
  • +
  • #satisfied? Dependency @@ -32548,7 +32572,7 @@

    Method List

  • -
  • +
  • #satisfied? Requirement @@ -32556,7 +32580,7 @@

    Method List

  • -
  • +
  • #satisfied_result_parent Requirement @@ -32564,7 +32588,7 @@

    Method List

  • -
  • +
  • satisfy Requirement @@ -32572,7 +32596,7 @@

    Method List

  • -
  • +
  • #satisfy PourBottleCheck @@ -32580,7 +32604,7 @@

    Method List

  • -
  • +
  • #satisfy_cask_and_formula_dependencies Cask::Installer @@ -32588,7 +32612,7 @@

    Method List

  • -
  • +
  • #save_caskfile Cask::Installer @@ -32596,7 +32620,7 @@

    Method List

  • -
  • +
  • #save_config_file Cask::Installer @@ -32604,7 +32628,7 @@

    Method List

  • -
  • +
  • #save_download_sha Cask::Installer @@ -32612,7 +32636,7 @@

    Method List

  • -
  • +
  • #save_using_patchelf_rb ELFShim @@ -32620,7 +32644,7 @@

    Method List

  • -
  • +
  • #sbin Formula @@ -32628,7 +32652,7 @@

    Method List

  • -
  • +
  • #scheme_and_version Keg @@ -32636,7 +32660,7 @@

    Method List

  • -
  • +
  • #screen_saverdir Homebrew::Cmd::Reinstall::Args @@ -32644,7 +32668,7 @@

    Method List

  • -
  • +
  • #screen_saverdir Homebrew::Cmd::InstallCmd::Args @@ -32652,7 +32676,7 @@

    Method List

  • -
  • +
  • #screen_saverdir Homebrew::Cmd::UpgradeCmd::Args @@ -32660,7 +32684,7 @@

    Method List

  • -
  • +
  • #screen_savers Homebrew::UnversionedCaskChecker @@ -32668,7 +32692,7 @@

    Method List

  • -
  • +
  • #script Locale @@ -32676,7 +32700,7 @@

    Method List

  • -
  • +
  • #scrub? Homebrew::Cleanup @@ -32684,7 +32708,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac @@ -32692,7 +32716,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac::Xcode @@ -32700,7 +32724,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac::CLT @@ -32708,7 +32732,7 @@

    Method List

  • -
  • +
  • sdk_for_formula OS::Mac @@ -32716,7 +32740,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac @@ -32724,7 +32748,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac::Xcode @@ -32732,7 +32756,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac::CLT @@ -32740,7 +32764,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac @@ -32748,7 +32772,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac::Xcode @@ -32756,7 +32780,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac::CLT @@ -32764,7 +32788,7 @@

    Method List

  • -
  • +
  • sdk_path_if_needed OS::Mac @@ -32772,7 +32796,7 @@

    Method List

  • -
  • +
  • sdk_root_needed? OS::Mac @@ -32780,7 +32804,7 @@

    Method List

  • -
  • +
  • search Homebrew::Search @@ -32788,7 +32812,7 @@

    Method List

  • -
  • +
  • search Descriptions @@ -32796,7 +32820,7 @@

    Method List

  • -
  • +
  • search GitHub @@ -32804,7 +32828,7 @@

    Method List

  • -
  • +
  • #search? Homebrew::Cmd::Desc::Args @@ -32812,7 +32836,7 @@

    Method List

  • -
  • +
  • search_casks Homebrew::Search @@ -32820,7 +32844,7 @@

    Method List

  • -
  • +
  • search_descriptions Homebrew::Search @@ -32828,7 +32852,7 @@

    Method List

  • -
  • +
  • search_formulae Homebrew::Search @@ -32836,7 +32860,7 @@

    Method List

  • -
  • +
  • search_issues GitHub @@ -32844,7 +32868,7 @@

    Method List

  • -
  • +
  • search_names Homebrew::Search @@ -32852,7 +32876,7 @@

    Method List

  • -
  • +
  • search_query_string GitHub @@ -32860,7 +32884,7 @@

    Method List

  • -
  • +
  • search_regex Homebrew::Search @@ -32868,7 +32892,7 @@

    Method List

  • -
  • +
  • search_results_count GitHub @@ -32876,7 +32900,7 @@

    Method List

  • -
  • +
  • search_results_items GitHub @@ -32884,7 +32908,7 @@

    Method List

  • -
  • +
  • search_string Homebrew::Search @@ -32892,7 +32916,7 @@

    Method List

  • -
  • +
  • #second Array @@ -32900,7 +32924,7 @@

    Method List

  • -
  • +
  • #section Cask::Artifact::Manpage @@ -32908,7 +32932,7 @@

    Method List

  • -
  • +
  • #seed Homebrew::DevCmd::Tests::Args @@ -32916,7 +32940,7 @@

    Method List

  • -
  • +
  • #select PATH @@ -32924,7 +32948,7 @@

    Method List

  • -
  • +
  • #select CacheStoreDatabase @@ -32932,7 +32956,7 @@

    Method List

  • -
  • +
  • #select DescriptionCacheStore @@ -32940,7 +32964,7 @@

    Method List

  • -
  • +
  • #select EnvMethods @@ -32948,7 +32972,7 @@

    Method List

  • -
  • +
  • select_for CompilerSelector @@ -32956,7 +32980,7 @@

    Method List

  • -
  • +
  • #select_formula_or_cask ReporterHub @@ -32964,7 +32988,7 @@

    Method List

  • -
  • +
  • #select_includes DependenciesHelpers @@ -32972,7 +32996,7 @@

    Method List

  • -
  • +
  • #sensitive? EnvActivation @@ -32980,7 +33004,7 @@

    Method List

  • -
  • +
  • #sensitive_environment EnvActivation @@ -32988,7 +33012,7 @@

    Method List

  • -
  • +
  • #separate_commit_message Homebrew::DevCmd::PrPull @@ -32996,7 +33020,7 @@

    Method List

  • -
  • +
  • separate_header_package? OS::Mac::CLT @@ -33004,7 +33028,7 @@

    Method List

  • -
  • +
  • #service Formula @@ -33012,7 +33036,7 @@

    Method List

  • -
  • +
  • service Formula @@ -33020,7 +33044,7 @@

    Method List

  • -
  • +
  • #service? Formula @@ -33028,7 +33052,7 @@

    Method List

  • -
  • +
  • service? Formula @@ -33036,7 +33060,7 @@

    Method List

  • -
  • +
  • #service_name Formula @@ -33044,7 +33068,7 @@

    Method List

  • -
  • +
  • #service_name Homebrew::Service @@ -33052,7 +33076,7 @@

    Method List

  • -
  • +
  • #servicedir Homebrew::Cmd::Reinstall::Args @@ -33060,7 +33084,7 @@

    Method List

  • -
  • +
  • #servicedir Homebrew::Cmd::InstallCmd::Args @@ -33068,7 +33092,7 @@

    Method List

  • -
  • +
  • #servicedir Homebrew::Cmd::UpgradeCmd::Args @@ -33076,7 +33100,7 @@

    Method List

  • -
  • +
  • #set CacheStoreDatabase @@ -33084,7 +33108,7 @@

    Method List

  • -
  • +
  • #set_debug_symbols Superenv @@ -33092,7 +33116,7 @@

    Method List

  • -
  • +
  • #set_default_options Homebrew::CLI::Parser @@ -33100,7 +33124,7 @@

    Method List

  • -
  • +
  • #set_head_origin_auto GitRepository @@ -33108,7 +33132,7 @@

    Method List

  • -
  • +
  • #set_license Homebrew::DevCmd::Create::Args @@ -33116,7 +33140,7 @@

    Method List

  • -
  • +
  • #set_name Homebrew::DevCmd::Create::Args @@ -33124,7 +33148,7 @@

    Method List

  • -
  • +
  • set_name_email! Utils::Git @@ -33132,7 +33156,7 @@

    Method List

  • -
  • +
  • #set_ownership Cask::Staged @@ -33140,7 +33164,7 @@

    Method List

  • -
  • +
  • #set_permissions Cask::Staged @@ -33148,7 +33172,7 @@

    Method List

  • -
  • +
  • #set_unique_stanza Cask::DSL @@ -33156,7 +33180,7 @@

    Method List

  • -
  • +
  • #set_upstream_branch GitRepository @@ -33164,7 +33188,7 @@

    Method List

  • -
  • +
  • set_variable_in_profile Utils::Shell @@ -33172,7 +33196,7 @@

    Method List

  • -
  • +
  • #set_version Homebrew::DevCmd::Create::Args @@ -33180,7 +33204,7 @@

    Method List

  • -
  • +
  • setup_arch_methods OnSystem @@ -33188,7 +33212,7 @@

    Method List

  • -
  • +
  • setup_base_os_methods OnSystem @@ -33196,7 +33220,7 @@

    Method List

  • -
  • +
  • setup_gem_environment! Homebrew @@ -33204,7 +33228,7 @@

    Method List

  • -
  • +
  • setup_gpg! Utils::Git @@ -33212,7 +33236,7 @@

    Method List

  • -
  • +
  • setup_install_args Language::Python @@ -33220,7 +33244,7 @@

    Method List

  • -
  • +
  • setup_macos_methods OnSystem @@ -33228,7 +33252,7 @@

    Method List

  • -
  • +
  • setup_npm_environment Language::Node @@ -33236,7 +33260,7 @@

    Method List

  • -
  • +
  • #severity Homebrew::Style::Offense @@ -33244,7 +33268,7 @@

    Method List

  • -
  • +
  • #severity_code Homebrew::Style::Offense @@ -33252,7 +33276,7 @@

    Method List

  • -
  • +
  • sh_quote Utils::Shell @@ -33260,7 +33284,7 @@

    Method List

  • -
  • +
  • sha256 Formula @@ -33268,7 +33292,7 @@

    Method List

  • -
  • +
  • #sha256 Cask::DSL @@ -33276,7 +33300,7 @@

    Method List

  • -
  • +
  • #sha256 Resource @@ -33284,7 +33308,7 @@

    Method List

  • -
  • +
  • #sha256 BottleSpecification @@ -33292,7 +33316,7 @@

    Method List

  • -
  • +
  • #sha256 Pathname @@ -33300,7 +33324,7 @@

    Method List

  • -
  • +
  • #sha256 Cask::Cask @@ -33308,7 +33332,7 @@

    Method List

  • -
  • +
  • #sha256 Homebrew::DevCmd::BumpCaskPr::Args @@ -33316,7 +33340,7 @@

    Method List

  • -
  • +
  • #sha256 Homebrew::DevCmd::BumpFormulaPr::Args @@ -33324,7 +33348,7 @@

    Method List

  • -
  • +
  • #sha256_bottle_tag RuboCop::Cop::FormulaAudit::BottleOrder @@ -33332,7 +33356,7 @@

    Method List

  • -
  • +
  • #sha256_on_arch_stanzas RuboCop::Cop::Cask::OnSystemConditionals @@ -33340,7 +33364,7 @@

    Method List

  • -
  • +
  • #sha256_order RuboCop::Cop::FormulaAudit::BottleOrder @@ -33348,7 +33372,7 @@

    Method List

  • -
  • +
  • #shadowed_by_macos? KegOnlyReason @@ -33356,7 +33380,7 @@

    Method List

  • -
  • +
  • #shallow? Tap @@ -33364,7 +33388,7 @@

    Method List

  • -
  • +
  • #share Formula @@ -33372,7 +33396,7 @@

    Method List

  • -
  • +
  • #share_path_starts_with RuboCop::Cop::FormulaAuditStrict::Text @@ -33380,7 +33404,7 @@

    Method List

  • -
  • +
  • #shared_library Formula @@ -33388,7 +33412,7 @@

    Method List

  • -
  • +
  • #shell Homebrew::Cmd::Env::Args @@ -33396,7 +33420,7 @@

    Method List

  • -
  • +
  • #shell_completion_node RuboCop::Cop::FormulaAudit::GenerateCompletionsDSL @@ -33404,7 +33428,7 @@

    Method List

  • -
  • +
  • #shell_output Homebrew::Assertions @@ -33412,7 +33436,7 @@

    Method List

  • -
  • +
  • shell_scripts Homebrew::Style @@ -33420,7 +33444,7 @@

    Method List

  • -
  • +
  • shellcheck Homebrew::Style @@ -33428,7 +33452,7 @@

    Method List

  • -
  • +
  • shfmt Homebrew::Style @@ -33436,7 +33460,7 @@

    Method List

  • -
  • +
  • shims_path Superenv @@ -33444,7 +33468,7 @@

    Method List

  • -
  • +
  • #short_head_ref GitRepository @@ -33452,7 +33476,7 @@

    Method List

  • -
  • +
  • #short_version Homebrew::BundleVersion @@ -33460,7 +33484,7 @@

    Method List

  • -
  • +
  • show_completions_message_if_needed Homebrew::Completions @@ -33468,7 +33492,7 @@

    Method List

  • -
  • +
  • #show_header? FormulaInstaller @@ -33476,7 +33500,7 @@

    Method List

  • -
  • +
  • #show_summary_heading? FormulaInstaller @@ -33484,7 +33508,7 @@

    Method List

  • -
  • +
  • #shutup! AbstractDownloadStrategy @@ -33492,7 +33516,7 @@

    Method List

  • -
  • +
  • #signing? Cask::Audit @@ -33500,7 +33524,7 @@

    Method List

  • -
  • +
  • #signing? Homebrew::DevCmd::Audit::Args @@ -33508,7 +33532,7 @@

    Method List

  • -
  • +
  • #signoff! Homebrew::DevCmd::PrPull @@ -33516,7 +33540,7 @@

    Method List

  • -
  • +
  • #silent? Homebrew::DevCmd::UpdatePythonResources::Args @@ -33524,7 +33548,7 @@

    Method List

  • -
  • +
  • simplify_string Homebrew::Search @@ -33532,7 +33556,7 @@

    Method List

  • -
  • +
  • simulate_macos_on_linux? Homebrew::EnvConfig @@ -33540,7 +33564,7 @@

    Method List

  • -
  • +
  • simulating_or_running_on_linux? Homebrew::SimulateSystem @@ -33548,7 +33572,7 @@

    Method List

  • -
  • +
  • simulating_or_running_on_macos? Homebrew::SimulateSystem @@ -33556,7 +33580,7 @@

    Method List

  • -
  • +
  • #single_app_cask? Homebrew::UnversionedCaskChecker @@ -33564,7 +33588,7 @@

    Method List

  • -
  • +
  • single_package_query Repology @@ -33572,7 +33596,7 @@

    Method List

  • -
  • +
  • #single_pkg_cask? Homebrew::UnversionedCaskChecker @@ -33580,7 +33604,7 @@

    Method List

  • -
  • +
  • #single_qlplugin_cask? Homebrew::UnversionedCaskChecker @@ -33588,7 +33612,7 @@

    Method List

  • -
  • +
  • #single_stanza_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -33596,7 +33620,7 @@

    Method List

  • -
  • +
  • site_packages Language::Python @@ -33604,7 +33628,7 @@

    Method List

  • -
  • +
  • #site_packages Language::Python::Virtualenv::Virtualenv @@ -33612,7 +33636,7 @@

    Method List

  • -
  • +
  • #size RuboCop::Cop::HelperFunctions @@ -33620,7 +33644,7 @@

    Method List

  • -
  • +
  • #size Mechanize::HTTP::ContentDisposition @@ -33628,7 +33652,7 @@

    Method List

  • -
  • +
  • #skip Livecheck @@ -33636,7 +33660,7 @@

    Method List

  • -
  • +
  • skip Dependency @@ -33644,7 +33668,7 @@

    Method List

  • -
  • +
  • #skip? Livecheck @@ -33652,7 +33676,7 @@

    Method List

  • -
  • +
  • #skip_cask_deps? Cask::Installer @@ -33660,7 +33684,7 @@

    Method List

  • -
  • +
  • #skip_cask_deps? Homebrew::Cmd::Reinstall::Args @@ -33668,7 +33692,7 @@

    Method List

  • -
  • +
  • #skip_cask_deps? Homebrew::Cmd::InstallCmd::Args @@ -33676,7 +33700,7 @@

    Method List

  • -
  • +
  • #skip_cask_deps? Homebrew::Cmd::UpgradeCmd::Args @@ -33684,7 +33708,7 @@

    Method List

  • -
  • +
  • skip_clean Formula @@ -33692,7 +33716,7 @@

    Method List

  • -
  • +
  • skip_clean_formula? Homebrew::Cleanup @@ -33700,7 +33724,7 @@

    Method List

  • -
  • +
  • #skip_cxxstdlib_check? Formula @@ -33708,7 +33732,7 @@

    Method List

  • -
  • +
  • skip_information Homebrew::Livecheck::SkipConditions @@ -33716,7 +33740,7 @@

    Method List

  • -
  • +
  • #skip_msg Livecheck @@ -33724,7 +33748,7 @@

    Method List

  • -
  • +
  • skip_or_later_bottles? Homebrew::EnvConfig @@ -33732,7 +33756,7 @@

    Method List

  • -
  • +
  • #skip_post_install? FormulaInstaller @@ -33740,7 +33764,7 @@

    Method List

  • -
  • +
  • #skip_post_install? Homebrew::Cmd::InstallCmd::Args @@ -33748,7 +33772,7 @@

    Method List

  • -
  • +
  • #skip_recommended? Homebrew::Cmd::Deps::Args @@ -33756,7 +33780,7 @@

    Method List

  • -
  • +
  • #skip_recommended? Homebrew::Cmd::Uses::Args @@ -33764,7 +33788,7 @@

    Method List

  • -
  • +
  • #skip_relocation? BottleSpecification @@ -33772,7 +33796,7 @@

    Method List

  • -
  • +
  • #skip_relocation? Bottle @@ -33780,7 +33804,7 @@

    Method List

  • -
  • +
  • #skip_relocation? Homebrew::DevCmd::Bottle::Args @@ -33788,7 +33812,7 @@

    Method List

  • -
  • +
  • #skip_style? Homebrew::DevCmd::Audit::Args @@ -33796,7 +33820,7 @@

    Method List

  • -
  • +
  • #sockets Homebrew::Service @@ -33804,7 +33828,7 @@

    Method List

  • -
  • +
  • sorbet_runtime? Homebrew::EnvConfig @@ -33812,7 +33836,7 @@

    Method List

  • -
  • +
  • sorbet_runtime_path Utils::Backtrace @@ -33820,7 +33844,7 @@

    Method List

  • -
  • +
  • #sort_array RuboCop::Cop::Cask::ArrayAlphabetization @@ -33828,7 +33852,7 @@

    Method List

  • -
  • +
  • #sort_conditional_dependencies! RuboCop::Cop::FormulaAudit::DependencyOrder @@ -33836,7 +33860,7 @@

    Method List

  • -
  • +
  • #sort_dependencies_by_type RuboCop::Cop::FormulaAudit::DependencyOrder @@ -33844,7 +33868,7 @@

    Method List

  • -
  • +
  • sort_items Homebrew::Livecheck::Strategy::Sparkle @@ -33852,7 +33876,7 @@

    Method List

  • -
  • +
  • sort_key_for_path Homebrew::Manpages @@ -33860,7 +33884,7 @@

    Method List

  • -
  • +
  • #source Tab @@ -33868,7 +33892,7 @@

    Method List

  • -
  • +
  • #source Cask::Cask @@ -33876,7 +33900,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::SDK @@ -33884,7 +33908,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::XcodeSDKLocator @@ -33892,7 +33916,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::CLTSDKLocator @@ -33900,7 +33924,7 @@

    Method List

  • -
  • +
  • #source Cask::Artifact::Relocated @@ -33908,7 +33932,7 @@

    Method List

  • -
  • +
  • #source_buffer RuboCop::Cop::HelperFunctions @@ -33916,7 +33940,7 @@

    Method List

  • -
  • +
  • source_download Homebrew::API::Cask @@ -33924,7 +33948,7 @@

    Method List

  • -
  • +
  • source_download Homebrew::API::Formula @@ -33932,7 +33956,7 @@

    Method List

  • -
  • +
  • #source_modified_time Tab @@ -33940,7 +33964,7 @@

    Method List

  • -
  • +
  • #source_modified_time Resource @@ -33948,7 +33972,7 @@

    Method List

  • -
  • +
  • #source_modified_time AbstractDownloadStrategy @@ -33956,7 +33980,7 @@

    Method List

  • -
  • +
  • #source_modified_time SubversionDownloadStrategy @@ -33964,7 +33988,7 @@

    Method List

  • -
  • +
  • #source_modified_time GitDownloadStrategy @@ -33972,7 +33996,7 @@

    Method List

  • -
  • +
  • #source_modified_time CVSDownloadStrategy @@ -33980,7 +34004,7 @@

    Method List

  • -
  • +
  • #source_modified_time MercurialDownloadStrategy @@ -33988,7 +34012,7 @@

    Method List

  • -
  • +
  • #source_modified_time BazaarDownloadStrategy @@ -33996,7 +34020,7 @@

    Method List

  • -
  • +
  • #source_modified_time FossilDownloadStrategy @@ -34004,7 +34028,7 @@

    Method List

  • -
  • +
  • #source_range RuboCop::Cask::AST::Stanza @@ -34012,7 +34036,7 @@

    Method List

  • -
  • +
  • #source_range RuboCop::Cask::AST::CaskHeader @@ -34020,7 +34044,7 @@

    Method List

  • -
  • +
  • #source_range_with_comments RuboCop::Cask::AST::Stanza @@ -34028,7 +34052,7 @@

    Method List

  • -
  • +
  • #sourcefile_path Cask::Cask @@ -34036,7 +34060,7 @@

    Method List

  • -
  • +
  • #spec Tab @@ -34044,7 +34068,7 @@

    Method List

  • -
  • +
  • #spec GitHubRunner @@ -34052,7 +34076,7 @@

    Method List

  • -
  • +
  • #spec_name Homebrew::ResourceAuditor @@ -34060,7 +34084,7 @@

    Method List

  • -
  • +
  • #specification_for Utils::Bottles::Collector @@ -34068,7 +34092,7 @@

    Method List

  • -
  • +
  • #specified_name Formula @@ -34076,7 +34100,7 @@

    Method List

  • -
  • +
  • #specified_path Formula @@ -34084,7 +34108,7 @@

    Method List

  • -
  • +
  • #specs URL @@ -34092,7 +34116,7 @@

    Method List

  • -
  • +
  • #specs Cask::URL::DSL @@ -34100,7 +34124,7 @@

    Method List

  • -
  • +
  • #specs Resource @@ -34108,7 +34132,7 @@

    Method List

  • -
  • +
  • #specs Homebrew::ResourceAuditor @@ -34116,7 +34140,7 @@

    Method List

  • -
  • +
  • sponsorships GitHub @@ -34124,7 +34148,7 @@

    Method List

  • -
  • +
  • #squash_package_commits Homebrew::DevCmd::PrPull @@ -34132,7 +34156,7 @@

    Method List

  • -
  • +
  • #src Keg::LinkError @@ -34140,7 +34164,7 @@

    Method List

  • -
  • +
  • sse3? Hardware::CPU @@ -34148,7 +34172,7 @@

    Method List

  • -
  • +
  • sse4? Hardware::CPU @@ -34156,7 +34180,7 @@

    Method List

  • -
  • +
  • sse4_2? Hardware::CPU @@ -34164,7 +34188,7 @@

    Method List

  • -
  • +
  • ssh_config_path Homebrew::EnvConfig @@ -34172,7 +34196,7 @@

    Method List

  • -
  • +
  • ssse3? Hardware::CPU @@ -34180,7 +34204,7 @@

    Method List

  • -
  • +
  • #stable Formula @@ -34188,7 +34212,7 @@

    Method List

  • -
  • +
  • stable Formula @@ -34196,7 +34220,7 @@

    Method List

  • -
  • +
  • #stable? Tab @@ -34204,7 +34228,7 @@

    Method List

  • -
  • +
  • #stable? BuildOptions @@ -34212,7 +34236,7 @@

    Method List

  • -
  • +
  • #stable_version Tab @@ -34220,7 +34244,7 @@

    Method List

  • -
  • +
  • #stackprof? Homebrew::DevCmd::Prof::Args @@ -34228,7 +34252,7 @@

    Method List

  • -
  • +
  • #stage Resource @@ -34236,7 +34260,7 @@

    Method List

  • -
  • +
  • #stage Resource::Go @@ -34244,7 +34268,7 @@

    Method List

  • -
  • +
  • #stage Bottle @@ -34252,7 +34276,7 @@

    Method List

  • -
  • +
  • #stage Cask::Installer @@ -34260,7 +34284,7 @@

    Method List

  • -
  • +
  • #stage AbstractDownloadStrategy::Pourable @@ -34268,7 +34292,7 @@

    Method List

  • -
  • +
  • #stage AbstractDownloadStrategy @@ -34276,7 +34300,7 @@

    Method List

  • -
  • +
  • #stage NoUnzipCurlDownloadStrategy @@ -34284,7 +34308,7 @@

    Method List

  • -
  • +
  • stage_deps Language::Go @@ -34292,7 +34316,7 @@

    Method List

  • -
  • +
  • #staged_path Cask::DSL @@ -34300,7 +34324,7 @@

    Method List

  • -
  • +
  • #staged_path Cask::Cask @@ -34308,7 +34332,7 @@

    Method List

  • -
  • +
  • #staged_path_join_executable Cask::Artifact::AbstractArtifact @@ -34316,7 +34340,7 @@

    Method List

  • -
  • +
  • #staging ResourceStageContext @@ -34324,7 +34348,7 @@

    Method List

  • -
  • +
  • stale? Homebrew::Cleanup @@ -34332,7 +34356,7 @@

    Method List

  • -
  • +
  • #standardized_arch Utils::Bottles::Tag @@ -34340,7 +34364,7 @@

    Method List

  • -
  • +
  • #stanza Utils::AST::FormulaAST @@ -34348,7 +34372,7 @@

    Method List

  • -
  • +
  • #stanza? RuboCop::AST::Node @@ -34356,7 +34380,7 @@

    Method List

  • -
  • +
  • #stanza_group RuboCop::Cask::AST::Stanza @@ -34364,7 +34388,7 @@

    Method List

  • -
  • +
  • #stanza_index RuboCop::Cask::AST::Stanza @@ -34372,7 +34396,7 @@

    Method List

  • -
  • +
  • #stanza_name RuboCop::Cask::AST::Stanza @@ -34380,7 +34404,7 @@

    Method List

  • -
  • +
  • #stanza_options Cask::Artifact::Pkg @@ -34388,7 +34412,7 @@

    Method List

  • -
  • +
  • stanza_text Utils::AST @@ -34396,7 +34420,7 @@

    Method List

  • -
  • +
  • #stanzas RuboCop::Cask::AST::StanzaBlock @@ -34404,7 +34428,7 @@

    Method List

  • -
  • +
  • #stanzas RuboCop::Cask::AST::CaskBlock @@ -34412,7 +34436,7 @@

    Method List

  • -
  • +
  • #start_column RuboCop::Cop::HelperFunctions @@ -34420,7 +34444,7 @@

    Method List

  • -
  • +
  • #start_upgrade Cask::Installer @@ -34428,7 +34452,7 @@

    Method List

  • -
  • +
  • #start_with Homebrew::DevCmd::Bump::Args @@ -34436,7 +34460,7 @@

    Method List

  • -
  • +
  • #stat? Homebrew::Cmd::Log::Args @@ -34444,7 +34468,7 @@

    Method List

  • -
  • +
  • #state_file Homebrew::DevCmd::BumpUnversionedCasks::Args @@ -34452,7 +34476,7 @@

    Method List

  • -
  • +
  • #status ErrorDuringExecution @@ -34460,7 +34484,7 @@

    Method List

  • -
  • +
  • #status SystemCommand::Result @@ -34468,7 +34492,7 @@

    Method List

  • -
  • +
  • status Cask::Quarantine @@ -34476,7 +34500,7 @@

    Method List

  • -
  • +
  • status_hash Homebrew::Livecheck @@ -34484,7 +34508,7 @@

    Method List

  • -
  • +
  • #std? BuildEnvironment @@ -34492,7 +34516,7 @@

    Method List

  • -
  • +
  • #std_cabal_v2_args Formula @@ -34500,7 +34524,7 @@

    Method List

  • -
  • +
  • #std_cargo_args Formula @@ -34508,7 +34532,7 @@

    Method List

  • -
  • +
  • #std_cmake_args Formula @@ -34516,7 +34540,7 @@

    Method List

  • -
  • +
  • #std_configure_args Formula @@ -34524,7 +34548,7 @@

    Method List

  • -
  • +
  • #std_go_args Formula @@ -34532,7 +34556,7 @@

    Method List

  • -
  • +
  • #std_meson_args Formula @@ -34540,7 +34564,7 @@

    Method List

  • -
  • +
  • std_npm_install_args Language::Node @@ -34548,7 +34572,7 @@

    Method List

  • -
  • +
  • #std_pip_args Formula @@ -34556,7 +34580,7 @@

    Method List

  • -
  • +
  • #std_service_path_env Homebrew::Service @@ -34564,7 +34588,7 @@

    Method List

  • -
  • +
  • #stderr ErrorDuringExecution @@ -34572,7 +34596,7 @@

    Method List

  • -
  • +
  • #stderr SystemCommand::Result @@ -34580,7 +34604,7 @@

    Method List

  • -
  • +
  • #stdlib Tab @@ -34588,7 +34612,7 @@

    Method List

  • -
  • +
  • #stdout SystemCommand::Result @@ -34596,7 +34620,7 @@

    Method List

  • -
  • +
  • #stem Pathname @@ -34604,7 +34628,7 @@

    Method List

  • -
  • +
  • #store LinkageChecker @@ -34612,7 +34636,7 @@

    Method List

  • -
  • +
  • #strategy Livecheck @@ -34620,7 +34644,7 @@

    Method List

  • -
  • +
  • #strategy_block Livecheck @@ -34628,7 +34652,7 @@

    Method List

  • -
  • +
  • #strict? Cask::Audit @@ -34636,7 +34660,7 @@

    Method List

  • -
  • +
  • #strict? Homebrew::DevCmd::Audit::Args @@ -34644,7 +34668,7 @@

    Method List

  • -
  • +
  • #strict? Homebrew::DevCmd::Linkage::Args @@ -34652,7 +34676,7 @@

    Method List

  • -
  • +
  • #strict? Homebrew::DevCmd::BumpFormulaPr::Args @@ -34660,7 +34684,7 @@

    Method List

  • -
  • +
  • #strictness Attr @@ -34668,7 +34692,7 @@

    Method List

  • -
  • +
  • strikethrough Tty @@ -34676,7 +34700,7 @@

    Method List

  • -
  • +
  • #string_content RuboCop::Cop::HelperFunctions @@ -34684,7 +34708,7 @@

    Method List

  • -
  • +
  • string_to_license_expression SPDX @@ -34692,7 +34716,7 @@

    Method List

  • -
  • +
  • #strip EmbeddedPatch @@ -34700,7 +34724,7 @@

    Method List

  • -
  • +
  • #strip ExternalPatch @@ -34708,7 +34732,7 @@

    Method List

  • -
  • +
  • strip_ansi Tty @@ -34716,7 +34740,7 @@

    Method List

  • -
  • +
  • #strip_patch MacOSVersion @@ -34724,7 +34748,7 @@

    Method List

  • -
  • +
  • #style_exceptions Tap @@ -34732,7 +34756,7 @@

    Method List

  • -
  • +
  • #style_exceptions_dir RuboCop::Cop::FormulaCop @@ -34740,7 +34764,7 @@

    Method List

  • -
  • +
  • #sub! StringInreplaceExtension @@ -34748,7 +34772,7 @@

    Method List

  • -
  • +
  • #subdirs Pathname @@ -34756,7 +34780,7 @@

    Method List

  • -
  • +
  • #subversion_dep_if_needed DependencyCollector @@ -34764,7 +34788,7 @@

    Method List

  • -
  • +
  • success Formatter @@ -34772,7 +34796,7 @@

    Method List

  • -
  • +
  • #success? Cask::Audit @@ -34780,7 +34804,7 @@

    Method List

  • -
  • +
  • #success? SystemCommand::Result @@ -34788,7 +34812,7 @@

    Method List

  • -
  • +
  • #sudo? SystemCommand @@ -34796,7 +34820,7 @@

    Method List

  • -
  • +
  • #sudo_as_root? SystemCommand @@ -34804,7 +34828,7 @@

    Method List

  • -
  • +
  • sudo_askpass Homebrew::EnvConfig @@ -34812,7 +34836,7 @@

    Method List

  • -
  • +
  • sudo_through_sudo_user? Homebrew::EnvConfig @@ -34820,7 +34844,7 @@

    Method List

  • -
  • +
  • suggest_command Homebrew::MissingFormula @@ -34828,7 +34852,7 @@

    Method List

  • -
  • +
  • #suggest_typed? Homebrew::DevCmd::Typecheck::Args @@ -34836,7 +34860,7 @@

    Method List

  • -
  • +
  • #suggestion Keg::ConflictError @@ -34844,7 +34868,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Pkg @@ -34852,7 +34876,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Installer @@ -34860,7 +34884,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Relocated @@ -34868,7 +34892,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::StageOnly @@ -34876,7 +34900,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractArtifact @@ -34884,7 +34908,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractUninstall @@ -34892,7 +34916,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractFlightBlock @@ -34900,7 +34924,7 @@

    Method List

  • -
  • +
  • #summarize_installed Cask::Artifact::Moved @@ -34908,7 +34932,7 @@

    Method List

  • -
  • +
  • #summarize_installed Cask::Artifact::Symlinked @@ -34916,7 +34940,7 @@

    Method List

  • -
  • +
  • #summary Cask::Audit @@ -34924,7 +34948,7 @@

    Method List

  • -
  • +
  • #summary Cask::Installer @@ -34932,7 +34956,7 @@

    Method List

  • -
  • +
  • #summary FormulaInstaller @@ -34940,7 +34964,7 @@

    Method List

  • -
  • +
  • #supersedes_an_installed_formula? Formula @@ -34948,7 +34972,7 @@

    Method List

  • -
  • +
  • #supported_configuration_checks Homebrew::Diagnostic::Checks @@ -34956,7 +34980,7 @@

    Method List

  • -
  • +
  • supports_partial_clone_sparse_checkout? Utils::Git @@ -34964,7 +34988,7 @@

    Method List

  • -
  • +
  • #suppress_move_to_applications Cask::DSL::Postflight @@ -34972,7 +34996,7 @@

    Method List

  • -
  • +
  • svn Homebrew::EnvConfig @@ -34980,7 +35004,7 @@

    Method List

  • -
  • +
  • #switch Homebrew::CLI::Parser @@ -34988,7 +35012,7 @@

    Method List

  • -
  • +
  • #symlink_files Keg @@ -34996,7 +35020,7 @@

    Method List

  • -
  • +
  • #symlink_location Homebrew::API::DownloadStrategy @@ -35004,7 +35028,7 @@

    Method List

  • -
  • +
  • #symlink_location Homebrew::API::Download @@ -35012,7 +35036,7 @@

    Method List

  • -
  • +
  • #symlink_location AbstractFileDownloadStrategy @@ -35020,7 +35044,7 @@

    Method List

  • -
  • +
  • #synced_versions_formulae Tap @@ -35028,7 +35052,7 @@

    Method List

  • -
  • +
  • #synced_with_other_formulae? Formula @@ -35036,7 +35060,7 @@

    Method List

  • -
  • +
  • #syntax? Homebrew::Cmd::ReadallCmd::Args @@ -35044,6 +35068,14 @@

    Method List

  • +
  • +
    + sysconfdir + OS::Linux::Ld +
    +
  • + +
  • system @@ -35109,6 +35141,14 @@

    Method List

  • +
    + system_dirs + OS::Linux::Ld +
    +
  • + + +
  • system_env_takes_priority? Homebrew::EnvConfig @@ -35116,7 +35156,7 @@

    Method List

  • -
  • +
  • system_version OS::Linux::Glibc @@ -35124,7 +35164,7 @@

    Method List

  • -
  • +
  • systemctl Utils::Service @@ -35132,7 +35172,7 @@

    Method List

  • -
  • +
  • systemctl? Utils::Service @@ -35140,7 +35180,7 @@

    Method List

  • -
  • +
  • #systemd_service_path Formula @@ -35148,7 +35188,7 @@

    Method List

  • -
  • +
  • #systemd_timer_path Formula @@ -35156,7 +35196,7 @@

    Method List

  • -
  • +
  • #t? Homebrew::Cmd::List::Args @@ -35164,7 +35204,7 @@

    Method List

  • -
  • +
  • #tab Keg @@ -35172,7 +35212,7 @@

    Method List

  • -
  • +
  • #tab_attributes Bottle @@ -35180,7 +35220,7 @@

    Method List

  • -
  • +
  • #tabfile Tab @@ -35188,7 +35228,7 @@

    Method List

  • -
  • +
  • table_output Utils::Analytics @@ -35196,7 +35236,7 @@

    Method List

  • -
  • +
  • #tag Utils::Bottles::MacOSOverride @@ -35204,7 +35244,7 @@

    Method List

  • -
  • +
  • #tag Cask::URL::DSL @@ -35212,7 +35252,7 @@

    Method List

  • -
  • +
  • #tag Bottle::Filename @@ -35220,7 +35260,7 @@

    Method List

  • -
  • +
  • #tag Bottle @@ -35228,7 +35268,7 @@

    Method List

  • -
  • +
  • tag Utils::Bottles @@ -35236,7 +35276,7 @@

    Method List

  • -
  • +
  • #tag Utils::Bottles::TagSpecification @@ -35244,7 +35284,7 @@

    Method List

  • -
  • +
  • #tag Homebrew::DevCmd::Unbottled::Args @@ -35252,7 +35292,7 @@

    Method List

  • -
  • +
  • #tag Homebrew::DevCmd::BumpFormulaPr::Args @@ -35260,7 +35300,7 @@

    Method List

  • -
  • +
  • #tag? BottleSpecification @@ -35268,7 +35308,7 @@

    Method List

  • -
  • +
  • #tag? Utils::Bottles::Collector @@ -35276,7 +35316,7 @@

    Method List

  • -
  • +
  • tag_info Homebrew::Livecheck::Strategy::Git @@ -35284,7 +35324,7 @@

    Method List

  • -
  • +
  • #tag_specification_for BottleSpecification @@ -35292,7 +35332,7 @@

    Method List

  • -
  • +
  • #tag_to_cellar BottleSpecification @@ -35300,7 +35340,7 @@

    Method List

  • -
  • +
  • #tags Dependable @@ -35308,7 +35348,7 @@

    Method List

  • -
  • +
  • #tags Utils::Bottles::Collector @@ -35316,7 +35356,7 @@

    Method List

  • -
  • +
  • #tap Tab @@ -35324,7 +35364,7 @@

    Method List

  • -
  • +
  • #tap TapConfig @@ -35332,7 +35372,7 @@

    Method List

  • -
  • +
  • #tap Formula @@ -35340,7 +35380,7 @@

    Method List

  • -
  • +
  • #tap Cask::Cask @@ -35348,7 +35388,7 @@

    Method List

  • -
  • +
  • #tap Formulary::FormulaLoader @@ -35356,7 +35396,7 @@

    Method List

  • -
  • +
  • #tap Formulary::FromTapLoader @@ -35364,7 +35404,7 @@

    Method List

  • -
  • +
  • #tap Dependency @@ -35372,7 +35412,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaOrCaskUnavailableError @@ -35380,7 +35420,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaUnavailableError @@ -35388,7 +35428,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaClassUnavailableError @@ -35396,7 +35436,7 @@

    Method List

  • -
  • +
  • #tap BottleSpecification @@ -35404,7 +35444,7 @@

    Method List

  • -
  • +
  • #tap Cask::TapCaskUnavailableError @@ -35412,7 +35452,7 @@

    Method List

  • -
  • +
  • #tap Cask::CaskLoader::AbstractContentLoader @@ -35420,7 +35460,7 @@

    Method List

  • -
  • +
  • #tap Cask::CaskLoader::FromTapLoader @@ -35428,7 +35468,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::Bump::Args @@ -35436,7 +35476,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::Audit::Args @@ -35444,7 +35484,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::Create::Args @@ -35452,7 +35492,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::PrPull::Args @@ -35460,7 +35500,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::PrPublish::Args @@ -35468,7 +35508,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::PrAutomerge::Args @@ -35476,7 +35516,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::LivecheckCmd::Args @@ -35484,7 +35524,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::DevCmd::DispatchBuildBottle::Args @@ -35492,7 +35532,7 @@

    Method List

  • -
  • +
  • #tap= Tab @@ -35500,7 +35540,7 @@

    Method List

  • -
  • +
  • #tap_and_name_comparison Kernel @@ -35508,7 +35548,7 @@

    Method List

  • -
  • +
  • #tap_audit_exceptions Homebrew::TapAuditor @@ -35516,7 +35556,7 @@

    Method List

  • -
  • +
  • tap_cask_token_type Cask::CaskLoader @@ -35524,7 +35564,7 @@

    Method List

  • -
  • +
  • tap_error_url Utils::Backtrace @@ -35532,7 +35572,7 @@

    Method List

  • -
  • +
  • tap_formula_name_type Formulary @@ -35540,7 +35580,7 @@

    Method List

  • -
  • +
  • tap_from_source_download Homebrew::API @@ -35548,7 +35588,7 @@

    Method List

  • -
  • +
  • #tap_git_head Cask::Cask @@ -35556,7 +35596,7 @@

    Method List

  • -
  • +
  • tap_git_head Homebrew::API::Formula @@ -35564,7 +35604,7 @@

    Method List

  • -
  • +
  • tap_migration_oldnames Tap @@ -35572,7 +35612,7 @@

    Method List

  • -
  • +
  • tap_migration_reason Homebrew::MissingFormula @@ -35580,7 +35620,7 @@

    Method List

  • -
  • +
  • #tap_migrations Tap @@ -35588,7 +35628,7 @@

    Method List

  • -
  • +
  • #tap_migrations CoreCaskTap @@ -35596,7 +35636,7 @@

    Method List

  • -
  • +
  • tap_migrations Homebrew::API::Formula @@ -35604,7 +35644,7 @@

    Method List

  • -
  • +
  • #tap_pypi_formula_mappings Homebrew::TapAuditor @@ -35612,7 +35652,7 @@

    Method List

  • -
  • +
  • #tap_style_exception? RuboCop::Cop::FormulaCop @@ -35620,7 +35660,7 @@

    Method List

  • -
  • +
  • #tap_style_exceptions Homebrew::TapAuditor @@ -35628,7 +35668,7 @@

    Method List

  • -
  • +
  • #taps TapFormulaAmbiguityError @@ -35636,7 +35676,7 @@

    Method List

  • -
  • +
  • #tar_args Homebrew::DevCmd::Bottle @@ -35644,7 +35684,7 @@

    Method List

  • -
  • +
  • tar_needs_xz_dependency? DependencyCollector @@ -35652,7 +35692,7 @@

    Method List

  • -
  • +
  • #target Cask::Artifact::Relocated @@ -35660,7 +35700,7 @@

    Method List

  • -
  • +
  • temp Homebrew::EnvConfig @@ -35668,7 +35708,7 @@

    Method List

  • -
  • +
  • #template Homebrew::FormulaCreator @@ -35676,7 +35716,7 @@

    Method List

  • -
  • +
  • #temporary_path AbstractFileDownloadStrategy @@ -35684,7 +35724,7 @@

    Method List

  • -
  • +
  • #test Debrew::Formula @@ -35692,7 +35732,7 @@

    Method List

  • -
  • +
  • test Formula @@ -35700,7 +35740,7 @@

    Method List

  • -
  • +
  • #test? Dependable @@ -35708,7 +35748,7 @@

    Method List

  • -
  • +
  • #test? Homebrew::DevCmd::Linkage::Args @@ -35716,7 +35756,7 @@

    Method List

  • -
  • +
  • #test_calls RuboCop::Cop::FormulaAudit::Test @@ -35724,7 +35764,7 @@

    Method List

  • -
  • +
  • #test_dependency? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -35732,7 +35772,7 @@

    Method List

  • -
  • +
  • #testpath Formula @@ -35740,7 +35780,7 @@

    Method List

  • -
  • +
  • #text Homebrew::FormulaAuditor @@ -35748,7 +35788,7 @@

    Method List

  • -
  • +
  • #text_files Keg @@ -35756,7 +35796,7 @@

    Method List

  • -
  • +
  • text_matches_in_file Keg @@ -35764,7 +35804,7 @@

    Method List

  • -
  • +
  • #third Array @@ -35772,7 +35812,7 @@

    Method List

  • -
  • +
  • #throttle Livecheck @@ -35780,7 +35820,7 @@

    Method List

  • -
  • +
  • #time Tab @@ -35788,7 +35828,7 @@

    Method List

  • -
  • +
  • #time Formula @@ -35796,7 +35836,7 @@

    Method List

  • -
  • +
  • #time_file_size Cask::Download @@ -35804,7 +35844,7 @@

    Method List

  • -
  • +
  • #timed? Homebrew::Service @@ -35812,7 +35852,7 @@

    Method List

  • -
  • +
  • #timeout LinuxRunnerSpec @@ -35820,7 +35860,7 @@

    Method List

  • -
  • +
  • #timeout MacOSRunnerSpec @@ -35828,7 +35868,7 @@

    Method List

  • -
  • +
  • #timeout Homebrew::DevCmd::DispatchBuildBottle::Args @@ -35836,7 +35876,7 @@

    Method List

  • -
  • +
  • #timestamped_versions Cask::Cask @@ -35844,7 +35884,7 @@

    Method List

  • -
  • +
  • #title Homebrew::Livecheck::Strategy::Sparkle::Item @@ -35852,7 +35892,7 @@

    Method List

  • -
  • +
  • title_info Cask::Info @@ -35860,7 +35900,7 @@

    Method List

  • -
  • +
  • #tmpdir Mktemp @@ -35868,7 +35908,7 @@

    Method List

  • -
  • +
  • #to Homebrew::DevCmd::Contributions::Args @@ -35876,7 +35916,7 @@

    Method List

  • -
  • +
  • #to_a Cask::ArtifactSet @@ -35884,7 +35924,7 @@

    Method List

  • -
  • +
  • #to_a Cask::Artifact::Relocated @@ -35892,7 +35932,7 @@

    Method List

  • -
  • +
  • #to_a Cask::Artifact::StageOnly @@ -35900,7 +35940,7 @@

    Method List

  • -
  • +
  • #to_a Options @@ -35908,7 +35948,7 @@

    Method List

  • -
  • +
  • #to_args Cask::Artifact::AbstractArtifact @@ -35916,7 +35956,7 @@

    Method List

  • -
  • +
  • #to_ary PATH @@ -35924,7 +35964,7 @@

    Method List

  • -
  • +
  • #to_ary Options @@ -35932,7 +35972,7 @@

    Method List

  • -
  • +
  • #to_ary SystemCommand::Result @@ -35940,7 +35980,7 @@

    Method List

  • -
  • +
  • #to_bottle_hash Tab @@ -35948,7 +35988,7 @@

    Method List

  • -
  • +
  • #to_casks Homebrew::CLI::NamedArgs @@ -35956,7 +35996,7 @@

    Method List

  • -
  • +
  • #to_default_kegs Homebrew::CLI::NamedArgs @@ -35964,7 +36004,7 @@

    Method List

  • -
  • +
  • #to_f Version::Token @@ -35972,7 +36012,7 @@

    Method List

  • -
  • +
  • #to_f Version @@ -35980,7 +36020,7 @@

    Method List

  • -
  • +
  • #to_formula Keg @@ -35988,7 +36028,7 @@

    Method List

  • -
  • +
  • #to_formula Dependency @@ -35996,7 +36036,7 @@

    Method List

  • -
  • +
  • #to_formulae Homebrew::CLI::NamedArgs @@ -36004,7 +36044,7 @@

    Method List

  • -
  • +
  • #to_formulae_and_casks Homebrew::CLI::NamedArgs @@ -36012,7 +36052,7 @@

    Method List

  • -
  • +
  • #to_formulae_and_casks_and_unavailable Homebrew::CLI::NamedArgs @@ -36020,7 +36060,7 @@

    Method List

  • -
  • +
  • #to_formulae_to_casks Homebrew::CLI::NamedArgs @@ -36028,7 +36068,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Cask @@ -36036,7 +36076,7 @@

    Method List

  • -
  • +
  • #to_h LinuxRunnerSpec @@ -36044,7 +36084,7 @@

    Method List

  • -
  • +
  • #to_h MacOSRunnerSpec @@ -36052,7 +36092,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Artifact::Installer @@ -36060,7 +36100,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Artifact::AbstractUninstall @@ -36068,7 +36108,7 @@

    Method List

  • -
  • +
  • #to_hash Tap @@ -36076,7 +36116,7 @@

    Method List

  • -
  • +
  • #to_hash Homebrew::Service @@ -36084,7 +36124,7 @@

    Method List

  • -
  • +
  • #to_hash Livecheck @@ -36092,7 +36132,7 @@

    Method List

  • -
  • +
  • #to_hash KegOnlyReason @@ -36100,7 +36140,7 @@

    Method List

  • -
  • +
  • #to_hash EnvMethods @@ -36108,7 +36148,7 @@

    Method List

  • -
  • +
  • #to_i Version::Token @@ -36116,7 +36156,7 @@

    Method List

  • -
  • +
  • #to_i Version @@ -36124,7 +36164,7 @@

    Method List

  • -
  • +
  • #to_installed_taps Homebrew::CLI::NamedArgs @@ -36132,7 +36172,7 @@

    Method List

  • -
  • +
  • #to_internal_api_hash CoreTap @@ -36140,7 +36180,7 @@

    Method List

  • -
  • +
  • #to_internal_api_hash CoreCaskTap @@ -36148,7 +36188,7 @@

    Method List

  • -
  • +
  • #to_json Tab @@ -36156,7 +36196,7 @@

    Method List

  • -
  • +
  • #to_json Version @@ -36164,7 +36204,7 @@

    Method List

  • -
  • +
  • #to_json Cask::Config @@ -36172,7 +36212,7 @@

    Method List

  • -
  • +
  • #to_json Cask::DSL::ConflictsWith @@ -36180,7 +36220,7 @@

    Method List

  • -
  • +
  • #to_json MacOSRequirement @@ -36188,7 +36228,7 @@

    Method List

  • -
  • +
  • #to_kegs Homebrew::CLI::NamedArgs @@ -36196,7 +36236,7 @@

    Method List

  • -
  • +
  • #to_kegs_to_casks Homebrew::CLI::NamedArgs @@ -36204,7 +36244,7 @@

    Method List

  • -
  • +
  • #to_latest_kegs Homebrew::CLI::NamedArgs @@ -36212,7 +36252,7 @@

    Method List

  • -
  • +
  • #to_macos_version Utils::Bottles::Tag @@ -36220,7 +36260,7 @@

    Method List

  • -
  • +
  • #to_paths Homebrew::CLI::NamedArgs @@ -36228,7 +36268,7 @@

    Method List

  • -
  • +
  • #to_plist Homebrew::Service @@ -36236,7 +36276,7 @@

    Method List

  • -
  • +
  • to_rack Formulary @@ -36244,7 +36284,7 @@

    Method List

  • -
  • +
  • to_reason_string_or_symbol DeprecateDisable @@ -36252,7 +36292,7 @@

    Method List

  • -
  • +
  • #to_resolved_formulae Homebrew::CLI::NamedArgs @@ -36260,7 +36300,7 @@

    Method List

  • -
  • +
  • #to_resolved_formulae_to_casks Homebrew::CLI::NamedArgs @@ -36268,7 +36308,7 @@

    Method List

  • -
  • +
  • #to_s Keg::ConflictError @@ -36276,7 +36316,7 @@

    Method List

  • -
  • +
  • #to_s Keg::DirectoryNotWritableError @@ -36284,7 +36324,7 @@

    Method List

  • -
  • +
  • #to_s Tab @@ -36292,7 +36332,7 @@

    Method List

  • -
  • +
  • #to_s Tap @@ -36300,7 +36340,7 @@

    Method List

  • -
  • +
  • #to_s URL @@ -36308,7 +36348,7 @@

    Method List

  • -
  • +
  • #to_s Locale @@ -36316,7 +36356,7 @@

    Method List

  • -
  • +
  • #to_s Mktemp @@ -36324,7 +36364,7 @@

    Method List

  • -
  • +
  • #to_s Formula @@ -36332,7 +36372,7 @@

    Method List

  • -
  • +
  • #to_s Option @@ -36340,7 +36380,7 @@

    Method List

  • -
  • +
  • #to_s Options @@ -36348,7 +36388,7 @@

    Method List

  • -
  • +
  • #to_s Version::Token @@ -36356,7 +36396,7 @@

    Method List

  • -
  • +
  • #to_s Version @@ -36364,7 +36404,7 @@

    Method List

  • -
  • +
  • #to_s ResourceStageContext @@ -36372,7 +36412,7 @@

    Method List

  • -
  • +
  • #to_s Cask::Cask @@ -36380,7 +36420,7 @@

    Method List

  • -
  • +
  • to_s Tty @@ -36388,7 +36428,7 @@

    Method List

  • -
  • +
  • #to_s Dependency @@ -36396,7 +36436,7 @@

    Method List

  • -
  • +
  • #to_s UsageError @@ -36404,7 +36444,7 @@

    Method List

  • -
  • +
  • #to_s FormulaOrCaskUnavailableError @@ -36412,7 +36452,7 @@

    Method List

  • -
  • +
  • #to_s TapFormulaOrCaskUnavailableError @@ -36420,7 +36460,7 @@

    Method List

  • -
  • +
  • #to_s FormulaUnavailableError @@ -36428,7 +36468,7 @@

    Method List

  • -
  • +
  • #to_s FormulaClassUnavailableErrorModule @@ -36436,7 +36476,7 @@

    Method List

  • -
  • +
  • #to_s FormulaUnreadableErrorModule @@ -36444,7 +36484,7 @@

    Method List

  • -
  • +
  • #to_s TapFormulaUnavailableError @@ -36452,7 +36492,7 @@

    Method List

  • -
  • +
  • #to_s PyPI::Package @@ -36460,7 +36500,7 @@

    Method List

  • -
  • +
  • #to_s PkgVersion @@ -36468,7 +36508,7 @@

    Method List

  • -
  • +
  • #to_s Bottle::Filename @@ -36476,7 +36516,7 @@

    Method List

  • -
  • +
  • #to_s Utils::Bottles::Tag @@ -36484,7 +36524,7 @@

    Method List

  • -
  • +
  • #to_s GitRepository @@ -36492,7 +36532,7 @@

    Method List

  • -
  • +
  • #to_s Cask::MultipleCaskErrors @@ -36500,7 +36540,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskNotInstalledError @@ -36508,7 +36548,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskCannotBeInstalledError @@ -36516,7 +36556,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskConflictError @@ -36524,7 +36564,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnavailableError @@ -36532,7 +36572,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnreadableError @@ -36540,7 +36580,7 @@

    Method List

  • -
  • +
  • #to_s Cask::TapCaskUnavailableError @@ -36548,7 +36588,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskAlreadyCreatedError @@ -36556,7 +36596,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskCyclicDependencyError @@ -36564,7 +36604,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskSelfReferencingDependencyError @@ -36572,7 +36612,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnspecifiedError @@ -36580,7 +36620,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskInvalidError @@ -36588,7 +36628,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantineError @@ -36596,7 +36636,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantinePropagationError @@ -36604,7 +36644,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantineReleaseError @@ -36612,7 +36652,7 @@

    Method List

  • -
  • +
  • #to_s KegOnlyReason @@ -36620,7 +36660,7 @@

    Method List

  • -
  • +
  • #to_s Homebrew::SourceLocation @@ -36628,7 +36668,7 @@

    Method List

  • -
  • +
  • #to_s Cask::DSL::Caveats @@ -36636,7 +36676,7 @@

    Method List

  • -
  • +
  • #to_s Cask::DSL::Container @@ -36644,7 +36684,7 @@

    Method List

  • -
  • +
  • #to_s Homebrew::FormulaTextAuditor @@ -36652,7 +36692,7 @@

    Method List

  • -
  • +
  • #to_s GitHub::Actions::Annotation @@ -36660,7 +36700,7 @@

    Method List

  • -
  • +
  • #to_s Cask::Artifact::AbstractArtifact @@ -36668,7 +36708,7 @@

    Method List

  • -
  • +
  • #to_s Caveats @@ -36676,7 +36716,7 @@

    Method List

  • -
  • +
  • #to_s Checksum @@ -36684,7 +36724,7 @@

    Method List

  • -
  • +
  • #to_sentence Array @@ -36692,7 +36732,7 @@

    Method List

  • -
  • +
  • #to_str PATH @@ -36700,7 +36740,7 @@

    Method List

  • -
  • +
  • #to_str Version @@ -36708,7 +36748,7 @@

    Method List

  • -
  • +
  • #to_sym MacOSVersion @@ -36716,7 +36756,7 @@

    Method List

  • -
  • +
  • #to_sym Utils::Bottles::Tag @@ -36724,7 +36764,7 @@

    Method List

  • -
  • +
  • #to_systemd_timer Homebrew::Service @@ -36732,7 +36772,7 @@

    Method List

  • -
  • +
  • #to_systemd_unit Homebrew::Service @@ -36740,7 +36780,7 @@

    Method List

  • -
  • +
  • #to_tag? Homebrew::DevCmd::UpdateTest::Args @@ -36748,7 +36788,7 @@

    Method List

  • -
  • +
  • #to_taps Homebrew::CLI::NamedArgs @@ -36756,7 +36796,7 @@

    Method List

  • -
  • +
  • #to_yaml Cask::DSL::Container @@ -36764,7 +36804,7 @@

    Method List

  • -
  • +
  • toggle_no_translocation_bit Cask::Quarantine @@ -36772,7 +36812,7 @@

    Method List

  • -
  • +
  • #token Cask::DSL @@ -36780,7 +36820,7 @@

    Method List

  • -
  • +
  • #token Cask::Cask @@ -36788,7 +36828,7 @@

    Method List

  • -
  • +
  • #token Cask::AbstractCaskErrorWithToken @@ -36796,7 +36836,7 @@

    Method List

  • -
  • +
  • #token Cask::TapCaskAmbiguityError @@ -36804,7 +36844,7 @@

    Method List

  • -
  • +
  • #token Cask::CaskLoader::FromPathLoader @@ -36812,7 +36852,7 @@

    Method List

  • -
  • +
  • #token Cask::CaskLoader::FromAPILoader @@ -36820,7 +36860,7 @@

    Method List

  • -
  • +
  • #token_conflicts? Cask::Audit @@ -36828,7 +36868,7 @@

    Method List

  • -
  • +
  • #token_conflicts? Homebrew::DevCmd::Audit::Args @@ -36836,7 +36876,7 @@

    Method List

  • -
  • +
  • token_from Cask::Utils @@ -36844,7 +36884,7 @@

    Method List

  • -
  • +
  • tokens Cask::Caskroom @@ -36852,7 +36892,7 @@

    Method List

  • -
  • +
  • too_many_open_prs? GitHub @@ -36860,7 +36900,7 @@

    Method List

  • -
  • +
  • toolchain_path OS::Mac::Xcode @@ -36868,7 +36908,7 @@

    Method List

  • -
  • +
  • #top_level_info_plists Homebrew::UnversionedCaskChecker @@ -36876,7 +36916,7 @@

    Method List

  • -
  • +
  • #toplevel_stanzas RuboCop::Cask::AST::CaskBlock @@ -36884,7 +36924,7 @@

    Method List

  • -
  • +
  • #topological? Homebrew::Cmd::Deps::Args @@ -36892,7 +36932,7 @@

    Method List

  • -
  • +
  • #total? Homebrew::DevCmd::Unbottled::Args @@ -36900,7 +36940,7 @@

    Method List

  • -
  • +
  • #trailing_newline? Homebrew::FormulaTextAuditor @@ -36908,7 +36948,7 @@

    Method List

  • -
  • +
  • #tree? Homebrew::Cmd::Deps::Args @@ -36916,7 +36956,7 @@

    Method List

  • -
  • +
  • truncate Tty @@ -36924,7 +36964,7 @@

    Method List

  • -
  • +
  • #truncate_text_to_approximate_size Kernel @@ -36932,7 +36972,7 @@

    Method List

  • -
  • +
  • #trust_cert Cask::URL::DSL @@ -36940,7 +36980,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromBottleLoader @@ -36948,7 +36988,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromPathLoader @@ -36956,7 +36996,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromURILoader @@ -36964,7 +37004,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromTapLoader @@ -36972,7 +37012,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromNameLoader @@ -36980,7 +37020,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromKegLoader @@ -36988,7 +37028,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromCacheLoader @@ -36996,7 +37036,7 @@

    Method List

  • -
  • +
  • try_new Formulary::NullLoader @@ -37004,7 +37044,7 @@

    Method List

  • -
  • +
  • try_new Formulary::FromAPILoader @@ -37012,7 +37052,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromContentLoader @@ -37020,7 +37060,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromPathLoader @@ -37028,7 +37068,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromURILoader @@ -37036,7 +37076,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromTapLoader @@ -37044,7 +37084,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromInstanceLoader @@ -37052,7 +37092,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromAPILoader @@ -37060,7 +37100,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromNameLoader @@ -37068,7 +37108,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::FromInstalledPathLoader @@ -37076,7 +37116,7 @@

    Method List

  • -
  • +
  • try_new Cask::CaskLoader::NullLoader @@ -37084,7 +37124,7 @@

    Method List

  • -
  • +
  • try_parse Locale @@ -37092,7 +37132,7 @@

    Method List

  • -
  • +
  • #tsc Homebrew::Manpages::Variables @@ -37100,7 +37140,7 @@

    Method List

  • -
  • +
  • type Hardware::CPU @@ -37108,7 +37148,7 @@

    Method List

  • -
  • +
  • #type CompilerFailure @@ -37116,7 +37156,7 @@

    Method List

  • -
  • +
  • #type CompilerSelector::Compiler @@ -37124,7 +37164,7 @@

    Method List

  • -
  • +
  • #type CxxStdlib @@ -37132,7 +37172,7 @@

    Method List

  • -
  • +
  • #type Homebrew::DevCmd::Bump::VersionBumpInfo @@ -37140,7 +37180,7 @@

    Method List

  • -
  • +
  • type DeprecateDisable @@ -37148,7 +37188,7 @@

    Method List

  • -
  • +
  • #type Cask::DSL::Container @@ -37156,7 +37196,7 @@

    Method List

  • -
  • +
  • #type Mechanize::HTTP::ContentDisposition @@ -37164,7 +37204,7 @@

    Method List

  • -
  • +
  • #type_string CxxStdlib @@ -37172,7 +37212,7 @@

    Method List

  • -
  • +
  • #u? Homebrew::Cmd::Log::Args @@ -37180,7 +37220,7 @@

    Method List

  • -
  • +
  • #ubuntu? Homebrew::Cmd::SearchCmd::Args @@ -37188,7 +37228,7 @@

    Method List

  • -
  • +
  • #unbottled_dependencies FormulaInstaller @@ -37196,7 +37236,7 @@

    Method List

  • -
  • +
  • #unbrewed? Homebrew::Cmd::Prefix::Args @@ -37204,7 +37244,7 @@

    Method List

  • -
  • +
  • #undeclared_deps LinkageChecker @@ -37212,7 +37252,7 @@

    Method List

  • -
  • +
  • undeletable? OS::Mac @@ -37220,7 +37260,7 @@

    Method List

  • -
  • +
  • underline Tty @@ -37228,7 +37268,7 @@

    Method List

  • -
  • +
  • underscore Utils @@ -37236,7 +37276,7 @@

    Method List

  • -
  • +
  • unhook_raise Ignorable @@ -37244,7 +37284,7 @@

    Method List

  • -
  • +
  • #uninstall Keg @@ -37252,7 +37292,7 @@

    Method List

  • -
  • +
  • #uninstall Tap @@ -37260,7 +37300,7 @@

    Method List

  • -
  • +
  • #uninstall Cask::Pkg @@ -37268,7 +37308,7 @@

    Method List

  • -
  • +
  • #uninstall Cask::Installer @@ -37276,7 +37316,7 @@

    Method List

  • -
  • +
  • #uninstall_artifacts Cask::Installer @@ -37284,7 +37324,7 @@

    Method List

  • -
  • +
  • uninstall_casks Cask::Uninstall @@ -37292,7 +37332,7 @@

    Method List

  • -
  • +
  • uninstall_dsl_key Cask::Artifact::AbstractFlightBlock @@ -37300,7 +37340,7 @@

    Method List

  • -
  • +
  • #uninstall_existing_cask Cask::Installer @@ -37308,7 +37348,7 @@

    Method List

  • -
  • +
  • uninstall_kegs Homebrew::Uninstall @@ -37316,7 +37356,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Moved @@ -37324,7 +37364,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Qlplugin @@ -37332,7 +37372,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Symlinked @@ -37340,7 +37380,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Uninstall @@ -37348,7 +37388,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::KeyboardLayout @@ -37356,7 +37396,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::AbstractFlightBlock @@ -37364,7 +37404,7 @@

    Method List

  • -
  • +
  • #union? Homebrew::Cmd::Deps::Args @@ -37372,7 +37412,7 @@

    Method List

  • -
  • +
  • #universal? MachOShim @@ -37380,7 +37420,7 @@

    Method List

  • -
  • +
  • #unless_modifier? RuboCop::Cop::FormulaAudit::OptionDeclarations @@ -37388,7 +37428,7 @@

    Method List

  • -
  • +
  • #unlink Keg @@ -37396,7 +37436,7 @@

    Method List

  • -
  • +
  • unlink Homebrew::Unlink @@ -37404,7 +37444,7 @@

    Method List

  • -
  • +
  • unlink! Homebrew::Completions @@ -37412,7 +37452,7 @@

    Method List

  • -
  • +
  • unlink_completions Utils::Link @@ -37420,7 +37460,7 @@

    Method List

  • -
  • +
  • unlink_manpages Utils::Link @@ -37428,7 +37468,7 @@

    Method List

  • -
  • +
  • #unlink_newname Migrator @@ -37436,7 +37476,7 @@

    Method List

  • -
  • +
  • #unlink_oldname Migrator @@ -37444,7 +37484,7 @@

    Method List

  • -
  • +
  • #unlink_oldname_cellar Migrator @@ -37452,7 +37492,7 @@

    Method List

  • -
  • +
  • #unlink_oldname_opt Migrator @@ -37460,7 +37500,7 @@

    Method List

  • -
  • +
  • unlink_versioned_formulae Homebrew::Unlink @@ -37468,7 +37508,7 @@

    Method List

  • -
  • +
  • #unlock Migrator @@ -37476,7 +37516,7 @@

    Method List

  • -
  • +
  • #unlock LockFile @@ -37484,7 +37524,7 @@

    Method List

  • -
  • +
  • #unpack Resource @@ -37492,7 +37532,7 @@

    Method List

  • -
  • +
  • #unpin FormulaPin @@ -37500,7 +37540,7 @@

    Method List

  • -
  • +
  • #unpin Formula @@ -37508,7 +37548,7 @@

    Method List

  • -
  • +
  • #unremovable_kegs Homebrew::Cleanup @@ -37516,7 +37556,7 @@

    Method List

  • -
  • +
  • #unstable? Cask::DSL::Version @@ -37524,7 +37564,7 @@

    Method List

  • -
  • +
  • unsupported_configuration? OS @@ -37532,7 +37572,7 @@

    Method List

  • -
  • +
  • #unsupported_release? MacOSVersion @@ -37540,7 +37580,7 @@

    Method List

  • -
  • +
  • untapped_official_taps Tap @@ -37548,7 +37588,7 @@

    Method List

  • -
  • +
  • #unused_options Tab @@ -37556,7 +37596,7 @@

    Method List

  • -
  • +
  • #unversioned? Cask::URL @@ -37564,7 +37604,7 @@

    Method List

  • -
  • +
  • #unzip_dep_if_needed DependencyCollector @@ -37572,7 +37612,7 @@

    Method List

  • -
  • +
  • up Tty @@ -37580,7 +37620,7 @@

    Method List

  • -
  • +
  • #update Homebrew::DevCmd::VendorGems::Args @@ -37588,7 +37628,7 @@

    Method List

  • -
  • +
  • #update! CacheStore @@ -37596,7 +37636,7 @@

    Method List

  • -
  • +
  • #update! LinkageCacheStore @@ -37604,7 +37644,7 @@

    Method List

  • -
  • +
  • #update! DescriptionCacheStore @@ -37612,7 +37652,7 @@

    Method List

  • -
  • +
  • #update? Homebrew::DevCmd::Typecheck::Args @@ -37620,7 +37660,7 @@

    Method List

  • -
  • +
  • #update_all? Homebrew::DevCmd::Typecheck::Args @@ -37628,7 +37668,7 @@

    Method List

  • -
  • +
  • #update_commit Version @@ -37636,7 +37676,7 @@

    Method List

  • -
  • +
  • #update_from_cask_tokens! CaskDescriptionCacheStore @@ -37644,7 +37684,7 @@

    Method List

  • -
  • +
  • #update_from_formula_names! DescriptionCacheStore @@ -37652,7 +37692,7 @@

    Method List

  • -
  • +
  • #update_from_report! DescriptionCacheStore @@ -37660,7 +37700,7 @@

    Method List

  • -
  • +
  • #update_from_report! CaskDescriptionCacheStore @@ -37668,7 +37708,7 @@

    Method List

  • -
  • +
  • #update_head_version Formula @@ -37676,7 +37716,7 @@

    Method List

  • -
  • +
  • update_instructions OS::Mac::Xcode @@ -37684,7 +37724,7 @@

    Method List

  • -
  • +
  • update_instructions OS::Mac::CLT @@ -37692,7 +37732,7 @@

    Method List

  • -
  • +
  • update_pypi_url PyPI @@ -37700,7 +37740,7 @@

    Method List

  • -
  • +
  • update_python_resources! PyPI @@ -37708,7 +37748,7 @@

    Method List

  • -
  • +
  • update_shell_completions! Homebrew::Completions @@ -37716,7 +37756,7 @@

    Method List

  • -
  • +
  • #update_tabs Migrator @@ -37724,7 +37764,7 @@

    Method List

  • -
  • +
  • update_to_tag? Homebrew::EnvConfig @@ -37732,7 +37772,7 @@

    Method List

  • -
  • +
  • #updated? Reporter @@ -37740,7 +37780,7 @@

    Method List

  • -
  • +
  • #upgrade? Cask::Installer @@ -37748,7 +37788,7 @@

    Method List

  • -
  • +
  • upgrade_cask Cask::Upgrade @@ -37756,7 +37796,7 @@

    Method List

  • -
  • +
  • upgrade_casks Cask::Upgrade @@ -37764,7 +37804,7 @@

    Method List

  • -
  • +
  • upgrade_formulae Homebrew::Upgrade @@ -37772,7 +37812,7 @@

    Method List

  • -
  • +
  • upgrade_greedy? Homebrew::EnvConfig @@ -37780,7 +37820,7 @@

    Method List

  • -
  • +
  • #upload? Homebrew::DevCmd::DispatchBuildBottle::Args @@ -37788,7 +37828,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubPackages @@ -37796,7 +37836,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubReleases @@ -37804,7 +37844,7 @@

    Method List

  • -
  • +
  • #upload_only? Homebrew::DevCmd::PrUpload::Args @@ -37812,7 +37852,7 @@

    Method List

  • -
  • +
  • upload_release_asset GitHub @@ -37820,7 +37860,7 @@

    Method List

  • -
  • +
  • #uri Cask::URL::DSL @@ -37828,7 +37868,7 @@

    Method List

  • -
  • +
  • url Formula @@ -37836,7 +37876,7 @@

    Method List

  • -
  • +
  • #url Cask::DSL @@ -37844,7 +37884,7 @@

    Method List

  • -
  • +
  • #url Cask::URL::BlockDSL::PageWithURL @@ -37852,7 +37892,7 @@

    Method List

  • -
  • +
  • #url Resource @@ -37860,7 +37900,7 @@

    Method List

  • -
  • +
  • #url Formulary::FromURILoader @@ -37868,7 +37908,7 @@

    Method List

  • -
  • +
  • #url Livecheck @@ -37876,7 +37916,7 @@

    Method List

  • -
  • +
  • #url Downloadable @@ -37884,7 +37924,7 @@

    Method List

  • -
  • +
  • #url Cask::Download @@ -37892,7 +37932,7 @@

    Method List

  • -
  • +
  • #url SoftwareSpec @@ -37900,7 +37940,7 @@

    Method List

  • -
  • +
  • url Formatter @@ -37908,7 +37948,7 @@

    Method List

  • -
  • +
  • #url Cask::CaskLoader::FromURILoader @@ -37916,7 +37956,7 @@

    Method List

  • -
  • +
  • #url Homebrew::ResourceAuditor @@ -37924,7 +37964,7 @@

    Method List

  • -
  • +
  • #url AbstractDownloadStrategy @@ -37932,7 +37972,7 @@

    Method List

  • -
  • +
  • #url Homebrew::Livecheck::Strategy::Sparkle::Item @@ -37940,7 +37980,7 @@

    Method List

  • -
  • +
  • #url Cask::Cask @@ -37948,7 +37988,7 @@

    Method List

  • -
  • +
  • #url Homebrew::DevCmd::BumpCaskPr::Args @@ -37956,7 +37996,7 @@

    Method List

  • -
  • +
  • #url Homebrew::DevCmd::BumpFormulaPr::Args @@ -37964,7 +38004,7 @@

    Method List

  • -
  • +
  • #url_encode Bottle::Filename @@ -37972,7 +38012,7 @@

    Method List

  • -
  • +
  • #url_has_revision? RuboCop::Cop::FormulaAudit::GitUrls @@ -37980,7 +38020,7 @@

    Method List

  • -
  • +
  • #url_has_tag? RuboCop::Cop::FormulaAuditStrict::GitUrls @@ -37988,7 +38028,7 @@

    Method List

  • -
  • +
  • url_protected_by_cloudflare? Utils::Curl @@ -37996,7 +38036,7 @@

    Method List

  • -
  • +
  • url_protected_by_incapsula? Utils::Curl @@ -38004,7 +38044,7 @@

    Method List

  • -
  • +
  • url_to GitHub @@ -38012,7 +38052,7 @@

    Method List

  • -
  • +
  • #usage_banner Homebrew::CLI::Parser @@ -38020,7 +38060,7 @@

    Method List

  • -
  • +
  • #usage_banner_text Homebrew::CLI::Parser @@ -38028,7 +38068,7 @@

    Method List

  • -
  • +
  • use CacheStoreDatabase @@ -38036,7 +38076,7 @@

    Method List

  • -
  • +
  • use_homebrew_curl? Homebrew::Livecheck @@ -38044,7 +38084,7 @@

    Method List

  • -
  • +
  • #use_macos_install? UsesFromMacOSDependency @@ -38052,7 +38092,7 @@

    Method List

  • -
  • +
  • #use_system_ruby? Homebrew::Cleanup @@ -38060,7 +38100,7 @@

    Method List

  • -
  • +
  • #used_options Tab @@ -38068,7 +38108,7 @@

    Method List

  • -
  • +
  • #user Tap @@ -38076,7 +38116,7 @@

    Method List

  • -
  • +
  • #user TapFormulaUnavailableError @@ -38084,7 +38124,7 @@

    Method List

  • -
  • +
  • user GitHub @@ -38092,7 +38132,7 @@

    Method List

  • -
  • +
  • #user Homebrew::DevCmd::Contributions::Args @@ -38100,7 +38140,7 @@

    Method List

  • -
  • +
  • #user_agent Cask::URL::DSL @@ -38108,7 +38148,7 @@

    Method List

  • -
  • +
  • user_gem_groups Homebrew @@ -38116,7 +38156,7 @@

    Method List

  • -
  • +
  • user_site_packages Language::Python @@ -38124,7 +38164,7 @@

    Method List

  • -
  • +
  • #user_tilde Homebrew::Diagnostic::Checks @@ -38132,7 +38172,7 @@

    Method List

  • -
  • +
  • user_vendor_version Homebrew @@ -38140,7 +38180,7 @@

    Method List

  • -
  • +
  • uses_from_macos Formula @@ -38148,7 +38188,7 @@

    Method List

  • -
  • +
  • #uses_from_macos SoftwareSpec @@ -38156,7 +38196,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? Dependency @@ -38164,7 +38204,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? UsesFromMacOSDependency @@ -38172,7 +38212,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_elements SoftwareSpec @@ -38180,7 +38220,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_elements Formula @@ -38188,7 +38228,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_names SoftwareSpec @@ -38196,7 +38236,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_names Formula @@ -38204,7 +38244,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_node? RuboCop::Cop::FormulaAudit::DependencyOrder @@ -38212,7 +38252,7 @@

    Method List

  • -
  • +
  • #using URL @@ -38220,7 +38260,7 @@

    Method List

  • -
  • +
  • #using Cask::URL::DSL @@ -38228,7 +38268,7 @@

    Method List

  • -
  • +
  • #using Resource @@ -38236,7 +38276,7 @@

    Method List

  • -
  • +
  • #using Homebrew::ResourceAuditor @@ -38244,7 +38284,7 @@

    Method List

  • -
  • +
  • valid_aliases? Readall @@ -38252,7 +38292,7 @@

    Method List

  • -
  • +
  • valid_casks? Readall @@ -38260,7 +38300,7 @@

    Method List

  • -
  • +
  • #valid_combination? Utils::Bottles::Tag @@ -38268,7 +38308,7 @@

    Method List

  • -
  • +
  • valid_formulae? Readall @@ -38276,7 +38316,7 @@

    Method List

  • -
  • +
  • valid_gem_groups Homebrew @@ -38284,7 +38324,7 @@

    Method List

  • -
  • +
  • valid_internal_cmd? Commands @@ -38292,7 +38332,7 @@

    Method List

  • -
  • +
  • valid_internal_dev_cmd? Commands @@ -38300,7 +38340,7 @@

    Method List

  • -
  • +
  • #valid_library_extension? FormulaCellarChecks @@ -38308,7 +38348,7 @@

    Method List

  • -
  • +
  • valid_license? SPDX @@ -38316,7 +38356,7 @@

    Method List

  • -
  • +
  • valid_license_exception? SPDX @@ -38324,7 +38364,7 @@

    Method List

  • -
  • +
  • #valid_pypi_package? PyPI::Package @@ -38332,7 +38372,7 @@

    Method List

  • -
  • +
  • valid_ruby_syntax? Readall @@ -38340,7 +38380,7 @@

    Method List

  • -
  • +
  • valid_tap? Readall @@ -38348,7 +38388,7 @@

    Method List

  • -
  • +
  • validate_file Utils::Tar @@ -38356,7 +38396,7 @@

    Method List

  • -
  • +
  • #validate_options Homebrew::CLI::Parser @@ -38364,7 +38404,7 @@

    Method List

  • -
  • +
  • #value Version::Token @@ -38372,7 +38412,7 @@

    Method List

  • -
  • +
  • #value Version::StringToken @@ -38380,7 +38420,7 @@

    Method List

  • -
  • +
  • #value Version::NumericToken @@ -38388,7 +38428,7 @@

    Method List

  • -
  • +
  • #value Homebrew::CLI::Args @@ -38396,7 +38436,7 @@

    Method List

  • -
  • +
  • #var Formula @@ -38404,7 +38444,7 @@

    Method List

  • -
  • +
  • #var Homebrew::Service @@ -38412,7 +38452,7 @@

    Method List

  • -
  • +
  • #variable_assignment RuboCop::Cop::Cask::Variables @@ -38420,7 +38460,7 @@

    Method List

  • -
  • +
  • #variations? Homebrew::Cmd::Info::Args @@ -38428,7 +38468,7 @@

    Method List

  • -
  • +
  • #verbose? Context::ContextStruct @@ -38436,7 +38476,7 @@

    Method List

  • -
  • +
  • #verbose? Context @@ -38444,7 +38484,7 @@

    Method List

  • -
  • +
  • #verbose? Homebrew::CLI::Args @@ -38452,7 +38492,7 @@

    Method List

  • -
  • +
  • #verbose? FormulaInstaller @@ -38460,7 +38500,7 @@

    Method List

  • -
  • +
  • #verbose? Cask::Installer @@ -38468,7 +38508,7 @@

    Method List

  • -
  • +
  • verbose? Homebrew::EnvConfig @@ -38476,7 +38516,7 @@

    Method List

  • -
  • +
  • verbose_using_dots? Homebrew::EnvConfig @@ -38484,7 +38524,7 @@

    Method List

  • -
  • +
  • #verified Cask::URL::DSL @@ -38492,7 +38532,7 @@

    Method List

  • -
  • +
  • #verify Homebrew::FormulaCreator @@ -38500,7 +38540,7 @@

    Method List

  • -
  • +
  • verify_attestations? Homebrew::EnvConfig @@ -38508,7 +38548,7 @@

    Method List

  • -
  • +
  • #verify_checksum Pathname @@ -38516,7 +38556,7 @@

    Method List

  • -
  • +
  • #verify_deps_exist FormulaInstaller @@ -38524,7 +38564,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Downloadable @@ -38532,7 +38572,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Cask::Download @@ -38540,7 +38580,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity HeadSoftwareSpec @@ -38548,7 +38588,7 @@

    Method List

  • -
  • +
  • #verify_has_sha Cask::Installer @@ -38556,7 +38596,7 @@

    Method List

  • -
  • +
  • #verify_order_in_source RuboCop::Cop::FormulaAudit::DependencyOrder @@ -38564,7 +38604,7 @@

    Method List

  • -
  • +
  • #version Keg @@ -38572,7 +38612,7 @@

    Method List

  • -
  • +
  • #version URL @@ -38580,7 +38620,7 @@

    Method List

  • -
  • +
  • version OS::Mac @@ -38588,7 +38628,7 @@

    Method List

  • -
  • +
  • #version Formula @@ -38596,7 +38636,7 @@

    Method List

  • -
  • +
  • version Formula @@ -38604,7 +38644,7 @@

    Method List

  • -
  • +
  • #version Cask::DSL @@ -38612,7 +38652,7 @@

    Method List

  • -
  • +
  • version OS::Mac::Xcode @@ -38620,7 +38660,7 @@

    Method List

  • -
  • +
  • version OS::Mac::CLT @@ -38628,7 +38668,7 @@

    Method List

  • -
  • +
  • #version Resource @@ -38636,7 +38676,7 @@

    Method List

  • -
  • +
  • #version CompilerFailure @@ -38644,7 +38684,7 @@

    Method List

  • -
  • +
  • #version CompilerSelector::Compiler @@ -38652,7 +38692,7 @@

    Method List

  • -
  • +
  • version Utils::Git @@ -38660,7 +38700,7 @@

    Method List

  • -
  • +
  • version Utils::Svn @@ -38668,7 +38708,7 @@

    Method List

  • -
  • +
  • #version OS::Mac::SDK @@ -38676,7 +38716,7 @@

    Method List

  • -
  • +
  • #version PyPI::Package @@ -38684,7 +38724,7 @@

    Method List

  • -
  • +
  • #version PkgVersion @@ -38692,7 +38732,7 @@

    Method List

  • -
  • +
  • #version Downloadable @@ -38700,7 +38740,7 @@

    Method List

  • -
  • +
  • #version FormulaInfo @@ -38708,7 +38748,7 @@

    Method List

  • -
  • +
  • #version Cask::Download @@ -38716,7 +38756,7 @@

    Method List

  • -
  • +
  • #version MacOSVersion::Error @@ -38724,7 +38764,7 @@

    Method List

  • -
  • +
  • #version Bottle::Filename @@ -38732,7 +38772,7 @@

    Method List

  • -
  • +
  • #version Homebrew::BundleVersion @@ -38740,7 +38780,7 @@

    Method List

  • -
  • +
  • version OS::Linux::Glibc @@ -38748,7 +38788,7 @@

    Method List

  • -
  • +
  • #version Homebrew::ResourceAuditor @@ -38756,7 +38796,7 @@

    Method List

  • -
  • +
  • #version MacOSRequirement @@ -38764,7 +38804,7 @@

    Method List

  • -
  • +
  • #version XcodeRequirement @@ -38772,7 +38812,7 @@

    Method List

  • -
  • +
  • #version Cask::Cask @@ -38780,7 +38820,7 @@

    Method List

  • -
  • +
  • #version Livecheck @@ -38788,7 +38828,7 @@

    Method List

  • -
  • +
  • #version Homebrew::DevCmd::Extract::Args @@ -38796,7 +38836,7 @@

    Method List

  • -
  • +
  • #version Homebrew::DevCmd::BumpCaskPr::Args @@ -38804,7 +38844,7 @@

    Method List

  • -
  • +
  • #version Homebrew::DevCmd::BumpFormulaPr::Args @@ -38812,7 +38852,7 @@

    Method List

  • -
  • +
  • #version Homebrew::DevCmd::UpdatePythonResources::Args @@ -38820,7 +38860,7 @@

    Method List

  • -
  • +
  • #version= PyPI::Package @@ -38828,7 +38868,7 @@

    Method List

  • -
  • +
  • #version_arm Homebrew::DevCmd::BumpCaskPr::Args @@ -38836,7 +38876,7 @@

    Method List

  • -
  • +
  • #version_intel Homebrew::DevCmd::BumpCaskPr::Args @@ -38844,7 +38884,7 @@

    Method List

  • -
  • +
  • #version_name Homebrew::DevCmd::Bump::VersionBumpInfo @@ -38852,7 +38892,7 @@

    Method List

  • -
  • +
  • version_rebuild GitHubPackages @@ -38860,7 +38900,7 @@

    Method List

  • -
  • +
  • #version_scheme Keg @@ -38868,7 +38908,7 @@

    Method List

  • -
  • +
  • #version_scheme Tab @@ -38876,7 +38916,7 @@

    Method List

  • -
  • +
  • #version_scheme Formula @@ -38884,7 +38924,7 @@

    Method List

  • -
  • +
  • version_scheme Formula @@ -38892,7 +38932,7 @@

    Method List

  • -
  • +
  • #version_specified? MacOSRequirement @@ -38900,7 +38940,7 @@

    Method List

  • -
  • +
  • #versioned_formula? Formula @@ -38908,7 +38948,7 @@

    Method List

  • -
  • +
  • #versioned_formula? KegOnlyReason @@ -38916,7 +38956,7 @@

    Method List

  • -
  • +
  • #versioned_formula? RuboCop::Cop::FormulaCop @@ -38924,7 +38964,7 @@

    Method List

  • -
  • +
  • #versioned_formulae Formula @@ -38932,7 +38972,7 @@

    Method List

  • -
  • +
  • #versioned_formulae_names Formula @@ -38940,7 +38980,7 @@

    Method List

  • -
  • +
  • #versioned_macos_requirement TestRunnerFormula @@ -38948,7 +38988,7 @@

    Method List

  • -
  • +
  • #versions Tab @@ -38956,7 +38996,7 @@

    Method List

  • -
  • +
  • #versions CompilerSelector @@ -38964,7 +39004,7 @@

    Method List

  • -
  • +
  • #versions Homebrew::Livecheck::LivecheckVersion @@ -38972,7 +39012,7 @@

    Method List

  • -
  • +
  • #versions? Homebrew::Cmd::List::Args @@ -38980,7 +39020,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Xml @@ -38988,7 +39028,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Json @@ -38996,7 +39036,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Yaml @@ -39004,7 +39044,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Sparkle @@ -39012,7 +39052,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::PageMatch @@ -39020,7 +39060,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::GithubReleases @@ -39028,7 +39068,7 @@

    Method List

  • -
  • +
  • versions_from_headers Homebrew::Livecheck::Strategy::HeaderMatch @@ -39036,7 +39076,7 @@

    Method List

  • -
  • +
  • versions_from_items Homebrew::Livecheck::Strategy::ExtractPlist @@ -39044,7 +39084,7 @@

    Method List

  • -
  • +
  • versions_from_tags Homebrew::Livecheck::Strategy::Git @@ -39052,7 +39092,7 @@

    Method List

  • -
  • +
  • #virtualenv_create Language::Python::Virtualenv @@ -39060,7 +39100,7 @@

    Method List

  • -
  • +
  • #virtualenv_install_with_resources Language::Python::Virtualenv @@ -39068,7 +39108,7 @@

    Method List

  • -
  • +
  • virtualized? Hardware::CPU @@ -39076,7 +39116,7 @@

    Method List

  • -
  • +
  • #vst3_plugindir Homebrew::Cmd::Reinstall::Args @@ -39084,7 +39124,7 @@

    Method List

  • -
  • +
  • #vst3_plugindir Homebrew::Cmd::InstallCmd::Args @@ -39092,7 +39132,7 @@

    Method List

  • -
  • +
  • #vst3_plugindir Homebrew::Cmd::UpgradeCmd::Args @@ -39100,7 +39140,7 @@

    Method List

  • -
  • +
  • #vst_plugindir Homebrew::Cmd::Reinstall::Args @@ -39108,7 +39148,7 @@

    Method List

  • -
  • +
  • #vst_plugindir Homebrew::Cmd::InstallCmd::Args @@ -39116,7 +39156,7 @@

    Method List

  • -
  • +
  • #vst_plugindir Homebrew::Cmd::UpgradeCmd::Args @@ -39124,7 +39164,7 @@

    Method List

  • -
  • +
  • #warn_on_upload_failure? Homebrew::DevCmd::PrPull::Args @@ -39132,7 +39172,7 @@

    Method List

  • -
  • +
  • #warn_on_upload_failure? Homebrew::DevCmd::PrUpload::Args @@ -39140,7 +39180,7 @@

    Method List

  • -
  • +
  • warning Formatter @@ -39148,7 +39188,7 @@

    Method List

  • -
  • +
  • #which Homebrew::Diagnostic::Volumes @@ -39156,7 +39196,7 @@

    Method List

  • -
  • +
  • #which Kernel @@ -39164,7 +39204,7 @@

    Method List

  • -
  • +
  • #which_all Kernel @@ -39172,7 +39212,7 @@

    Method List

  • -
  • +
  • #which_editor Kernel @@ -39180,7 +39220,7 @@

    Method List

  • -
  • +
  • width Tty @@ -39188,7 +39228,7 @@

    Method List

  • -
  • +
  • with Tty @@ -39196,7 +39236,7 @@

    Method List

  • -
  • +
  • with Homebrew::SimulateSystem @@ -39204,7 +39244,7 @@

    Method List

  • -
  • +
  • #with? Tab @@ -39212,7 +39252,7 @@

    Method List

  • -
  • +
  • #with? BuildOptions @@ -39220,7 +39260,7 @@

    Method List

  • -
  • +
  • #with_build_environment EnvActivation @@ -39228,7 +39268,7 @@

    Method List

  • -
  • +
  • #with_context Context @@ -39236,7 +39276,7 @@

    Method List

  • -
  • +
  • #with_custom_locale Kernel @@ -39244,7 +39284,7 @@

    Method List

  • -
  • +
  • #with_env Kernel @@ -39252,7 +39292,7 @@

    Method List

  • -
  • +
  • #with_homebrew_path Kernel @@ -39260,7 +39300,7 @@

    Method List

  • -
  • +
  • #with_hostname? Homebrew::Cmd::GistLogs::Args @@ -39268,7 +39308,7 @@

    Method List

  • -
  • +
  • #with_label Homebrew::DevCmd::PrAutomerge::Args @@ -39276,7 +39316,7 @@

    Method List

  • -
  • +
  • #with_lock LockFile @@ -39284,7 +39324,7 @@

    Method List

  • -
  • +
  • #with_logging Formula @@ -39292,7 +39332,7 @@

    Method List

  • -
  • +
  • with_no_api_env Homebrew @@ -39300,7 +39340,7 @@

    Method List

  • -
  • +
  • with_no_api_env_if_needed Homebrew @@ -39308,7 +39348,7 @@

    Method List

  • -
  • +
  • #without? Tab @@ -39316,7 +39356,7 @@

    Method List

  • -
  • +
  • #without? BuildOptions @@ -39324,7 +39364,7 @@

    Method List

  • -
  • +
  • #without_approval? Homebrew::DevCmd::PrAutomerge::Args @@ -39332,7 +39372,7 @@

    Method List

  • -
  • +
  • without_clt? OS::Mac::Xcode @@ -39340,7 +39380,7 @@

    Method List

  • -
  • +
  • #without_labels Homebrew::DevCmd::PrAutomerge::Args @@ -39348,7 +39388,7 @@

    Method List

  • -
  • +
  • #without_patch Homebrew::FormulaTextAuditor @@ -39356,7 +39396,7 @@

    Method List

  • -
  • +
  • #workdir LinuxRunnerSpec @@ -39364,7 +39404,7 @@

    Method List

  • -
  • +
  • #workflow Homebrew::DevCmd::PrPublish::Args @@ -39372,7 +39412,7 @@

    Method List

  • -
  • +
  • #workflow Homebrew::DevCmd::PrAutomerge::Args @@ -39380,7 +39420,7 @@

    Method List

  • -
  • +
  • #workflow Homebrew::DevCmd::DispatchBuildBottle::Args @@ -39388,7 +39428,7 @@

    Method List

  • -
  • +
  • workflow_dispatch_event GitHub @@ -39396,7 +39436,7 @@

    Method List

  • -
  • +
  • #workflows Homebrew::DevCmd::PrPull::Args @@ -39404,7 +39444,7 @@

    Method List

  • -
  • +
  • #working_dir Homebrew::Service @@ -39412,7 +39452,7 @@

    Method List

  • -
  • +
  • #write Tab @@ -39420,7 +39460,7 @@

    Method List

  • -
  • +
  • write Homebrew::Settings @@ -39428,7 +39468,7 @@

    Method List

  • -
  • +
  • #write? Homebrew::DevCmd::Bottle::Args @@ -39436,7 +39476,7 @@

    Method List

  • -
  • +
  • write_access? GitHub @@ -39444,7 +39484,7 @@

    Method List

  • -
  • +
  • #write_env_script Pathname @@ -39452,7 +39492,7 @@

    Method List

  • -
  • +
  • #write_exec_script Pathname @@ -39460,7 +39500,7 @@

    Method List

  • -
  • +
  • #write_formula! Homebrew::FormulaCreator @@ -39468,7 +39508,7 @@

    Method List

  • -
  • +
  • #write_if_dirty! CacheStoreDatabase @@ -39476,7 +39516,7 @@

    Method List

  • -
  • +
  • #write_jar_script Pathname @@ -39484,7 +39524,7 @@

    Method List

  • -
  • +
  • write_names Homebrew::API::Cask @@ -39492,7 +39532,7 @@

    Method List

  • -
  • +
  • write_names_and_aliases Homebrew::API::Formula @@ -39500,7 +39540,7 @@

    Method List

  • -
  • +
  • write_names_file Homebrew::API @@ -39508,7 +39548,7 @@

    Method List

  • -
  • +
  • #write_only? Homebrew::DevCmd::BumpCaskPr::Args @@ -39516,7 +39556,7 @@

    Method List

  • -
  • +
  • #write_only? Homebrew::DevCmd::BumpRevision::Args @@ -39524,7 +39564,7 @@

    Method List

  • -
  • +
  • #write_only? Homebrew::DevCmd::BumpFormulaPr::Args @@ -39532,7 +39572,7 @@

    Method List

  • -
  • +
  • write_user_gem_groups Homebrew @@ -39540,7 +39580,7 @@

    Method List

  • -
  • +
  • wsl? OS::Linux @@ -39548,7 +39588,7 @@

    Method List

  • -
  • +
  • wsl_version OS::Linux @@ -39556,7 +39596,7 @@

    Method List

  • -
  • +
  • #x86_64? MachOShim @@ -39564,7 +39604,7 @@

    Method List

  • -
  • +
  • #x86_64? GitHubRunner @@ -39572,7 +39612,7 @@

    Method List

  • -
  • +
  • #x86_64_compatible? TestRunnerFormula @@ -39580,7 +39620,7 @@

    Method List

  • -
  • +
  • #x86_64_only? TestRunnerFormula @@ -39588,7 +39628,7 @@

    Method List

  • -
  • +
  • xcode SystemConfig @@ -39596,7 +39636,7 @@

    Method List

  • -
  • +
  • #xcode_installed_version XcodeRequirement @@ -39604,7 +39644,7 @@

    Method List

  • -
  • +
  • #xcodebuild Formula @@ -39612,7 +39652,7 @@

    Method List

  • -
  • +
  • #xz_dep_if_needed DependencyCollector @@ -39620,7 +39660,7 @@

    Method List

  • -
  • +
  • yellow Tty @@ -39628,7 +39668,7 @@

    Method List

  • -
  • +
  • #zap Cask::Installer @@ -39636,7 +39676,7 @@

    Method List

  • -
  • +
  • #zap? Cask::Installer @@ -39644,7 +39684,7 @@

    Method List

  • -
  • +
  • #zap? Homebrew::Cmd::Reinstall::Args @@ -39652,7 +39692,7 @@

    Method List

  • -
  • +
  • #zap? Homebrew::Cmd::InstallCmd::Args @@ -39660,7 +39700,7 @@

    Method List

  • -
  • +
  • #zap? Homebrew::Cmd::UninstallCmd::Args @@ -39668,7 +39708,7 @@

    Method List

  • -
  • +
  • #zap_phase Cask::Artifact::Zap @@ -39676,7 +39716,7 @@

    Method List

  • -
  • +
  • #zipinfo Pathname @@ -39684,7 +39724,7 @@

    Method List

  • -
  • +
  • #zsh_completion Formula @@ -39692,7 +39732,7 @@

    Method List

  • -
  • +
  • #zsh_function Formula @@ -39700,7 +39740,7 @@

    Method List

  • -
  • +
  • #zstd_dep_if_needed DependencyCollector @@ -39708,7 +39748,7 @@

    Method List

  • -
  • +
  • #| Options