From c60f5e281659648a3fd9a39d1843788c2e0558a5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 19 Nov 2023 17:33:24 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/Homebrew/Livecheck/Strategy/Sparkle.html | 16 +- docs/Homebrew/Livecheck/Strategy/Xml.html | 207 +- docs/method_list.html | 5662 +++++++++-------- 3 files changed, 3010 insertions(+), 2875 deletions(-) diff --git a/docs/Homebrew/Livecheck/Strategy/Sparkle.html b/docs/Homebrew/Livecheck/Strategy/Sparkle.html index 432a2bea7..1aab13d7c 100644 --- a/docs/Homebrew/Livecheck/Strategy/Sparkle.html +++ b/docs/Homebrew/Livecheck/Strategy/Sparkle.html @@ -758,16 +758,16 @@

os = enclosure["os"].presence end - title = item.elements["title"]&.text&.strip&.presence - link = item.elements["link"]&.text&.strip&.presence + title = Xml.element_text(item, "title") + link = Xml.element_text(item, "link") url ||= link - channel = item.elements["channel"]&.text&.strip&.presence - release_notes_link = item.elements["releaseNotesLink"]&.text&.strip&.presence - short_version ||= item.elements["shortVersionString"]&.text&.strip&.presence - version ||= item.elements["version"]&.text&.strip&.presence + channel = Xml.element_text(item, "channel") + release_notes_link = Xml.element_text(item, "releaseNotesLink") + short_version ||= Xml.element_text(item, "shortVersionString") + version ||= Xml.element_text(item, "version") minimum_system_version_text = - item.elements["minimumSystemVersion"]&.text&.strip&.gsub(/\A\D+|\D+\z/, "")&.presence + Xml.element_text(item, "minimumSystemVersion")&.gsub(/\A\D+|\D+\z/, "") if minimum_system_version_text.present? minimum_system_version = begin MacOSVersion.new(minimum_system_version_text) @@ -776,7 +776,7 @@

end end - pub_date = item.elements["pubDate"]&.text&.strip&.presence&.then do |date_string| + pub_date = Xml.element_text(item, "pubDate")&.then do |date_string| Time.parse(date_string) rescue ArgumentError # Omit unparsable strings (e.g. non-English dates) diff --git a/docs/Homebrew/Livecheck/Strategy/Xml.html b/docs/Homebrew/Livecheck/Strategy/Xml.html index 0b8c70625..1b874ea03 100644 --- a/docs/Homebrew/Livecheck/Strategy/Xml.html +++ b/docs/Homebrew/Livecheck/Strategy/Xml.html @@ -202,6 +202,28 @@

    +
  • + + + .element_text(element, child_path = nil) ⇒ String? + + + + + + + + + + + +

    Retrieves the stripped inner text of an REXML element.

    +
    + +
  • + + +
  • @@ -299,7 +321,112 @@

    Class Method Details

    -

    +

    + + .element_text(element, child_path = nil) ⇒ String? + + + + + +

    +
    +

    Retrieves the stripped inner text of an REXML element. Returns +nil if the optional child element doesn’t exist or the text is +blank.

    + + +
    +
    +
    +

    Parameters:

    +
      + +
    • + + element + + + (REXML::Element) + + + + — +

      an REXML element to retrieve text +from, either directly or from a child element

      +
      + +
    • + +
    • + + child_path + + + (String, nil) + + + (defaults to: nil) + + + — +

      the XPath of a child element to +retrieve text from

      +
      + +
    • + +
    + +

    Returns:

    +
      + +
    • + + + (String, nil) + + + +
    • + +
    + +
    + + + + +
    +
    +
    +
    +89
    +90
    +91
    +92
    +93
    +94
    +95
    +96
    +97
    +
    +
    # File 'livecheck/strategy/xml.rb', line 89
    +
    +def self.element_text(element, child_path = nil)
    +  element = element.get_elements(child_path).first if child_path.present?
    +  return if element.nil?
    +
    +  text = element.text
    +  return if text.blank?
    +
    +  text.strip
    +end
    +
    +
    + +
    +

    .find_versions(url:, regex: nil, provided_content: nil, homebrew_curl: false, **_unused, &block) ⇒ Hash{Symbol => T.untyped} @@ -443,30 +570,30 @@

     
     
    -125
    -126
    -127
    -128
    -129
    -130
    -131
    -132
    -133
    -134
    -135
    -136
    -137
    -138
    -139
    -140
    -141
    -142
    -143
    -144
    -145
    +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 -
    # File 'livecheck/strategy/xml.rb', line 125
    +      
    # File 'livecheck/strategy/xml.rb', line 149
     
     def self.find_versions(url:, regex: nil, provided_content: nil, homebrew_curl: false, **_unused, &block)
       raise ArgumentError, "#{Utils.demodulize(T.must(name))} requires a `strategy` block" if block.blank?
    @@ -760,25 +887,25 @@ 

     
     
    -89
    -90
    -91
    -92
    -93
    -94
    -95
    -96
    -97
    -98
    -99
    -100
    -101
    -102
    -103
    -104
    +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128

    -
    # File 'livecheck/strategy/xml.rb', line 89
    +      
    # File 'livecheck/strategy/xml.rb', line 113
     
     def self.versions_from_content(content, regex = nil, &block)
       return [] if content.blank? || block.blank?
    diff --git a/docs/method_list.html b/docs/method_list.html
    index 4f9f3bf36..2057cf969 100644
    --- a/docs/method_list.html
    +++ b/docs/method_list.html
    @@ -9357,6 +9357,14 @@ 

    Method List

  • +
    + element_text + Homebrew::Livecheck::Strategy::Xml +
    +
  • + + +
  • #elf? ELFShim @@ -9364,7 +9372,7 @@

    Method List

  • -
  • +
  • #elf_files Keg @@ -9372,7 +9380,7 @@

    Method List

  • -
  • +
  • #elf_type ELFShim @@ -9380,7 +9388,7 @@

    Method List

  • -
  • +
  • #elisp Formula @@ -9388,7 +9396,7 @@

    Method List

  • -
  • +
  • #elisp_installed? Keg @@ -9396,7 +9404,7 @@

    Method List

  • -
  • +
  • empty Tab @@ -9404,7 +9412,7 @@

    Method List

  • -
  • +
  • #empty? PATH @@ -9412,7 +9420,7 @@

    Method List

  • -
  • +
  • #empty? Options @@ -9420,7 +9428,7 @@

    Method List

  • -
  • +
  • #empty? CacheStoreDatabase @@ -9428,7 +9436,7 @@

    Method List

  • -
  • +
  • #empty? ReporterHub @@ -9436,7 +9444,7 @@

    Method List

  • -
  • +
  • #empty_installation? Keg @@ -9444,7 +9452,7 @@

    Method List

  • -
  • +
  • enable! Utils::Analytics @@ -9452,7 +9460,7 @@

    Method List

  • -
  • +
  • enable_factory_cache! Formulary @@ -9460,7 +9468,7 @@

    Method List

  • -
  • +
  • #end_column RuboCop::Cop::HelperFunctions @@ -9468,7 +9476,7 @@

    Method List

  • -
  • +
  • english_article Cask::Artifact::AbstractArtifact @@ -9476,7 +9484,7 @@

    Method List

  • -
  • +
  • english_description Cask::Artifact::Moved @@ -9484,7 +9492,7 @@

    Method List

  • -
  • +
  • english_description Cask::Artifact::Symlinked @@ -9492,7 +9500,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Suite @@ -9500,7 +9508,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Artifact @@ -9508,7 +9516,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Prefpane @@ -9516,7 +9524,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Qlplugin @@ -9524,7 +9532,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Mdimporter @@ -9532,7 +9540,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::VstPlugin @@ -9540,7 +9548,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::Vst3Plugin @@ -9548,7 +9556,7 @@

    Method List

  • -
  • +
  • english_name Cask::Artifact::AbstractArtifact @@ -9556,7 +9564,7 @@

    Method List

  • -
  • +
  • ensure_caskroom_exists Cask::Caskroom @@ -9564,7 +9572,7 @@

    Method List

  • -
  • +
  • #ensure_dependency_order RuboCop::Cop::FormulaAudit::DependencyOrder @@ -9572,7 +9580,7 @@

    Method List

  • -
  • +
  • #ensure_executable! Kernel @@ -9580,7 +9588,7 @@

    Method List

  • -
  • +
  • #ensure_formula_installed! Kernel @@ -9588,7 +9596,7 @@

    Method List

  • -
  • +
  • #ensure_installed! Tap @@ -9596,7 +9604,7 @@

    Method List

  • -
  • +
  • #ensure_installed! AbstractCoreTap @@ -9604,7 +9612,7 @@

    Method List

  • -
  • +
  • ensure_installed! AbstractCoreTap @@ -9612,7 +9620,7 @@

    Method List

  • -
  • +
  • #ensure_installed! CoreTap @@ -9620,7 +9628,7 @@

    Method List

  • -
  • +
  • ensure_installed! Utils::Git @@ -9628,7 +9636,7 @@

    Method List

  • -
  • +
  • ensure_utf8_encoding Formulary @@ -9636,7 +9644,7 @@

    Method List

  • -
  • +
  • #entries Debrew::Menu @@ -9644,7 +9652,7 @@

    Method List

  • -
  • +
  • #env BuildError @@ -9652,7 +9660,7 @@

    Method List

  • -
  • +
  • #env Cask::Config @@ -9660,7 +9668,7 @@

    Method List

  • -
  • +
  • #env Requirement @@ -9668,7 +9676,7 @@

    Method List

  • -
  • +
  • env Requirement @@ -9676,7 +9684,7 @@

    Method List

  • -
  • +
  • #env BuildEnvironment::DSL @@ -9684,7 +9692,7 @@

    Method List

  • -
  • +
  • #env? Homebrew::CLI::Parser @@ -9692,7 +9700,7 @@

    Method List

  • -
  • +
  • env_method_name Homebrew::EnvConfig @@ -9700,7 +9708,7 @@

    Method List

  • -
  • +
  • #env_proc Dependency @@ -9708,7 +9716,7 @@

    Method List

  • -
  • +
  • #env_proc Requirement @@ -9716,7 +9724,7 @@

    Method List

  • -
  • +
  • env_proc Requirement @@ -9724,7 +9732,7 @@

    Method List

  • -
  • +
  • #env_script_all_files Pathname @@ -9732,7 +9740,7 @@

    Method List

  • -
  • +
  • env_vars_manpage Homebrew::Manpages @@ -9740,7 +9748,7 @@

    Method List

  • -
  • +
  • #environment_variables Homebrew::Service @@ -9748,7 +9756,7 @@

    Method List

  • -
  • +
  • #environment_variables Homebrew::Manpages::Variables @@ -9756,7 +9764,7 @@

    Method List

  • -
  • +
  • #eql? Locale @@ -9764,7 +9772,7 @@

    Method List

  • -
  • +
  • #eql? Cask::Cask @@ -9772,7 +9780,7 @@

    Method List

  • -
  • +
  • #eql? Utils::Bottles::Tag @@ -9780,7 +9788,7 @@

    Method List

  • -
  • +
  • error Formatter @@ -9788,7 +9796,7 @@

    Method List

  • -
  • +
  • #error_log_path Homebrew::Service @@ -9796,7 +9804,7 @@

    Method List

  • -
  • +
  • error_message_with_suggestions Cask::Utils @@ -9804,7 +9812,7 @@

    Method List

  • -
  • +
  • #errors Cask::Audit @@ -9812,7 +9820,7 @@

    Method List

  • -
  • +
  • #errors StringInreplaceExtension @@ -9820,7 +9828,7 @@

    Method List

  • -
  • +
  • #errors? Cask::Audit @@ -9828,7 +9836,7 @@

    Method List

  • -
  • +
  • escape GitHub::Actions @@ -9836,7 +9844,7 @@

    Method List

  • -
  • +
  • #escaped_name Resource @@ -9844,7 +9852,7 @@

    Method List

  • -
  • +
  • #etc Formula @@ -9852,7 +9860,7 @@

    Method List

  • -
  • +
  • #eval_all TestRunnerFormula @@ -9860,7 +9868,7 @@

    Method List

  • -
  • +
  • #eval_caveats Cask::DSL::Caveats @@ -9868,7 +9876,7 @@

    Method List

  • -
  • +
  • #examine_git_origin Homebrew::Diagnostic::Checks @@ -9876,7 +9884,7 @@

    Method List

  • -
  • +
  • exception_data SPDX @@ -9884,7 +9892,7 @@

    Method List

  • -
  • +
  • #exec Sandbox @@ -9892,7 +9900,7 @@

    Method List

  • -
  • +
  • #exec_browser Kernel @@ -9900,7 +9908,7 @@

    Method List

  • -
  • +
  • #exec_editor Kernel @@ -9908,7 +9916,7 @@

    Method List

  • -
  • +
  • executable Utils::Tar @@ -9916,7 +9924,7 @@

    Method List

  • -
  • +
  • #existing PATH @@ -9924,7 +9932,7 @@

    Method List

  • -
  • +
  • #exit_status SystemCommand::Result @@ -9932,7 +9940,7 @@

    Method List

  • -
  • +
  • expand Dependency @@ -9940,7 +9948,7 @@

    Method List

  • -
  • +
  • expand Requirement @@ -9948,7 +9956,7 @@

    Method List

  • -
  • +
  • #expand_dependencies FormulaInstaller @@ -9956,7 +9964,7 @@

    Method List

  • -
  • +
  • #expand_dependencies_for_formula FormulaInstaller @@ -9964,7 +9972,7 @@

    Method List

  • -
  • +
  • #expand_deps Build @@ -9972,7 +9980,7 @@

    Method List

  • -
  • +
  • #expand_reqs Build @@ -9980,7 +9988,7 @@

    Method List

  • -
  • +
  • #expand_requirements FormulaInstaller @@ -9988,7 +9996,7 @@

    Method List

  • -
  • +
  • #expected ChecksumMismatchError @@ -9996,7 +10004,7 @@

    Method List

  • -
  • +
  • #expected_remote TapRemoteMismatchError @@ -10004,7 +10012,7 @@

    Method List

  • -
  • +
  • #explicit Cask::Config @@ -10012,7 +10020,7 @@

    Method List

  • -
  • +
  • #explicit_s Cask::Config @@ -10020,7 +10028,7 @@

    Method List

  • -
  • +
  • export_value Utils::Shell @@ -10028,7 +10036,7 @@

    Method List

  • -
  • +
  • #expression_negated? RuboCop::Cop::HelperFunctions @@ -10036,7 +10044,7 @@

    Method List

  • -
  • +
  • extended Superenv @@ -10044,7 +10052,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Xz @@ -10052,7 +10060,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Air @@ -10060,7 +10068,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Cab @@ -10068,7 +10076,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Dmg @@ -10076,7 +10084,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Jar @@ -10084,7 +10092,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Lha @@ -10092,7 +10100,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Otf @@ -10100,7 +10108,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Pax @@ -10108,7 +10116,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Pkg @@ -10116,7 +10124,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Rar @@ -10124,7 +10132,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Sit @@ -10132,7 +10140,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Tar @@ -10140,7 +10148,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Ttf @@ -10148,7 +10156,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Xar @@ -10156,7 +10164,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Zip @@ -10164,7 +10172,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Gzip @@ -10172,7 +10180,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Lzip @@ -10180,7 +10188,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Lzma @@ -10188,7 +10196,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Zstd @@ -10196,7 +10204,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Bzip2 @@ -10204,7 +10212,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::P7Zip @@ -10212,7 +10220,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Fossil @@ -10220,7 +10228,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Compress @@ -10228,7 +10236,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::LuaRock @@ -10236,7 +10244,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Directory @@ -10244,7 +10252,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::Executable @@ -10252,7 +10260,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::GenericUnar @@ -10260,7 +10268,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::MicrosoftOfficeXml @@ -10268,7 +10276,7 @@

    Method List

  • -
  • +
  • extensions UnpackStrategy::SelfExtractingExecutable @@ -10276,7 +10284,7 @@

    Method List

  • -
  • +
  • #external? EmbeddedPatch @@ -10284,7 +10292,7 @@

    Method List

  • -
  • +
  • #external? ExternalPatch @@ -10292,7 +10300,7 @@

    Method List

  • -
  • +
  • external_cmd_path Commands @@ -10300,7 +10308,7 @@

    Method List

  • -
  • +
  • external_commands Commands @@ -10308,7 +10316,7 @@

    Method List

  • -
  • +
  • external_ruby_cmd_path Commands @@ -10316,7 +10324,7 @@

    Method List

  • -
  • +
  • external_ruby_v2_cmd_path Commands @@ -10324,7 +10332,7 @@

    Method List

  • -
  • +
  • extmodel Hardware::CPU @@ -10332,7 +10340,7 @@

    Method List

  • -
  • +
  • #extname Bottle::Filename @@ -10340,7 +10348,7 @@

    Method List

  • -
  • +
  • #extname Pathname @@ -10348,7 +10356,7 @@

    Method List

  • -
  • +
  • extname_tag_rebuild Utils::Bottles @@ -10356,7 +10364,7 @@

    Method List

  • -
  • +
  • extract Homebrew @@ -10364,7 +10372,7 @@

    Method List

  • -
  • +
  • #extract UnpackStrategy @@ -10372,7 +10380,7 @@

    Method List

  • -
  • +
  • extract_args Homebrew @@ -10380,7 +10388,7 @@

    Method List

  • -
  • +
  • #extract_nestedly UnpackStrategy @@ -10388,7 +10396,7 @@

    Method List

  • -
  • +
  • #extract_nestedly UnpackStrategy::Uncompressed @@ -10396,7 +10404,7 @@

    Method List

  • -
  • +
  • #extract_primary_container Cask::Installer @@ -10404,7 +10412,7 @@

    Method List

  • -
  • +
  • #extract_to_dir UnpackStrategy::Cab @@ -10412,7 +10420,7 @@

    Method List

  • -
  • +
  • #extras PyPI::Package @@ -10420,7 +10428,7 @@

    Method List

  • -
  • +
  • #f Homebrew::Service @@ -10428,7 +10436,7 @@

    Method List

  • -
  • +
  • #f String @@ -10436,7 +10444,7 @@

    Method List

  • -
  • +
  • #f Symbol @@ -10444,7 +10452,7 @@

    Method List

  • -
  • +
  • factory Formulary @@ -10452,7 +10460,7 @@

    Method List

  • -
  • +
  • factory_cached? Formulary @@ -10460,7 +10468,7 @@

    Method List

  • -
  • +
  • failed? Homebrew @@ -10468,7 +10476,7 @@

    Method List

  • -
  • +
  • fails_with Formula @@ -10476,7 +10484,7 @@

    Method List

  • -
  • +
  • #fails_with SoftwareSpec @@ -10484,7 +10492,7 @@

    Method List

  • -
  • +
  • #fails_with? CompilerFailure @@ -10492,7 +10500,7 @@

    Method List

  • -
  • +
  • #failures CompilerSelector @@ -10500,7 +10508,7 @@

    Method List

  • -
  • +
  • family Hardware::CPU @@ -10508,7 +10516,7 @@

    Method List

  • -
  • +
  • #fatal? Requirement @@ -10516,7 +10524,7 @@

    Method List

  • -
  • +
  • #fatal_build_from_source_checks Homebrew::Diagnostic::Checks @@ -10524,7 +10532,7 @@

    Method List

  • -
  • +
  • #fatal_preinstall_checks Homebrew::Diagnostic::Checks @@ -10532,7 +10540,7 @@

    Method List

  • -
  • +
  • #fatal_setup_build_environment_checks Homebrew::Diagnostic::Checks @@ -10540,7 +10548,7 @@

    Method List

  • -
  • +
  • #fc SharedEnvExtension @@ -10548,7 +10556,7 @@

    Method List

  • -
  • +
  • #fcflags SharedEnvExtension @@ -10556,7 +10564,7 @@

    Method List

  • -
  • +
  • feature? Hardware::CPU @@ -10564,7 +10572,7 @@

    Method List

  • -
  • +
  • features Hardware::CPU @@ -10572,7 +10580,7 @@

    Method List

  • -
  • +
  • fetch Homebrew::API @@ -10580,7 +10588,7 @@

    Method List

  • -
  • +
  • fetch Tap @@ -10588,7 +10596,7 @@

    Method List

  • -
  • +
  • fetch Homebrew::API::Cask @@ -10596,7 +10604,7 @@

    Method List

  • -
  • +
  • #fetch Resource @@ -10604,7 +10612,7 @@

    Method List

  • -
  • +
  • fetch Homebrew @@ -10612,7 +10620,7 @@

    Method List

  • -
  • +
  • fetch Homebrew::API::Formula @@ -10620,7 +10628,7 @@

    Method List

  • -
  • +
  • #fetch CacheStore @@ -10628,7 +10636,7 @@

    Method List

  • -
  • +
  • #fetch Downloadable @@ -10636,7 +10644,7 @@

    Method List

  • -
  • +
  • fetch Homebrew::API::Analytics @@ -10644,7 +10652,7 @@

    Method List

  • -
  • +
  • #fetch Cask::Download @@ -10652,7 +10660,7 @@

    Method List

  • -
  • +
  • #fetch Bottle @@ -10660,7 +10668,7 @@

    Method List

  • -
  • +
  • #fetch Cask::Installer @@ -10668,7 +10676,7 @@

    Method List

  • -
  • +
  • #fetch AbstractDownloadStrategy @@ -10676,7 +10684,7 @@

    Method List

  • -
  • +
  • #fetch VCSDownloadStrategy @@ -10684,7 +10692,7 @@

    Method List

  • -
  • +
  • #fetch CurlDownloadStrategy @@ -10692,7 +10700,7 @@

    Method List

  • -
  • +
  • #fetch SubversionDownloadStrategy @@ -10700,7 +10708,7 @@

    Method List

  • -
  • +
  • #fetch FormulaInstaller @@ -10708,7 +10716,7 @@

    Method List

  • -
  • +
  • #fetch LinkageCacheStore @@ -10716,7 +10724,7 @@

    Method List

  • -
  • +
  • #fetch DependencyCollector @@ -10724,7 +10732,7 @@

    Method List

  • -
  • +
  • #fetch GitHubArtifactDownloadStrategy @@ -10732,7 +10740,7 @@

    Method List

  • -
  • +
  • #fetch? Homebrew::FormulaCreator @@ -10740,7 +10748,7 @@

    Method List

  • -
  • +
  • fetch_args Homebrew @@ -10748,7 +10756,7 @@

    Method List

  • -
  • +
  • #fetch_bottle? Homebrew::Fetch @@ -10756,7 +10764,7 @@

    Method List

  • -
  • +
  • #fetch_bottle_tab Formula @@ -10764,7 +10772,7 @@

    Method List

  • -
  • +
  • #fetch_bottle_tab FormulaInstaller @@ -10772,7 +10780,7 @@

    Method List

  • -
  • +
  • fetch_cask Homebrew @@ -10780,7 +10788,7 @@

    Method List

  • -
  • +
  • #fetch_dependencies FormulaInstaller @@ -10788,7 +10796,7 @@

    Method List

  • -
  • +
  • #fetch_dependency FormulaInstaller @@ -10796,7 +10804,7 @@

    Method List

  • -
  • +
  • fetch_fetchable Homebrew @@ -10804,7 +10812,7 @@

    Method List

  • -
  • +
  • fetch_formula Homebrew @@ -10812,7 +10820,7 @@

    Method List

  • -
  • +
  • #fetch_issues BuildError @@ -10820,7 +10828,7 @@

    Method List

  • -
  • +
  • fetch_json_api_file Homebrew::API @@ -10828,7 +10836,7 @@

    Method List

  • -
  • +
  • #fetch_last_commit VCSDownloadStrategy @@ -10836,7 +10844,7 @@

    Method List

  • -
  • +
  • fetch_open_pull_requests GitHub @@ -10844,7 +10852,7 @@

    Method List

  • -
  • +
  • fetch_patch Homebrew @@ -10852,7 +10860,7 @@

    Method List

  • -
  • +
  • #fetch_patches Formula @@ -10860,7 +10868,7 @@

    Method List

  • -
  • +
  • #fetch_patches Resource @@ -10868,7 +10876,7 @@

    Method List

  • -
  • +
  • fetch_pull_requests GitHub @@ -10876,7 +10884,7 @@

    Method List

  • -
  • +
  • fetch_resource Homebrew @@ -10884,7 +10892,7 @@

    Method List

  • -
  • +
  • fetch_resource_and_forced_version Homebrew @@ -10892,7 +10900,7 @@

    Method List

  • -
  • +
  • #fetch_tab Bottle @@ -10900,7 +10908,7 @@

    Method List

  • -
  • +
  • fetched FormulaInstaller @@ -10908,7 +10916,7 @@

    Method List

  • -
  • +
  • #fflags SharedEnvExtension @@ -10916,7 +10924,7 @@

    Method List

  • -
  • +
  • file_at_commit Utils::Git @@ -10924,7 +10932,7 @@

    Method List

  • -
  • +
  • #file_count DiskUsageExtension @@ -10932,7 +10940,7 @@

    Method List

  • -
  • +
  • file_from_bottle Utils::Bottles @@ -10940,7 +10948,7 @@

    Method List

  • -
  • +
  • file_linked_libraries Keg @@ -10948,7 +10956,7 @@

    Method List

  • -
  • +
  • file_outdated? Utils::Bottles @@ -10956,7 +10964,7 @@

    Method List

  • -
  • +
  • #file_path RuboCop::Cop::FormulaCop @@ -10964,7 +10972,7 @@

    Method List

  • -
  • +
  • #file_type Pathname @@ -10972,7 +10980,7 @@

    Method List

  • -
  • +
  • #files Resource::Partial @@ -10980,7 +10988,7 @@

    Method List

  • -
  • +
  • #files Resource @@ -10988,7 +10996,7 @@

    Method List

  • -
  • +
  • filter_items Homebrew::Livecheck::Strategy::Sparkle @@ -10996,7 +11004,7 @@

    Method List

  • -
  • +
  • filtered_list Homebrew @@ -11004,7 +11012,7 @@

    Method List

  • -
  • +
  • #finalize_upgrade Cask::Installer @@ -11012,7 +11020,7 @@

    Method List

  • -
  • +
  • #find_all_blocks RuboCop::Cop::HelperFunctions @@ -11020,7 +11028,7 @@

    Method List

  • -
  • +
  • #find_block RuboCop::Cop::HelperFunctions @@ -11028,7 +11036,7 @@

    Method List

  • -
  • +
  • #find_blocks RuboCop::Cop::HelperFunctions @@ -11036,7 +11044,7 @@

    Method List

  • -
  • +
  • find_cask_in_tap Cask::CaskLoader @@ -11044,7 +11052,7 @@

    Method List

  • -
  • +
  • find_commands Commands @@ -11052,7 +11060,7 @@

    Method List

  • -
  • +
  • #find_const RuboCop::Cop::HelperFunctions @@ -11060,7 +11068,7 @@

    Method List

  • -
  • +
  • #find_dylib Keg @@ -11068,7 +11076,7 @@

    Method List

  • -
  • +
  • #find_dylib_suffix_from Keg @@ -11076,7 +11084,7 @@

    Method List

  • -
  • +
  • #find_end_line RuboCop::Cop::Cask::CaskHelp @@ -11084,7 +11092,7 @@

    Method List

  • -
  • +
  • #find_every_func_call_by_name RuboCop::Cop::HelperFunctions @@ -11092,7 +11100,7 @@

    Method List

  • -
  • +
  • #find_every_method_call_by_name RuboCop::Cop::HelperFunctions @@ -11100,7 +11108,7 @@

    Method List

  • -
  • +
  • find_formula_in_tap Formulary @@ -11108,7 +11116,7 @@

    Method List

  • -
  • +
  • find_in_path Homebrew @@ -11116,7 +11124,7 @@

    Method List

  • -
  • +
  • #find_instance_call RuboCop::Cop::HelperFunctions @@ -11124,7 +11132,7 @@

    Method List

  • -
  • +
  • #find_instance_method_call RuboCop::Cop::HelperFunctions @@ -11132,7 +11140,7 @@

    Method List

  • -
  • +
  • find_internal_commands Commands @@ -11140,7 +11148,7 @@

    Method List

  • -
  • +
  • #find_method_calls_by_name RuboCop::Cop::HelperFunctions @@ -11148,7 +11156,7 @@

    Method List

  • -
  • +
  • #find_method_def RuboCop::Cop::HelperFunctions @@ -11156,7 +11164,7 @@

    Method List

  • -
  • +
  • #find_method_with_args RuboCop::Cop::HelperFunctions @@ -11164,7 +11172,7 @@

    Method List

  • -
  • +
  • #find_node_method_by_name RuboCop::Cop::HelperFunctions @@ -11172,7 +11180,7 @@

    Method List

  • -
  • +
  • #find_relative_paths Homebrew::Diagnostic::Checks @@ -11180,7 +11188,7 @@

    Method List

  • -
  • +
  • find_repo_path_for_repo Homebrew @@ -11188,7 +11196,7 @@

    Method List

  • -
  • +
  • find_some_installed_dependents InstalledDependents @@ -11196,7 +11204,7 @@

    Method List

  • -
  • +
  • #find_strings RuboCop::Cop::HelperFunctions @@ -11204,7 +11212,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Git @@ -11212,7 +11220,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Gnu @@ -11220,7 +11228,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Npm @@ -11228,7 +11236,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Xml @@ -11236,7 +11244,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Cpan @@ -11244,7 +11252,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Json @@ -11252,7 +11260,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Pypi @@ -11260,7 +11268,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Xorg @@ -11268,7 +11276,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Yaml @@ -11276,7 +11284,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Gnome @@ -11284,7 +11292,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Apache @@ -11292,7 +11300,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Hackage @@ -11300,7 +11308,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Sparkle @@ -11308,7 +11316,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Bitbucket @@ -11316,7 +11324,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Launchpad @@ -11324,7 +11332,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::PageMatch @@ -11332,7 +11340,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::Sourceforge @@ -11340,7 +11348,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::HeaderMatch @@ -11348,7 +11356,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::ExtractPlist @@ -11356,7 +11364,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::GithubLatest @@ -11364,7 +11372,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::GithubReleases @@ -11372,7 +11380,7 @@

    Method List

  • -
  • +
  • find_versions Homebrew::Livecheck::Strategy::ElectronBuilder @@ -11380,7 +11388,7 @@

    Method List

  • -
  • +
  • #finish FormulaInstaller @@ -11388,7 +11396,7 @@

    Method List

  • -
  • +
  • #fish_completion Formula @@ -11396,7 +11404,7 @@

    Method List

  • -
  • +
  • #fish_function Formula @@ -11404,7 +11412,7 @@

    Method List

  • -
  • +
  • #fix_dynamic_linkage Keg @@ -11412,7 +11420,7 @@

    Method List

  • -
  • +
  • #fix_dynamic_linkage FormulaInstaller @@ -11420,7 +11428,7 @@

    Method List

  • -
  • +
  • #fix_remote_configuration Tap @@ -11428,7 +11436,7 @@

    Method List

  • -
  • +
  • #fix_tabs Migrator @@ -11436,7 +11444,7 @@

    Method List

  • -
  • +
  • #fixed_name Keg @@ -11444,7 +11452,7 @@

    Method List

  • -
  • +
  • #fixopt Build @@ -11452,7 +11460,7 @@

    Method List

  • -
  • +
  • #flag Option @@ -11460,7 +11468,7 @@

    Method List

  • -
  • +
  • #flag Homebrew::CLI::Parser @@ -11468,7 +11476,7 @@

    Method List

  • -
  • +
  • flags Hardware::CPU @@ -11476,7 +11484,7 @@

    Method List

  • -
  • +
  • #flags_only Homebrew::CLI::Args @@ -11484,7 +11492,7 @@

    Method List

  • -
  • +
  • #follow_installed_alias Formula @@ -11492,7 +11500,7 @@

    Method List

  • -
  • +
  • for Keg @@ -11500,7 +11508,7 @@

    Method List

  • -
  • +
  • for Cask::CaskLoader @@ -11508,7 +11516,7 @@

    Method List

  • -
  • +
  • for_formula Tab @@ -11516,7 +11524,7 @@

    Method List

  • -
  • +
  • for_keg Tab @@ -11524,7 +11532,7 @@

    Method List

  • -
  • +
  • for_name Tab @@ -11532,7 +11540,7 @@

    Method List

  • -
  • +
  • #for_path Homebrew::Style::Offenses @@ -11540,7 +11548,7 @@

    Method List

  • -
  • +
  • for_standard CompilerFailure @@ -11548,7 +11556,7 @@

    Method List

  • -
  • +
  • forbidden_licenses_include? SPDX @@ -11556,7 +11564,7 @@

    Method List

  • -
  • +
  • force_utf8! FormulaInfo @@ -11564,7 +11572,7 @@

    Method List

  • -
  • +
  • #forget Cask::Pkg @@ -11572,7 +11580,7 @@

    Method List

  • -
  • +
  • forget_user_gem_groups! Homebrew @@ -11580,7 +11588,7 @@

    Method List

  • -
  • +
  • fork_exists? GitHub @@ -11588,7 +11596,7 @@

    Method List

  • -
  • +
  • forked_repo_info! GitHub @@ -11596,7 +11604,7 @@

    Method List

  • -
  • +
  • #format_component RuboCop::Cop::HelperFunctions @@ -11604,7 +11612,7 @@

    Method List

  • -
  • +
  • format_count Utils::Analytics @@ -11612,7 +11620,7 @@

    Method List

  • -
  • +
  • format_description Homebrew::Completions @@ -11620,7 +11628,7 @@

    Method List

  • -
  • +
  • format_help_text Formatter @@ -11628,7 +11636,7 @@

    Method List

  • -
  • +
  • format_multiline_string GitHub::Actions @@ -11636,7 +11644,7 @@

    Method List

  • -
  • +
  • format_opt Homebrew::Manpages @@ -11644,7 +11652,7 @@

    Method List

  • -
  • +
  • format_percent Utils::Analytics @@ -11652,7 +11660,7 @@

    Method List

  • -
  • +
  • format_problem_lines Homebrew @@ -11660,7 +11668,7 @@

    Method List

  • -
  • +
  • format_usage_banner Homebrew::Manpages @@ -11668,7 +11676,7 @@

    Method List

  • -
  • +
  • format_versioned Cask::List @@ -11676,7 +11684,7 @@

    Method List

  • -
  • +
  • #formula Build @@ -11684,7 +11692,7 @@

    Method List

  • -
  • +
  • #formula Caveats @@ -11692,7 +11700,7 @@

    Method List

  • -
  • +
  • #formula Migrator @@ -11700,7 +11708,7 @@

    Method List

  • -
  • +
  • #formula CompilerSelector @@ -11708,7 +11716,7 @@

    Method List

  • -
  • +
  • #formula Livecheck @@ -11716,7 +11724,7 @@

    Method List

  • -
  • +
  • #formula FormulaValidationError @@ -11724,7 +11732,7 @@

    Method List

  • -
  • +
  • #formula FormulaConflictError @@ -11732,7 +11740,7 @@

    Method List

  • -
  • +
  • #formula BuildError @@ -11740,7 +11748,7 @@

    Method List

  • -
  • +
  • formula Homebrew @@ -11748,7 +11756,7 @@

    Method List

  • -
  • +
  • #formula Homebrew::FormulaAuditor @@ -11756,7 +11764,7 @@

    Method List

  • -
  • +
  • #formula LinkageChecker @@ -11764,7 +11772,7 @@

    Method List

  • -
  • +
  • #formula FormulaInstaller @@ -11772,7 +11780,7 @@

    Method List

  • -
  • +
  • #formula Cask::DSL::DependsOn @@ -11780,7 +11788,7 @@

    Method List

  • -
  • +
  • #formula TestRunnerFormula @@ -11788,7 +11796,7 @@

    Method List

  • -
  • +
  • #formula FormulaCellarChecks @@ -11796,7 +11804,7 @@

    Method List

  • -
  • +
  • #formula_aliases Homebrew::TapAuditor @@ -11804,7 +11812,7 @@

    Method List

  • -
  • +
  • formula_args Homebrew @@ -11812,7 +11820,7 @@

    Method List

  • -
  • +
  • #formula_at_revision FormulaVersions @@ -11820,7 +11828,7 @@

    Method List

  • -
  • +
  • formula_class_defined_from_api? Formulary @@ -11828,7 +11836,7 @@

    Method List

  • -
  • +
  • formula_class_defined_from_path? Formulary @@ -11836,7 +11844,7 @@

    Method List

  • -
  • +
  • formula_class_get_from_api Formulary @@ -11844,7 +11852,7 @@

    Method List

  • -
  • +
  • formula_class_get_from_path Formulary @@ -11852,7 +11860,7 @@

    Method List

  • -
  • +
  • formula_contents Utils::Bottles @@ -11860,7 +11868,7 @@

    Method List

  • -
  • +
  • formula_deprecated Homebrew::Livecheck::SkipConditions @@ -11868,7 +11876,7 @@

    Method List

  • -
  • +
  • #formula_dir Tap @@ -11876,7 +11884,7 @@

    Method List

  • -
  • +
  • formula_disabled Homebrew::Livecheck::SkipConditions @@ -11884,7 +11892,7 @@

    Method List

  • -
  • +
  • #formula_error FormulaUnreadableErrorModule @@ -11892,7 +11900,7 @@

    Method List

  • -
  • +
  • #formula_files Tap @@ -11900,7 +11908,7 @@

    Method List

  • -
  • +
  • formula_files_by_name Tap @@ -11908,7 +11916,7 @@

    Method List

  • -
  • +
  • formula_head_only Homebrew::Livecheck::SkipConditions @@ -11916,7 +11924,7 @@

    Method List

  • -
  • +
  • formula_ignores Homebrew @@ -11924,7 +11932,7 @@

    Method List

  • -
  • +
  • formula_linked_version SystemConfig @@ -11932,7 +11940,7 @@

    Method List

  • -
  • +
  • formula_name Homebrew::Livecheck @@ -11940,7 +11948,7 @@

    Method List

  • -
  • +
  • #formula_names Tap @@ -11948,7 +11956,7 @@

    Method List

  • -
  • +
  • #formula_names Homebrew::TapAuditor @@ -11956,7 +11964,7 @@

    Method List

  • -
  • +
  • #formula_oldnames Tap @@ -11964,7 +11972,7 @@

    Method List

  • -
  • +
  • formula_optionally_versioned_regex Version @@ -11972,7 +11980,7 @@

    Method List

  • -
  • +
  • #formula_options Homebrew::CLI::Parser @@ -11980,7 +11988,7 @@

    Method List

  • -
  • +
  • formula_output Utils::Analytics @@ -11988,7 +11996,7 @@

    Method List

  • -
  • +
  • #formula_renames Tap @@ -11996,7 +12004,7 @@

    Method List

  • -
  • +
  • #formula_tap RuboCop::Cop::FormulaCop @@ -12004,7 +12012,7 @@

    Method List

  • -
  • +
  • formula_version Homebrew @@ -12012,7 +12020,7 @@

    Method List

  • -
  • +
  • formula_versioned Homebrew::Livecheck::SkipConditions @@ -12020,7 +12028,7 @@

    Method List

  • -
  • +
  • #formulae TapFormulaAmbiguityError @@ -12028,7 +12036,7 @@

    Method List

  • -
  • +
  • formulae_all_installs_from_args Homebrew @@ -12036,7 +12044,7 @@

    Method List

  • -
  • +
  • formulae_need_bottles? Homebrew @@ -12044,7 +12052,7 @@

    Method List

  • -
  • +
  • #fortran SharedEnvExtension @@ -12052,7 +12060,7 @@

    Method List

  • -
  • +
  • #frameworks Formula @@ -12060,7 +12068,7 @@

    Method List

  • -
  • +
  • #free_port Homebrew::FreePort @@ -12068,7 +12076,7 @@

    Method List

  • -
  • +
  • freeze Formula @@ -12076,7 +12084,7 @@

    Method List

  • -
  • +
  • #freeze Options @@ -12084,7 +12092,7 @@

    Method List

  • -
  • +
  • #freeze Version @@ -12092,7 +12100,7 @@

    Method List

  • -
  • +
  • #freeze Resource @@ -12100,7 +12108,7 @@

    Method List

  • -
  • +
  • #freeze Downloadable @@ -12108,7 +12116,7 @@

    Method List

  • -
  • +
  • #freeze Keg::Relocation @@ -12116,7 +12124,7 @@

    Method List

  • -
  • +
  • #freeze SoftwareSpec @@ -12124,7 +12132,7 @@

    Method List

  • -
  • +
  • #freeze DependencyCollector @@ -12132,7 +12140,7 @@

    Method List

  • -
  • +
  • #freeze_named_args! Homebrew::CLI::Args @@ -12140,7 +12148,7 @@

    Method List

  • -
  • +
  • #freeze_processed_options! Homebrew::CLI::Args @@ -12148,7 +12156,7 @@

    Method List

  • -
  • +
  • #freeze_remaining_args! Homebrew::CLI::Args @@ -12156,7 +12164,7 @@

    Method List

  • -
  • +
  • #fresh_install? FormulaInstaller @@ -12164,7 +12172,7 @@

    Method List

  • -
  • +
  • from Version::Token @@ -12172,7 +12180,7 @@

    Method List

  • -
  • +
  • from_args Cask::Config @@ -12180,7 +12188,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::Pkg @@ -12188,7 +12196,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::Manpage @@ -12196,7 +12204,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::Artifact @@ -12204,7 +12212,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::Installer @@ -12212,7 +12220,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::Relocated @@ -12220,7 +12228,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::StageOnly @@ -12228,7 +12236,7 @@

    Method List

  • -
  • +
  • from_args Cask::Artifact::AbstractUninstall @@ -12236,7 +12244,7 @@

    Method List

  • -
  • +
  • #from_block? Cask::URL @@ -12244,7 +12252,7 @@

    Method List

  • -
  • +
  • from_cmd_path Homebrew::CLI::Parser @@ -12252,7 +12260,7 @@

    Method List

  • -
  • +
  • from_contents Formulary @@ -12260,7 +12268,7 @@

    Method List

  • -
  • +
  • from_extension UnpackStrategy @@ -12268,7 +12276,7 @@

    Method List

  • -
  • +
  • from_file Tab @@ -12276,7 +12284,7 @@

    Method List

  • -
  • +
  • from_file_content Tab @@ -12284,7 +12292,7 @@

    Method List

  • -
  • +
  • #from_h_array_gsubs Cask::CaskLoader::FromAPILoader @@ -12292,7 +12300,7 @@

    Method List

  • -
  • +
  • #from_h_gsubs Cask::CaskLoader::FromAPILoader @@ -12300,7 +12308,7 @@

    Method List

  • -
  • +
  • #from_h_hash_gsubs Cask::CaskLoader::FromAPILoader @@ -12308,7 +12316,7 @@

    Method List

  • -
  • +
  • #from_h_string_gsubs Cask::CaskLoader::FromAPILoader @@ -12316,7 +12324,7 @@

    Method List

  • -
  • +
  • from_info_plist Homebrew::BundleVersion @@ -12324,7 +12332,7 @@

    Method List

  • -
  • +
  • from_info_plist_content Homebrew::BundleVersion @@ -12332,7 +12340,7 @@

    Method List

  • -
  • +
  • from_json Cask::Config @@ -12340,7 +12348,7 @@

    Method List

  • -
  • +
  • from_keg Formulary @@ -12348,7 +12356,7 @@

    Method List

  • -
  • +
  • from_magic UnpackStrategy @@ -12356,7 +12364,7 @@

    Method List

  • -
  • +
  • from_package_info Homebrew::BundleVersion @@ -12364,7 +12372,7 @@

    Method List

  • -
  • +
  • from_path Tap @@ -12372,7 +12380,7 @@

    Method List

  • -
  • +
  • from_path Utils::Shell @@ -12380,7 +12388,7 @@

    Method List

  • -
  • +
  • from_rack Formulary @@ -12388,7 +12396,7 @@

    Method List

  • -
  • +
  • #from_same_tap_user? Migrator @@ -12396,7 +12404,7 @@

    Method List

  • -
  • +
  • from_symbol MacOSVersion @@ -12404,7 +12412,7 @@

    Method List

  • -
  • +
  • from_symbol Utils::Bottles::Tag @@ -12412,7 +12420,7 @@

    Method List

  • -
  • +
  • from_symbol Homebrew::Livecheck::Strategy @@ -12420,7 +12428,7 @@

    Method List

  • -
  • +
  • from_type UnpackStrategy @@ -12428,7 +12436,7 @@

    Method List

  • -
  • +
  • from_url Homebrew::Livecheck::Strategy @@ -12436,7 +12444,7 @@

    Method List

  • -
  • +
  • #full_alias_name Formula @@ -12444,7 +12452,7 @@

    Method List

  • -
  • +
  • #full_installed_alias_name Formula @@ -12452,7 +12460,7 @@

    Method List

  • -
  • +
  • #full_installed_specified_name Formula @@ -12460,7 +12468,7 @@

    Method List

  • -
  • +
  • #full_name Tap @@ -12468,7 +12476,7 @@

    Method List

  • -
  • +
  • #full_name Formula @@ -12476,7 +12484,7 @@

    Method List

  • -
  • +
  • #full_name Cask::Cask @@ -12484,7 +12492,7 @@

    Method List

  • -
  • +
  • #full_name SoftwareSpec @@ -12492,7 +12500,7 @@

    Method List

  • -
  • +
  • #full_name CaskDependent @@ -12500,7 +12508,7 @@

    Method List

  • -
  • +
  • #full_specified_name Formula @@ -12508,7 +12516,7 @@

    Method List

  • -
  • +
  • full_version OS::Mac @@ -12516,7 +12524,7 @@

    Method List

  • -
  • +
  • full_version= OS::Mac @@ -12524,7 +12532,7 @@

    Method List

  • -
  • +
  • #function_mappings Homebrew::Completions::Variables @@ -12532,7 +12540,7 @@

    Method List

  • -
  • +
  • #functions_installed? Keg @@ -12540,7 +12548,7 @@

    Method List

  • -
  • +
  • gain_permissions Cask::Utils @@ -12548,7 +12556,7 @@

    Method List

  • -
  • +
  • gain_permissions_mkpath Cask::Utils @@ -12556,7 +12564,7 @@

    Method List

  • -
  • +
  • gain_permissions_remove Cask::Utils @@ -12564,7 +12572,7 @@

    Method List

  • -
  • +
  • #gain_permissions_remove Cask::Installer @@ -12572,7 +12580,7 @@

    Method List

  • -
  • +
  • gain_permissions_rmdir Cask::Utils @@ -12580,7 +12588,7 @@

    Method List

  • -
  • +
  • #gcc_dep_if_needed DependencyCollector @@ -12588,7 +12596,7 @@

    Method List

  • -
  • +
  • gemfile Homebrew @@ -12596,7 +12604,7 @@

    Method List

  • -
  • +
  • #general Homebrew::BumpVersionParser @@ -12604,7 +12612,7 @@

    Method List

  • -
  • +
  • #generate Attr @@ -12612,7 +12620,7 @@

    Method List

  • -
  • +
  • #generate! Homebrew::FormulaCreator @@ -12620,7 +12628,7 @@

    Method List

  • -
  • +
  • generate_bash_completion_file Homebrew::Completions @@ -12628,7 +12636,7 @@

    Method List

  • -
  • +
  • generate_bash_subcommand_completion Homebrew::Completions @@ -12636,7 +12644,7 @@

    Method List

  • -
  • +
  • generate_cask_api Homebrew @@ -12644,7 +12652,7 @@

    Method List

  • -
  • +
  • generate_cask_api_args Homebrew @@ -12652,7 +12660,7 @@

    Method List

  • -
  • +
  • generate_cmd_manpages Homebrew::Manpages @@ -12660,7 +12668,7 @@

    Method List

  • -
  • +
  • #generate_completions_from_executable Formula @@ -12668,7 +12676,7 @@

    Method List

  • -
  • +
  • generate_csv Homebrew @@ -12676,7 +12684,7 @@

    Method List

  • -
  • +
  • generate_fish_completion_file Homebrew::Completions @@ -12684,7 +12692,7 @@

    Method List

  • -
  • +
  • generate_fish_subcommand_completion Homebrew::Completions @@ -12692,7 +12700,7 @@

    Method List

  • -
  • +
  • generate_formula_api Homebrew @@ -12700,7 +12708,7 @@

    Method List

  • -
  • +
  • generate_formula_api_args Homebrew @@ -12708,7 +12716,7 @@

    Method List

  • -
  • +
  • #generate_help_text Homebrew::CLI::Parser @@ -12716,7 +12724,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Gnu @@ -12724,7 +12732,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Npm @@ -12732,7 +12740,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Cpan @@ -12740,7 +12748,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Pypi @@ -12748,7 +12756,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Xorg @@ -12756,7 +12764,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Gnome @@ -12764,7 +12772,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Apache @@ -12772,7 +12780,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Hackage @@ -12780,7 +12788,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Bitbucket @@ -12788,7 +12796,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Launchpad @@ -12796,7 +12804,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::Sourceforge @@ -12804,7 +12812,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::GithubLatest @@ -12812,7 +12820,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::GithubReleases @@ -12820,7 +12828,7 @@

    Method List

  • -
  • +
  • generate_man_completions Homebrew @@ -12828,7 +12836,7 @@

    Method List

  • -
  • +
  • generate_man_completions_args Homebrew @@ -12836,7 +12844,7 @@

    Method List

  • -
  • +
  • generate_option_doc Homebrew::Manpages @@ -12844,7 +12852,7 @@

    Method List

  • -
  • +
  • generate_release_notes GitHub @@ -12852,7 +12860,7 @@

    Method List

  • -
  • +
  • generate_sha256_line Homebrew @@ -12860,7 +12868,7 @@

    Method List

  • -
  • +
  • generate_zsh_completion_file Homebrew::Completions @@ -12868,7 +12876,7 @@

    Method List

  • -
  • +
  • generate_zsh_option_exclusions Homebrew::Completions @@ -12876,7 +12884,7 @@

    Method List

  • -
  • +
  • generate_zsh_subcommand_completion Homebrew::Completions @@ -12884,7 +12892,7 @@

    Method List

  • -
  • +
  • #generated_hash! APIHashable @@ -12892,7 +12900,7 @@

    Method List

  • -
  • +
  • #generating_hash! APIHashable @@ -12900,7 +12908,7 @@

    Method List

  • -
  • +
  • #generating_hash? APIHashable @@ -12908,7 +12916,7 @@

    Method List

  • -
  • +
  • generic_git_tags Homebrew @@ -12916,7 +12924,7 @@

    Method List

  • -
  • +
  • #get CacheStoreDatabase @@ -12924,7 +12932,7 @@

    Method List

  • -
  • +
  • get_artifact_url GitHub @@ -12932,7 +12940,7 @@

    Method List

  • -
  • +
  • #get_checksum_node RuboCop::Cop::FormulaCop @@ -12940,7 +12948,7 @@

    Method List

  • -
  • +
  • #get_formula Formulary::FormulaLoader @@ -12948,7 +12956,7 @@

    Method List

  • -
  • +
  • #get_formula Formulary::BottleLoader @@ -12956,7 +12964,7 @@

    Method List

  • -
  • +
  • #get_formula Formulary::TapLoader @@ -12964,7 +12972,7 @@

    Method List

  • -
  • +
  • #get_formula Formulary::NullLoader @@ -12972,7 +12980,7 @@

    Method List

  • -
  • +
  • get_info Cask::Info @@ -12980,7 +12988,7 @@

    Method List

  • -
  • +
  • get_latest_release GitHub @@ -12988,7 +12996,7 @@

    Method List

  • -
  • +
  • #get_make_var StringInreplaceExtension @@ -12996,7 +13004,7 @@

    Method List

  • -
  • +
  • #get_mounts Homebrew::Diagnostic::Volumes @@ -13004,7 +13012,7 @@

    Method List

  • -
  • +
  • get_package Homebrew @@ -13012,7 +13020,7 @@

    Method List

  • -
  • +
  • get_pull_request_changed_files GitHub @@ -13020,7 +13028,7 @@

    Method List

  • -
  • +
  • #get_pypi_url RuboCop::Cop::FormulaAudit::PyPiUrls @@ -13028,7 +13036,7 @@

    Method List

  • -
  • +
  • get_release GitHub @@ -13036,7 +13044,7 @@

    Method List

  • -
  • +
  • #get_repo_data Homebrew::FormulaAuditor @@ -13044,7 +13052,7 @@

    Method List

  • -
  • +
  • get_repo_license GitHub @@ -13052,7 +13060,7 @@

    Method List

  • -
  • +
  • #get_state RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -13060,7 +13068,7 @@

    Method List

  • -
  • +
  • get_workflow_run GitHub @@ -13068,7 +13076,7 @@

    Method List

  • -
  • +
  • gist_logs Homebrew @@ -13076,7 +13084,7 @@

    Method List

  • -
  • +
  • gist_logs_args Homebrew @@ -13084,7 +13092,7 @@

    Method List

  • -
  • +
  • gistify_logs Homebrew @@ -13092,7 +13100,7 @@

    Method List

  • -
  • +
  • git Utils::Git @@ -13100,7 +13108,7 @@

    Method List

  • -
  • +
  • #git? Tap @@ -13108,7 +13116,7 @@

    Method List

  • -
  • +
  • #git_branch Tap @@ -13116,7 +13124,7 @@

    Method List

  • -
  • +
  • git_branch Utils @@ -13124,7 +13132,7 @@

    Method List

  • -
  • +
  • git_commit_message Utils @@ -13132,7 +13140,7 @@

    Method List

  • -
  • +
  • #git_dep_if_needed DependencyCollector @@ -13140,7 +13148,7 @@

    Method List

  • -
  • +
  • #git_head Tap @@ -13148,7 +13156,7 @@

    Method List

  • -
  • +
  • git_head Utils @@ -13156,7 +13164,7 @@

    Method List

  • -
  • +
  • #git_last_commit Tap @@ -13164,7 +13172,7 @@

    Method List

  • -
  • +
  • git_log Homebrew @@ -13172,7 +13180,7 @@

    Method List

  • -
  • +
  • git_log_trailers_cmd Homebrew @@ -13180,7 +13188,7 @@

    Method List

  • -
  • +
  • #git_repo Tap @@ -13188,7 +13196,7 @@

    Method List

  • -
  • +
  • #git_repo? GitRepository @@ -13196,7 +13204,7 @@

    Method List

  • -
  • +
  • git_short_head Utils @@ -13204,7 +13212,7 @@

    Method List

  • -
  • +
  • git_tags Homebrew @@ -13212,7 +13220,7 @@

    Method List

  • -
  • +
  • github SharedAudits @@ -13220,7 +13228,7 @@

    Method List

  • -
  • +
  • github_cli_token GitHub::API @@ -13228,7 +13236,7 @@

    Method List

  • -
  • +
  • github_info Homebrew @@ -13236,7 +13244,7 @@

    Method List

  • -
  • +
  • #github_message GitHub::API::Error @@ -13244,7 +13252,7 @@

    Method List

  • -
  • +
  • #github_packages Bottle::Filename @@ -13252,7 +13260,7 @@

    Method List

  • -
  • +
  • github_packages? Homebrew @@ -13260,7 +13268,7 @@

    Method List

  • -
  • +
  • github_release SharedAudits @@ -13268,7 +13276,7 @@

    Method List

  • -
  • +
  • github_release_data SharedAudits @@ -13276,7 +13284,7 @@

    Method List

  • -
  • +
  • github_releases? Homebrew @@ -13284,7 +13292,7 @@

    Method List

  • -
  • +
  • github_remote_path Homebrew @@ -13292,7 +13300,7 @@

    Method List

  • -
  • +
  • github_repo_data SharedAudits @@ -13300,7 +13308,7 @@

    Method List

  • -
  • +
  • github_tag_from_url SharedAudits @@ -13308,7 +13316,7 @@

    Method List

  • -
  • +
  • gitlab SharedAudits @@ -13316,7 +13324,7 @@

    Method List

  • -
  • +
  • gitlab_release SharedAudits @@ -13324,7 +13332,7 @@

    Method List

  • -
  • +
  • gitlab_release_data SharedAudits @@ -13332,7 +13340,7 @@

    Method List

  • -
  • +
  • gitlab_repo_data SharedAudits @@ -13340,7 +13348,7 @@

    Method List

  • -
  • +
  • gitlab_tag_from_url SharedAudits @@ -13348,7 +13356,7 @@

    Method List

  • -
  • +
  • #glibc_dep_if_needed DependencyCollector @@ -13356,7 +13364,7 @@

    Method List

  • -
  • +
  • #global_cask_options Homebrew::Manpages::Variables @@ -13364,7 +13372,7 @@

    Method List

  • -
  • +
  • global_cask_options Homebrew::CLI::Parser @@ -13372,7 +13380,7 @@

    Method List

  • -
  • +
  • global_cask_options_manpage Homebrew::Manpages @@ -13380,7 +13388,7 @@

    Method List

  • -
  • +
  • #global_options Homebrew::Manpages::Variables @@ -13388,7 +13396,7 @@

    Method List

  • -
  • +
  • global_options Homebrew::CLI::Parser @@ -13396,7 +13404,7 @@

    Method List

  • -
  • +
  • global_options_manpage Homebrew::Manpages @@ -13404,7 +13412,7 @@

    Method List

  • -
  • +
  • global_post_install Homebrew::Install @@ -13412,7 +13420,7 @@

    Method List

  • -
  • +
  • gnu_tar Homebrew @@ -13420,7 +13428,7 @@

    Method List

  • -
  • +
  • gnu_tar_formula_ensure_installed_if_needed! Homebrew @@ -13428,7 +13436,7 @@

    Method List

  • -
  • +
  • go_cache_directory? Homebrew::Cleanup @@ -13436,7 +13444,7 @@

    Method List

  • -
  • +
  • go_resource Formula @@ -13444,7 +13452,7 @@

    Method List

  • -
  • +
  • #go_resource SoftwareSpec @@ -13452,7 +13460,7 @@

    Method List

  • -
  • +
  • grand_total_row Homebrew @@ -13460,7 +13468,7 @@

    Method List

  • -
  • +
  • graph_deps Homebrew @@ -13468,7 +13476,7 @@

    Method List

  • -
  • +
  • graph_package_dependencies Utils::TopologicalHash @@ -13476,7 +13484,7 @@

    Method List

  • -
  • +
  • #gsub! StringInreplaceExtension @@ -13484,7 +13492,7 @@

    Method List

  • -
  • +
  • #guess_cask_version Homebrew::UnversionedCaskChecker @@ -13492,7 +13500,7 @@

    Method List

  • -
  • +
  • #gui? User @@ -13500,7 +13508,7 @@

    Method List

  • -
  • +
  • #gzip Kernel @@ -13508,7 +13516,7 @@

    Method List

  • -
  • +
  • handle_api_response Homebrew @@ -13516,7 +13524,7 @@

    Method List

  • -
  • +
  • handle_block_return Homebrew::Livecheck::Strategy @@ -13524,7 +13532,7 @@

    Method List

  • -
  • +
  • handle_formula_and_casks Homebrew @@ -13532,7 +13540,7 @@

    Method List

  • -
  • +
  • handle_unsatisfied_dependents Homebrew::Uninstall @@ -13540,7 +13548,7 @@

    Method List

  • -
  • +
  • hardware SystemConfig @@ -13548,7 +13556,7 @@

    Method List

  • -
  • +
  • #hash Option @@ -13556,7 +13564,7 @@

    Method List

  • -
  • +
  • #hash Version::Token @@ -13564,7 +13572,7 @@

    Method List

  • -
  • +
  • #hash Version @@ -13572,7 +13580,7 @@

    Method List

  • -
  • +
  • #hash Cask::Cask @@ -13580,7 +13588,7 @@

    Method List

  • -
  • +
  • #hash Dependency @@ -13588,7 +13596,7 @@

    Method List

  • -
  • +
  • #hash UsesFromMacOSDependency @@ -13596,7 +13604,7 @@

    Method List

  • -
  • +
  • #hash PyPI::Package @@ -13604,7 +13612,7 @@

    Method List

  • -
  • +
  • #hash PkgVersion @@ -13612,7 +13620,7 @@

    Method List

  • -
  • +
  • #hash Requirement @@ -13620,7 +13628,7 @@

    Method List

  • -
  • +
  • #hash Utils::Bottles::Tag @@ -13628,7 +13636,7 @@

    Method List

  • -
  • +
  • #hash MacOSRequirement @@ -13636,7 +13644,7 @@

    Method List

  • -
  • +
  • #hash_node RuboCop::Cask::AST::CaskHeader @@ -13644,7 +13652,7 @@

    Method List

  • -
  • +
  • head Formula @@ -13652,7 +13660,7 @@

    Method List

  • -
  • +
  • head SystemConfig @@ -13660,7 +13668,7 @@

    Method List

  • -
  • +
  • #head? Tab @@ -13668,7 +13676,7 @@

    Method List

  • -
  • +
  • #head? Version @@ -13676,7 +13684,7 @@

    Method List

  • -
  • +
  • #head? PkgVersion @@ -13684,7 +13692,7 @@

    Method List

  • -
  • +
  • #head? BuildOptions @@ -13692,7 +13700,7 @@

    Method List

  • -
  • +
  • #head? Homebrew::FormulaCreator @@ -13700,7 +13708,7 @@

    Method List

  • -
  • +
  • #head? VCSDownloadStrategy @@ -13708,7 +13716,7 @@

    Method List

  • -
  • +
  • #head_ref GitRepository @@ -13716,7 +13724,7 @@

    Method List

  • -
  • +
  • #head_version Tab @@ -13724,7 +13732,7 @@

    Method List

  • -
  • +
  • #head_version_outdated? Formula @@ -13732,7 +13740,7 @@

    Method List

  • -
  • +
  • #header Cask::URL::DSL @@ -13740,7 +13748,7 @@

    Method List

  • -
  • +
  • #header RuboCop::Cask::AST::CaskBlock @@ -13748,7 +13756,7 @@

    Method List

  • -
  • +
  • #header_str RuboCop::Cask::AST::CaskHeader @@ -13756,7 +13764,7 @@

    Method List

  • -
  • +
  • headline Formatter @@ -13764,7 +13772,7 @@

    Method List

  • -
  • +
  • help Homebrew::Help @@ -13772,7 +13780,7 @@

    Method List

  • -
  • +
  • #help Homebrew @@ -13780,7 +13788,7 @@

    Method List

  • -
  • +
  • #heredoc? RuboCop::AST::Node @@ -13788,7 +13796,7 @@

    Method List

  • -
  • +
  • #hexdigest Checksum @@ -13796,7 +13804,7 @@

    Method List

  • -
  • +
  • #hide_from_man_page Homebrew::CLI::Parser @@ -13804,7 +13812,7 @@

    Method List

  • -
  • +
  • #hide_from_man_page! Homebrew::CLI::Parser @@ -13812,7 +13820,7 @@

    Method List

  • -
  • +
  • home Homebrew @@ -13820,7 +13828,7 @@

    Method List

  • -
  • +
  • home_args Homebrew @@ -13828,7 +13836,7 @@

    Method List

  • -
  • +
  • homebrew_config SystemConfig @@ -13836,7 +13844,7 @@

    Method List

  • -
  • +
  • homebrew_env_config SystemConfig @@ -13844,7 +13852,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_cmake_frameworks_paths Superenv @@ -13852,7 +13860,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_cmake_include_paths Superenv @@ -13860,7 +13868,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_cmake_library_paths Superenv @@ -13868,7 +13876,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_isystem_paths Superenv @@ -13876,7 +13884,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_library_paths Superenv @@ -13884,7 +13892,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_paths Superenv @@ -13892,7 +13900,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_pkg_config_paths Stdenv @@ -13900,7 +13908,7 @@

    Method List

  • -
  • +
  • homebrew_repo SystemConfig @@ -13908,7 +13916,7 @@

    Method List

  • -
  • +
  • homebrew_site_packages Language::Python @@ -13916,7 +13924,7 @@

    Method List

  • -
  • +
  • #homebrew_tap_cask_names Homebrew::CLI::NamedArgs @@ -13924,7 +13932,7 @@

    Method List

  • -
  • +
  • #homebrew_version Tab @@ -13932,7 +13940,7 @@

    Method List

  • -
  • +
  • #homepage Formula @@ -13940,7 +13948,7 @@

    Method List

  • -
  • +
  • #homepage Cask::DSL @@ -13948,7 +13956,7 @@

    Method List

  • -
  • +
  • #homepage Homebrew::FormulaCreator @@ -13956,7 +13964,7 @@

    Method List

  • -
  • +
  • hook_raise Ignorable @@ -13964,7 +13972,7 @@

    Method List

  • -
  • +
  • host_gcc_version SystemConfig @@ -13972,7 +13980,7 @@

    Method List

  • -
  • +
  • host_glibc_version SystemConfig @@ -13980,7 +13988,7 @@

    Method List

  • -
  • +
  • host_ruby_version SystemConfig @@ -13988,7 +13996,7 @@

    Method List

  • -
  • +
  • host_software_config SystemConfig @@ -13996,7 +14004,7 @@

    Method List

  • -
  • +
  • html_template Homebrew @@ -14004,7 +14012,7 @@

    Method List

  • -
  • +
  • http_status_ok? Utils::Curl @@ -14012,7 +14020,7 @@

    Method List

  • -
  • +
  • #i386? MachOShim @@ -14020,7 +14028,7 @@

    Method List

  • -
  • +
  • identifier Formatter @@ -14028,7 +14036,7 @@

    Method List

  • -
  • +
  • ignore Warnings @@ -14036,7 +14044,7 @@

    Method List

  • -
  • +
  • #ignore Ignorable::ExceptionMixin @@ -14044,7 +14052,7 @@

    Method List

  • -
  • +
  • #ignore_interrupts Kernel @@ -14052,7 +14060,7 @@

    Method List

  • -
  • +
  • ignore_missing_libraries Formula @@ -14060,7 +14068,7 @@

    Method List

  • -
  • +
  • image_formula_name GitHubPackages @@ -14068,7 +14076,7 @@

    Method List

  • -
  • +
  • image_version_rebuild GitHubPackages @@ -14076,7 +14084,7 @@

    Method List

  • -
  • +
  • #implicit? Dependable @@ -14084,7 +14092,7 @@

    Method List

  • -
  • +
  • in_rosetta2? Hardware::CPU @@ -14092,7 +14100,7 @@

    Method List

  • -
  • +
  • in_sys_path? Language::Python @@ -14100,7 +14108,7 @@

    Method List

  • -
  • +
  • #include Formula @@ -14108,7 +14116,7 @@

    Method List

  • -
  • +
  • #include? Tab @@ -14116,7 +14124,7 @@

    Method List

  • -
  • +
  • #include? Locale @@ -14124,7 +14132,7 @@

    Method List

  • -
  • +
  • #include? Options @@ -14132,7 +14140,7 @@

    Method List

  • -
  • +
  • #include? Homebrew::FormulaTextAuditor @@ -14140,7 +14148,7 @@

    Method List

  • -
  • +
  • #include_test? FormulaInstaller @@ -14148,7 +14156,7 @@

    Method List

  • -
  • +
  • #include_test_formulae Homebrew::CLI::Args @@ -14156,7 +14164,7 @@

    Method List

  • -
  • +
  • included OnSystem @@ -14164,7 +14172,7 @@

    Method List

  • -
  • +
  • included OnSystem::MacOSAndLinux @@ -14172,7 +14180,7 @@

    Method List

  • -
  • +
  • included OnSystem::MacOSOnly @@ -14180,7 +14188,7 @@

    Method List

  • -
  • +
  • incomplete? Homebrew::Cleanup @@ -14188,7 +14196,7 @@

    Method List

  • -
  • +
  • influx_message_displayed? Utils::Analytics @@ -14196,7 +14204,7 @@

    Method List

  • -
  • +
  • #info Formula @@ -14204,7 +14212,7 @@

    Method List

  • -
  • +
  • #info Cask::Pkg @@ -14212,7 +14220,7 @@

    Method List

  • -
  • +
  • info Homebrew @@ -14220,7 +14228,7 @@

    Method List

  • -
  • +
  • info Cask::Info @@ -14228,7 +14236,7 @@

    Method List

  • -
  • +
  • #info FormulaInfo @@ -14236,7 +14244,7 @@

    Method List

  • -
  • +
  • info_args Homebrew @@ -14244,7 +14252,7 @@

    Method List

  • -
  • +
  • info_cask Homebrew @@ -14252,7 +14260,7 @@

    Method List

  • -
  • +
  • info_formula Homebrew @@ -14260,7 +14268,7 @@

    Method List

  • -
  • +
  • inherited Formula @@ -14268,7 +14276,7 @@

    Method List

  • -
  • +
  • #inherited BuildEnvironment::DSL @@ -14276,7 +14284,7 @@

    Method List

  • -
  • +
  • #inherited_options_for FormulaInstaller @@ -14284,7 +14292,7 @@

    Method List

  • -
  • +
  • #init Top Level Namespace @@ -14292,7 +14300,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Diagnostic::Volumes @@ -14300,7 +14308,7 @@

    Method List

  • -
  • +
  • #initialize Keg::AlreadyLinkedError @@ -14308,7 +14316,7 @@

    Method List

  • -
  • +
  • #initialize Keg::LinkError @@ -14316,7 +14324,7 @@

    Method List

  • -
  • +
  • #initialize Keg @@ -14324,7 +14332,7 @@

    Method List

  • -
  • +
  • #initialize Tab @@ -14332,7 +14340,7 @@

    Method List

  • -
  • +
  • #initialize TapConfig @@ -14340,7 +14348,7 @@

    Method List

  • -
  • +
  • #initialize URL @@ -14348,7 +14356,7 @@

    Method List

  • -
  • +
  • #initialize PATH @@ -14356,7 +14364,7 @@

    Method List

  • -
  • +
  • #initialize Build @@ -14364,7 +14372,7 @@

    Method List

  • -
  • +
  • #initialize EmbeddedPatch @@ -14372,7 +14380,7 @@

    Method List

  • -
  • +
  • #initialize DATAPatch @@ -14380,7 +14388,7 @@

    Method List

  • -
  • +
  • #initialize StringPatch @@ -14388,7 +14396,7 @@

    Method List

  • -
  • +
  • #initialize ExternalPatch @@ -14396,7 +14404,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Style::Offenses @@ -14404,7 +14412,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Style::Offense @@ -14412,7 +14420,7 @@

    Method List

  • -
  • +
  • #initialize Debrew::Menu @@ -14420,7 +14428,7 @@

    Method List

  • -
  • +
  • #initialize Locale @@ -14428,7 +14436,7 @@

    Method List

  • -
  • +
  • #initialize Mktemp @@ -14436,7 +14444,7 @@

    Method List

  • -
  • +
  • #initialize Caveats @@ -14444,7 +14452,7 @@

    Method List

  • -
  • +
  • #initialize Cleaner @@ -14452,7 +14460,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Cleanup @@ -14460,7 +14468,7 @@

    Method List

  • -
  • +
  • #initialize Context::ContextStruct @@ -14468,7 +14476,7 @@

    Method List

  • -
  • +
  • #initialize Option @@ -14476,7 +14484,7 @@

    Method List

  • -
  • +
  • #initialize DeprecatedOption @@ -14484,7 +14492,7 @@

    Method List

  • -
  • +
  • #initialize Options @@ -14492,7 +14500,7 @@

    Method List

  • -
  • +
  • #initialize Sandbox @@ -14500,7 +14508,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Service @@ -14508,7 +14516,7 @@

    Method List

  • -
  • +
  • #initialize Version::Token @@ -14516,7 +14524,7 @@

    Method List

  • -
  • +
  • #initialize Version::StringToken @@ -14524,7 +14532,7 @@

    Method List

  • -
  • +
  • #initialize Version::NumericToken @@ -14532,7 +14540,7 @@

    Method List

  • -
  • +
  • #initialize Version @@ -14540,7 +14548,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL @@ -14548,7 +14556,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Pkg @@ -14556,7 +14564,7 @@

    Method List

  • -
  • +
  • #initialize Cask::URL::DSL @@ -14564,7 +14572,7 @@

    Method List

  • -
  • +
  • #initialize Cask::URL::BlockDSL @@ -14572,7 +14580,7 @@

    Method List

  • -
  • +
  • #initialize Cask::URL @@ -14580,7 +14588,7 @@

    Method List

  • -
  • +
  • #initialize Checksum @@ -14588,7 +14596,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::Args @@ -14596,7 +14604,7 @@

    Method List

  • -
  • +
  • #initialize PrettyListing @@ -14604,7 +14612,7 @@

    Method List

  • -
  • +
  • #initialize Messages @@ -14612,7 +14620,7 @@

    Method List

  • -
  • +
  • #initialize Migrator::MigrationNeededError @@ -14620,7 +14628,7 @@

    Method List

  • -
  • +
  • #initialize Migrator::MigratorNoOldpathError @@ -14628,7 +14636,7 @@

    Method List

  • -
  • +
  • #initialize Migrator::MigratorDifferentTapsError @@ -14636,7 +14644,7 @@

    Method List

  • -
  • +
  • #initialize Migrator @@ -14644,7 +14652,7 @@

    Method List

  • -
  • +
  • #initialize Resource @@ -14652,7 +14660,7 @@

    Method List

  • -
  • +
  • #initialize Resource::PatchResource @@ -14660,7 +14668,7 @@

    Method List

  • -
  • +
  • #initialize ResourceStageContext @@ -14668,7 +14676,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Cask @@ -14676,7 +14684,7 @@

    Method List

  • -
  • +
  • #initialize CompilerSelector @@ -14684,7 +14692,7 @@

    Method List

  • -
  • +
  • #initialize CxxStdlib @@ -14692,7 +14700,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::FormulaLoader @@ -14700,7 +14708,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::BottleLoader @@ -14708,7 +14716,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::AliasLoader @@ -14716,7 +14724,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::FromPathLoader @@ -14724,7 +14732,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::FromUrlLoader @@ -14732,7 +14740,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::NullLoader @@ -14740,7 +14748,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::FormulaContentsLoader @@ -14748,7 +14756,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::FormulaAPILoader @@ -14756,7 +14764,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::AliasAPILoader @@ -14764,7 +14772,7 @@

    Method List

  • -
  • +
  • #initialize Livecheck @@ -14772,7 +14780,7 @@

    Method List

  • -
  • +
  • #initialize LockFile @@ -14780,7 +14788,7 @@

    Method List

  • -
  • +
  • #initialize FormulaLock @@ -14788,7 +14796,7 @@

    Method List

  • -
  • +
  • #initialize CaskLock @@ -14796,7 +14804,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Uninstall::DependentsMessage @@ -14804,7 +14812,7 @@

    Method List

  • -
  • +
  • #initialize Utils::AST::FormulaAST @@ -14812,7 +14820,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Audit @@ -14820,7 +14828,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::Parser @@ -14828,7 +14836,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::OptionConstraintError @@ -14836,7 +14844,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::OptionConflictError @@ -14844,7 +14852,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::InvalidConstraintError @@ -14852,7 +14860,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::MaxNamedArgumentsError @@ -14860,7 +14868,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::MinNamedArgumentsError @@ -14868,7 +14876,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::NumberOfNamedArgumentsError @@ -14876,7 +14884,7 @@

    Method List

  • -
  • +
  • #initialize Dependency @@ -14884,7 +14892,7 @@

    Method List

  • -
  • +
  • #initialize UsesFromMacOSDependency @@ -14892,7 +14900,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Diagnostic::Checks @@ -14900,7 +14908,7 @@

    Method List

  • -
  • +
  • #initialize UsageError @@ -14908,7 +14916,7 @@

    Method List

  • -
  • +
  • #initialize FormulaUnspecifiedError @@ -14916,7 +14924,7 @@

    Method List

  • -
  • +
  • #initialize FormulaOrCaskUnspecifiedError @@ -14924,7 +14932,7 @@

    Method List

  • -
  • +
  • #initialize KegUnspecifiedError @@ -14932,7 +14940,7 @@

    Method List

  • -
  • +
  • #initialize NoSuchKegError @@ -14940,7 +14948,7 @@

    Method List

  • -
  • +
  • #initialize FormulaValidationError @@ -14948,7 +14956,7 @@

    Method List

  • -
  • +
  • #initialize FormulaOrCaskUnavailableError @@ -14956,7 +14964,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaOrCaskUnavailableError @@ -14964,7 +14972,7 @@

    Method List

  • -
  • +
  • #initialize FormulaClassUnavailableError @@ -14972,7 +14980,7 @@

    Method List

  • -
  • +
  • #initialize FormulaUnreadableError @@ -14980,7 +14988,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaUnavailableError @@ -14988,7 +14996,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaClassUnavailableError @@ -14996,7 +15004,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaUnreadableError @@ -15004,7 +15012,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaAmbiguityError @@ -15012,7 +15020,7 @@

    Method List

  • -
  • +
  • #initialize TapFormulaWithOldnameAmbiguityError @@ -15020,7 +15028,7 @@

    Method List

  • -
  • +
  • #initialize TapUnavailableError @@ -15028,7 +15036,7 @@

    Method List

  • -
  • +
  • #initialize TapRemoteMismatchError @@ -15036,7 +15044,7 @@

    Method List

  • -
  • +
  • #initialize TapAlreadyTappedError @@ -15044,7 +15052,7 @@

    Method List

  • -
  • +
  • #initialize TapNoCustomRemoteError @@ -15052,7 +15060,7 @@

    Method List

  • -
  • +
  • #initialize OperationInProgressError @@ -15060,7 +15068,7 @@

    Method List

  • -
  • +
  • #initialize FormulaInstallationAlreadyAttemptedError @@ -15068,7 +15076,7 @@

    Method List

  • -
  • +
  • #initialize UnsatisfiedRequirements @@ -15076,7 +15084,7 @@

    Method List

  • -
  • +
  • #initialize FormulaConflictError @@ -15084,7 +15092,7 @@

    Method List

  • -
  • +
  • #initialize FormulaUnknownPythonError @@ -15092,7 +15100,7 @@

    Method List

  • -
  • +
  • #initialize FormulaAmbiguousPythonError @@ -15100,7 +15108,7 @@

    Method List

  • -
  • +
  • #initialize BuildError @@ -15108,7 +15116,7 @@

    Method List

  • -
  • +
  • #initialize UnbottledError @@ -15116,7 +15124,7 @@

    Method List

  • -
  • +
  • #initialize BuildFlagsError @@ -15124,7 +15132,7 @@

    Method List

  • -
  • +
  • #initialize CompilerSelectionError @@ -15132,7 +15140,7 @@

    Method List

  • -
  • +
  • #initialize DownloadError @@ -15140,7 +15148,7 @@

    Method List

  • -
  • +
  • #initialize CurlDownloadStrategyError @@ -15148,7 +15156,7 @@

    Method List

  • -
  • +
  • #initialize HomebrewCurlDownloadStrategyError @@ -15156,7 +15164,7 @@

    Method List

  • -
  • +
  • #initialize ErrorDuringExecution @@ -15164,7 +15172,7 @@

    Method List

  • -
  • +
  • #initialize ChecksumMismatchError @@ -15172,7 +15180,7 @@

    Method List

  • -
  • +
  • #initialize ResourceMissingError @@ -15180,7 +15188,7 @@

    Method List

  • -
  • +
  • #initialize DuplicateResourceError @@ -15188,7 +15196,7 @@

    Method List

  • -
  • +
  • #initialize BottleFormulaUnavailableError @@ -15196,7 +15204,7 @@

    Method List

  • -
  • +
  • #initialize ChildProcessError @@ -15204,7 +15212,7 @@

    Method List

  • -
  • +
  • #initialize ShebangDetectionError @@ -15212,7 +15220,7 @@

    Method List

  • -
  • +
  • #initialize CyclicDependencyError @@ -15220,7 +15228,7 @@

    Method List

  • -
  • +
  • #initialize OS::Mac::SDK @@ -15228,7 +15236,7 @@

    Method List

  • -
  • +
  • #initialize PyPI::Package @@ -15236,7 +15244,7 @@

    Method List

  • -
  • +
  • #initialize CacheStoreDatabase @@ -15244,7 +15252,7 @@

    Method List

  • -
  • +
  • #initialize CacheStore @@ -15252,7 +15260,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Config @@ -15260,7 +15268,7 @@

    Method List

  • -
  • +
  • #initialize FormulaPin @@ -15268,7 +15276,7 @@

    Method List

  • -
  • +
  • #initialize LazyObject @@ -15276,7 +15284,7 @@

    Method List

  • -
  • +
  • #initialize PkgVersion @@ -15284,7 +15292,7 @@

    Method List

  • -
  • +
  • #initialize Requirement @@ -15292,7 +15300,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::TapAuditor @@ -15300,7 +15308,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::API::Download @@ -15308,7 +15316,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Auditor @@ -15316,7 +15324,7 @@

    Method List

  • -
  • +
  • #initialize Dependencies @@ -15324,7 +15332,7 @@

    Method List

  • -
  • +
  • #initialize Requirements @@ -15332,7 +15340,7 @@

    Method List

  • -
  • +
  • #initialize Descriptions @@ -15340,7 +15348,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::VersionBumpInfo @@ -15348,7 +15356,7 @@

    Method List

  • -
  • +
  • #initialize Downloadable @@ -15356,7 +15364,7 @@

    Method List

  • -
  • +
  • #initialize FormulaInfo @@ -15364,7 +15372,7 @@

    Method List

  • -
  • +
  • #initialize Keg::Relocation @@ -15372,7 +15380,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Download @@ -15380,7 +15388,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Base @@ -15388,7 +15396,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Migrator @@ -15396,7 +15404,7 @@

    Method List

  • -
  • +
  • #initialize GitHubRunner @@ -15404,7 +15412,7 @@

    Method List

  • -
  • +
  • #initialize MacOSVersion::Error @@ -15412,7 +15420,7 @@

    Method List

  • -
  • +
  • #initialize MacOSVersion @@ -15420,7 +15428,7 @@

    Method List

  • -
  • +
  • #initialize SoftwareSpec @@ -15428,7 +15436,7 @@

    Method List

  • -
  • +
  • #initialize HeadSoftwareSpec @@ -15436,7 +15444,7 @@

    Method List

  • -
  • +
  • #initialize Bottle::Filename @@ -15444,7 +15452,7 @@

    Method List

  • -
  • +
  • #initialize Bottle @@ -15452,7 +15460,7 @@

    Method List

  • -
  • +
  • #initialize BottleSpecification @@ -15460,7 +15468,7 @@

    Method List

  • -
  • +
  • #initialize PourBottleCheck @@ -15468,7 +15476,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Bottles::Tag @@ -15476,7 +15484,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Bottles::TagSpecification @@ -15484,7 +15492,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Bottles::Collector @@ -15492,7 +15500,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Shebang::RewriteInfo @@ -15500,7 +15508,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::BundleVersion @@ -15508,7 +15516,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Installer @@ -15516,7 +15524,7 @@

    Method List

  • -
  • +
  • #initialize CaskDependent @@ -15524,7 +15532,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::NamedArgs @@ -15532,7 +15540,7 @@

    Method List

  • -
  • +
  • #initialize GitRepository @@ -15540,7 +15548,7 @@

    Method List

  • -
  • +
  • #initialize SystemCommand @@ -15548,7 +15556,7 @@

    Method List

  • -
  • +
  • #initialize SystemCommand::Result @@ -15556,7 +15564,7 @@

    Method List

  • -
  • +
  • #initialize Version::RegexParser @@ -15564,7 +15572,7 @@

    Method List

  • -
  • +
  • #initialize Cask::MultipleCaskErrors @@ -15572,7 +15580,7 @@

    Method List

  • -
  • +
  • #initialize Cask::AbstractCaskErrorWithToken @@ -15580,7 +15588,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskConflictError @@ -15588,7 +15596,7 @@

    Method List

  • -
  • +
  • #initialize Cask::TapCaskUnavailableError @@ -15596,7 +15604,7 @@

    Method List

  • -
  • +
  • #initialize Cask::TapCaskAmbiguityError @@ -15604,7 +15612,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskTokenMismatchError @@ -15612,7 +15620,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskQuarantineError @@ -15620,7 +15628,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaAuditor @@ -15628,7 +15636,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaCreator @@ -15636,7 +15644,7 @@

    Method List

  • -
  • +
  • #initialize KegOnlyReason @@ -15644,7 +15652,7 @@

    Method List

  • -
  • +
  • #initialize Language::Python::Virtualenv::Virtualenv @@ -15652,7 +15660,7 @@

    Method List

  • -
  • +
  • #initialize LinkageChecker @@ -15660,7 +15668,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::SourceLocation @@ -15668,7 +15676,7 @@

    Method List

  • -
  • +
  • #initialize UnpackStrategy @@ -15676,7 +15684,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Inreplace::Error @@ -15684,7 +15692,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromContentLoader @@ -15692,7 +15700,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromPathLoader @@ -15700,7 +15708,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromURILoader @@ -15708,7 +15716,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromTapPathLoader @@ -15716,7 +15724,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromTapLoader @@ -15724,7 +15732,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromDefaultTapPathLoader @@ -15732,7 +15740,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromInstanceLoader @@ -15740,7 +15748,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromAPILoader @@ -15748,7 +15756,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::NullLoader @@ -15756,7 +15764,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Caveats @@ -15764,7 +15772,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Version @@ -15772,7 +15780,7 @@

    Method List

  • -
  • +
  • #initialize FormulaVersions @@ -15780,7 +15788,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::ResourceAuditor @@ -15788,7 +15796,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::HTTPNotFoundError @@ -15796,7 +15804,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::RateLimitExceededError @@ -15804,7 +15812,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::AuthenticationFailedError @@ -15812,7 +15820,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::MissingAuthenticationError @@ -15820,7 +15828,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::ValidationFailedError @@ -15828,7 +15836,7 @@

    Method List

  • -
  • +
  • #initialize BuildEnvironment @@ -15836,7 +15844,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Pkg @@ -15844,7 +15852,7 @@

    Method List

  • -
  • +
  • #initialize Reporter::ReporterRevisionUnsetError @@ -15852,7 +15860,7 @@

    Method List

  • -
  • +
  • #initialize Reporter @@ -15860,7 +15868,7 @@

    Method List

  • -
  • +
  • #initialize ReporterHub @@ -15868,7 +15876,7 @@

    Method List

  • -
  • +
  • #initialize AbstractDownloadStrategy @@ -15876,7 +15884,7 @@

    Method List

  • -
  • +
  • #initialize VCSDownloadStrategy @@ -15884,7 +15892,7 @@

    Method List

  • -
  • +
  • #initialize CurlDownloadStrategy @@ -15892,7 +15900,7 @@

    Method List

  • -
  • +
  • #initialize CurlGitHubPackagesDownloadStrategy @@ -15900,7 +15908,7 @@

    Method List

  • -
  • +
  • #initialize LocalBottleDownloadStrategy @@ -15908,7 +15916,7 @@

    Method List

  • -
  • +
  • #initialize SubversionDownloadStrategy @@ -15916,7 +15924,7 @@

    Method List

  • -
  • +
  • #initialize GitDownloadStrategy @@ -15924,7 +15932,7 @@

    Method List

  • -
  • +
  • #initialize GitHubGitDownloadStrategy @@ -15932,7 +15940,7 @@

    Method List

  • -
  • +
  • #initialize CVSDownloadStrategy @@ -15940,7 +15948,7 @@

    Method List

  • -
  • +
  • #initialize MercurialDownloadStrategy @@ -15948,7 +15956,7 @@

    Method List

  • -
  • +
  • #initialize BazaarDownloadStrategy @@ -15956,7 +15964,7 @@

    Method List

  • -
  • +
  • #initialize FossilDownloadStrategy @@ -15964,7 +15972,7 @@

    Method List

  • -
  • +
  • #initialize FormulaInstaller @@ -15972,7 +15980,7 @@

    Method List

  • -
  • +
  • #initialize LinuxRunnerSpec @@ -15980,7 +15988,7 @@

    Method List

  • -
  • +
  • #initialize MacOSRunnerSpec @@ -15988,7 +15996,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Container @@ -15996,7 +16004,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::BumpVersionParser @@ -16004,7 +16012,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::DependsOn @@ -16012,7 +16020,7 @@

    Method List

  • -
  • +
  • #initialize LinkageCacheStore @@ -16020,7 +16028,7 @@

    Method List

  • -
  • +
  • #initialize TestRunnerFormula @@ -16028,7 +16036,7 @@

    Method List

  • -
  • +
  • #initialize UnpackStrategy::Dmg::Bom::EmptyError @@ -16036,7 +16044,7 @@

    Method List

  • -
  • +
  • #initialize DependencyCollector @@ -16044,7 +16052,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaTextAuditor @@ -16052,7 +16060,7 @@

    Method List

  • -
  • +
  • #initialize GitHubRunnerMatrix @@ -16060,7 +16068,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::Actions::Annotation @@ -16068,7 +16076,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Manpage @@ -16076,7 +16084,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Artifact @@ -16084,7 +16092,7 @@

    Method List

  • -
  • +
  • #initialize GitHubArtifactDownloadStrategy @@ -16092,7 +16100,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Installer @@ -16100,7 +16108,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Relocated @@ -16108,7 +16116,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::ConflictsWith @@ -16116,7 +16124,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::Stanza @@ -16124,7 +16132,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::UnversionedCaskChecker @@ -16132,7 +16140,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Livecheck::LivecheckVersion @@ -16140,7 +16148,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::StanzaBlock @@ -16148,7 +16156,7 @@

    Method List

  • -
  • +
  • #initialize ArchRequirement @@ -16156,7 +16164,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::CaskHeader @@ -16164,7 +16172,7 @@

    Method List

  • -
  • +
  • #initialize MacOSRequirement @@ -16172,7 +16180,7 @@

    Method List

  • -
  • +
  • #initialize XcodeRequirement @@ -16180,7 +16188,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractArtifact @@ -16188,7 +16196,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractUninstall @@ -16196,7 +16204,7 @@

    Method List

  • -
  • +
  • #initialize StringInreplaceExtension @@ -16204,7 +16212,7 @@

    Method List

  • -
  • +
  • #initialize CodesignRequirement @@ -16212,7 +16220,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractFlightBlock @@ -16220,7 +16228,7 @@

    Method List

  • -
  • +
  • #initialize_dup Options @@ -16228,7 +16236,7 @@

    Method List

  • -
  • +
  • #initialize_dup Resource @@ -16236,7 +16244,7 @@

    Method List

  • -
  • +
  • #initialize_dup Downloadable @@ -16244,7 +16252,7 @@

    Method List

  • -
  • +
  • #initialize_dup SoftwareSpec @@ -16252,7 +16260,7 @@

    Method List

  • -
  • +
  • #initialize_dup DependencyCollector @@ -16260,7 +16268,7 @@

    Method List

  • -
  • +
  • inject_dump_stats! Homebrew @@ -16268,7 +16276,7 @@

    Method List

  • -
  • +
  • #inject_file_list Homebrew::Diagnostic::Checks @@ -16276,7 +16284,7 @@

    Method List

  • -
  • +
  • #inner ChildProcessError @@ -16284,7 +16292,7 @@

    Method List

  • -
  • +
  • #inner_class ChildProcessError @@ -16292,7 +16300,7 @@

    Method List

  • -
  • +
  • #inner_stanzas RuboCop::Cop::Cask::CaskHelp @@ -16300,7 +16308,7 @@

    Method List

  • -
  • +
  • #input_path Homebrew::Service @@ -16308,7 +16316,7 @@

    Method List

  • -
  • +
  • #inreplace Formula @@ -16316,7 +16324,7 @@

    Method List

  • -
  • +
  • inreplace Utils::Inreplace @@ -16324,7 +16332,7 @@

    Method List

  • -
  • +
  • inreplace_pairs Utils::Inreplace @@ -16332,7 +16340,7 @@

    Method List

  • -
  • +
  • #inreplace_string StringInreplaceExtension @@ -16340,7 +16348,7 @@

    Method List

  • -
  • +
  • #insert PATH @@ -16348,7 +16356,7 @@

    Method List

  • -
  • +
  • #insert_after! RuboCop::Cop::FormulaAudit::DependencyOrder @@ -16356,7 +16364,7 @@

    Method List

  • -
  • +
  • #inside_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -16364,7 +16372,7 @@

    Method List

  • -
  • +
  • #inspect Keg @@ -16372,7 +16380,7 @@

    Method List

  • -
  • +
  • #inspect EmbeddedPatch @@ -16380,7 +16388,7 @@

    Method List

  • -
  • +
  • #inspect ExternalPatch @@ -16388,7 +16396,7 @@

    Method List

  • -
  • +
  • #inspect Option @@ -16396,7 +16404,7 @@

    Method List

  • -
  • +
  • #inspect Options @@ -16404,7 +16412,7 @@

    Method List

  • -
  • +
  • #inspect Version::Token @@ -16412,7 +16420,7 @@

    Method List

  • -
  • +
  • #inspect Version @@ -16420,7 +16428,7 @@

    Method List

  • -
  • +
  • #inspect Cask::Cask @@ -16428,7 +16436,7 @@

    Method List

  • -
  • +
  • #inspect CompilerFailure @@ -16436,7 +16444,7 @@

    Method List

  • -
  • +
  • #inspect CxxStdlib @@ -16444,7 +16452,7 @@

    Method List

  • -
  • +
  • #inspect Dependency @@ -16452,7 +16460,7 @@

    Method List

  • -
  • +
  • #inspect UsesFromMacOSDependency @@ -16460,7 +16468,7 @@

    Method List

  • -
  • +
  • #inspect Requirement @@ -16468,7 +16476,7 @@

    Method List

  • -
  • +
  • #inspect Dependencies @@ -16476,7 +16484,7 @@

    Method List

  • -
  • +
  • #inspect Requirements @@ -16484,7 +16492,7 @@

    Method List

  • -
  • +
  • #inspect ArchRequirement @@ -16492,7 +16500,7 @@

    Method List

  • -
  • +
  • #inspect MacOSRequirement @@ -16500,7 +16508,7 @@

    Method List

  • -
  • +
  • #inspect XcodeRequirement @@ -16508,7 +16516,7 @@

    Method List

  • -
  • +
  • #install Tap @@ -16516,7 +16524,7 @@

    Method List

  • -
  • +
  • #install CoreTap @@ -16524,7 +16532,7 @@

    Method List

  • -
  • +
  • #install Build @@ -16532,7 +16540,7 @@

    Method List

  • -
  • +
  • #install Debrew::Formula @@ -16540,7 +16548,7 @@

    Method List

  • -
  • +
  • #install Formula @@ -16548,7 +16556,7 @@

    Method List

  • -
  • +
  • install Homebrew @@ -16556,7 +16564,7 @@

    Method List

  • -
  • +
  • #install Cask::Installer @@ -16564,7 +16572,7 @@

    Method List

  • -
  • +
  • #install Pathname @@ -16572,7 +16580,7 @@

    Method List

  • -
  • +
  • #install FormulaInstaller @@ -16580,7 +16588,7 @@

    Method List

  • -
  • +
  • install_args Homebrew @@ -16588,7 +16596,7 @@

    Method List

  • -
  • +
  • #install_artifacts Cask::Installer @@ -16596,7 +16604,7 @@

    Method List

  • -
  • +
  • #install_bottle_for? FormulaInstaller @@ -16604,7 +16612,7 @@

    Method List

  • -
  • +
  • install_bundler! Homebrew @@ -16612,7 +16620,7 @@

    Method List

  • -
  • +
  • install_bundler_gems Homebrew @@ -16620,7 +16628,7 @@

    Method List

  • -
  • +
  • install_bundler_gems! Homebrew @@ -16628,7 +16636,7 @@

    Method List

  • -
  • +
  • install_bundler_gems_args Homebrew @@ -16636,7 +16644,7 @@

    Method List

  • -
  • +
  • install_default_cask_tap_if_necessary Tap @@ -16644,7 +16652,7 @@

    Method List

  • -
  • +
  • #install_dependencies FormulaInstaller @@ -16652,7 +16660,7 @@

    Method List

  • -
  • +
  • #install_dependency FormulaInstaller @@ -16660,7 +16668,7 @@

    Method List

  • -
  • +
  • #install_fetch_deps FormulaInstaller @@ -16668,7 +16676,7 @@

    Method List

  • -
  • +
  • install_formula Homebrew::Upgrade @@ -16676,7 +16684,7 @@

    Method List

  • -
  • +
  • install_formula? Homebrew::Install @@ -16684,7 +16692,7 @@

    Method List

  • -
  • +
  • install_formula_clean! Homebrew::Cleanup @@ -16692,7 +16700,7 @@

    Method List

  • -
  • +
  • install_formulae Homebrew::Install @@ -16700,7 +16708,7 @@

    Method List

  • -
  • +
  • install_from_api_message Homebrew @@ -16708,7 +16716,7 @@

    Method List

  • -
  • +
  • install_gem! Homebrew @@ -16716,7 +16724,7 @@

    Method List

  • -
  • +
  • install_gem_setup_path! Homebrew @@ -16724,7 +16732,7 @@

    Method List

  • -
  • +
  • #install_metafiles Pathname @@ -16732,7 +16740,7 @@

    Method List

  • -
  • +
  • #install_p InstallRenamed @@ -16740,7 +16748,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Pkg @@ -16748,7 +16756,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Moved @@ -16756,7 +16764,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Qlplugin @@ -16764,7 +16772,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Installer::ManualInstaller @@ -16772,7 +16780,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Installer::ScriptInstaller @@ -16780,7 +16788,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Symlinked @@ -16788,7 +16796,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Mdimporter @@ -16796,7 +16804,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::KeyboardLayout @@ -16804,7 +16812,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::AbstractFlightBlock @@ -16812,7 +16820,7 @@

    Method List

  • -
  • +
  • #install_service FormulaInstaller @@ -16820,7 +16828,7 @@

    Method List

  • -
  • +
  • #install_symlink Pathname @@ -16828,7 +16836,7 @@

    Method List

  • -
  • +
  • #install_time Cask::Cask @@ -16836,7 +16844,7 @@

    Method List

  • -
  • +
  • #install_times Messages @@ -16844,7 +16852,7 @@

    Method List

  • -
  • +
  • installation_info Cask::Info @@ -16852,7 +16860,7 @@

    Method List

  • -
  • +
  • installation_instructions OS::Mac::Xcode @@ -16860,7 +16868,7 @@

    Method List

  • -
  • +
  • installation_instructions OS::Mac::CLT @@ -16868,7 +16876,7 @@

    Method List

  • -
  • +
  • installed FormulaInstaller @@ -16876,7 +16884,7 @@

    Method List

  • -
  • +
  • #installed? Tap @@ -16884,7 +16892,7 @@

    Method List

  • -
  • +
  • installed? OS::Mac::Xcode @@ -16892,7 +16900,7 @@

    Method List

  • -
  • +
  • installed? OS::Mac::CLT @@ -16900,7 +16908,7 @@

    Method List

  • -
  • +
  • #installed? Cask::Cask @@ -16908,7 +16916,7 @@

    Method List

  • -
  • +
  • #installed? Dependency @@ -16916,7 +16924,7 @@

    Method List

  • -
  • +
  • #installed? UsesFromMacOSDependency @@ -16924,7 +16932,7 @@

    Method List

  • -
  • +
  • installed? Utils::Service @@ -16932,7 +16940,7 @@

    Method List

  • -
  • +
  • #installed_alias_name Formula @@ -16940,7 +16948,7 @@

    Method List

  • -
  • +
  • #installed_alias_path Formula @@ -16948,7 +16956,7 @@

    Method List

  • -
  • +
  • #installed_alias_target_changed? Formula @@ -16956,7 +16964,7 @@

    Method List

  • -
  • +
  • #installed_as_dependency Tab @@ -16964,7 +16972,7 @@

    Method List

  • -
  • +
  • installed_as_dependency? Homebrew @@ -16972,7 +16980,7 @@

    Method List

  • -
  • +
  • #installed_caskfile Cask::Cask @@ -16980,7 +16988,7 @@

    Method List

  • -
  • +
  • #installed_on_request Tab @@ -16988,7 +16996,7 @@

    Method List

  • -
  • +
  • installed_on_request? Homebrew @@ -16996,7 +17004,7 @@

    Method List

  • -
  • +
  • #installed_specified_name Formula @@ -17004,7 +17012,7 @@

    Method List

  • -
  • +
  • #installed_version Cask::Cask @@ -17012,7 +17020,7 @@

    Method List

  • -
  • +
  • installed_with_alias_path Formula @@ -17020,7 +17028,7 @@

    Method List

  • -
  • +
  • #installer Homebrew::UnversionedCaskChecker @@ -17028,7 +17036,7 @@

    Method List

  • -
  • +
  • #installers Homebrew::UnversionedCaskChecker @@ -17036,7 +17044,7 @@

    Method List

  • -
  • +
  • instance AbstractCoreTap @@ -17044,7 +17052,7 @@

    Method List

  • -
  • +
  • #intel Homebrew::BumpVersionParser @@ -17052,7 +17060,7 @@

    Method List

  • -
  • +
  • intel? Hardware::CPU @@ -17060,7 +17068,7 @@

    Method List

  • -
  • +
  • intel_family Hardware::CPU @@ -17068,7 +17076,7 @@

    Method List

  • -
  • +
  • #interactive_shell Kernel @@ -17076,7 +17084,7 @@

    Method List

  • -
  • +
  • #internal Top Level Namespace @@ -17084,7 +17092,7 @@

    Method List

  • -
  • +
  • internal_cmd_path Commands @@ -17092,7 +17100,7 @@

    Method List

  • -
  • +
  • internal_commands Commands @@ -17100,7 +17108,7 @@

    Method List

  • -
  • +
  • internal_commands_aliases Commands @@ -17108,7 +17116,7 @@

    Method List

  • -
  • +
  • internal_commands_paths Commands @@ -17116,7 +17124,7 @@

    Method List

  • -
  • +
  • internal_dev_cmd_path Commands @@ -17124,7 +17132,7 @@

    Method List

  • -
  • +
  • internal_developer_commands Commands @@ -17132,7 +17140,7 @@

    Method List

  • -
  • +
  • internal_developer_commands_paths Commands @@ -17140,7 +17148,7 @@

    Method List

  • -
  • +
  • #interpreter ELFShim @@ -17148,7 +17156,7 @@

    Method List

  • -
  • +
  • intersection_of_dependents Homebrew @@ -17156,7 +17164,7 @@

    Method List

  • -
  • +
  • #interval Homebrew::Service @@ -17164,7 +17172,7 @@

    Method List

  • -
  • +
  • invalid_cert_flags Utils::Svn @@ -17172,7 +17180,7 @@

    Method List

  • -
  • +
  • #invalid_characters Cask::DSL::Version @@ -17180,7 +17188,7 @@

    Method List

  • -
  • +
  • irb Homebrew @@ -17188,7 +17196,7 @@

    Method List

  • -
  • +
  • irb_args Homebrew @@ -17196,7 +17204,7 @@

    Method List

  • -
  • +
  • is_32_bit? Hardware::CPU @@ -17204,7 +17212,7 @@

    Method List

  • -
  • +
  • is_64_bit? Hardware::CPU @@ -17212,7 +17220,7 @@

    Method List

  • -
  • +
  • #is_a? LazyObject @@ -17220,7 +17228,7 @@

    Method List

  • -
  • +
  • #issues BuildError @@ -17228,7 +17236,7 @@

    Method List

  • -
  • +
  • issues GitHub @@ -17236,7 +17244,7 @@

    Method List

  • -
  • +
  • issues_for_formula GitHub @@ -17244,7 +17252,7 @@

    Method List

  • -
  • +
  • #issues_url Tap @@ -17252,7 +17260,7 @@

    Method List

  • -
  • +
  • #issues_url MethodDeprecatedError @@ -17260,7 +17268,7 @@

    Method List

  • -
  • +
  • items_from_content Homebrew::Livecheck::Strategy::Sparkle @@ -17268,7 +17276,7 @@

    Method List

  • -
  • +
  • java_home Language::Java @@ -17276,7 +17284,7 @@

    Method List

  • -
  • +
  • java_home_env Language::Java @@ -17284,7 +17292,7 @@

    Method List

  • -
  • +
  • #json Bottle::Filename @@ -17292,7 +17300,7 @@

    Method List

  • -
  • +
  • json_info Homebrew @@ -17300,7 +17308,7 @@

    Method List

  • -
  • +
  • json_result! Homebrew::Style @@ -17308,7 +17316,7 @@

    Method List

  • -
  • +
  • json_version Homebrew @@ -17316,7 +17324,7 @@

    Method List

  • -
  • +
  • #keep_alive Homebrew::Service @@ -17324,7 +17332,7 @@

    Method List

  • -
  • +
  • #keep_alive? Homebrew::Service @@ -17332,7 +17340,7 @@

    Method List

  • -
  • +
  • keep_but_prune_recursive_deps Dependency @@ -17340,7 +17348,7 @@

    Method List

  • -
  • +
  • #keg Keg::LinkError @@ -17348,7 +17356,7 @@

    Method List

  • -
  • +
  • #keg LinkageChecker @@ -17356,7 +17364,7 @@

    Method List

  • -
  • +
  • keg_contain? Homebrew @@ -17364,7 +17372,7 @@

    Method List

  • -
  • +
  • keg_contain_absolute_symlink_starting_with? Homebrew @@ -17372,7 +17380,7 @@

    Method List

  • -
  • +
  • #keg_exists? LinkageCacheStore @@ -17380,7 +17388,7 @@

    Method List

  • -
  • +
  • keg_only Formula @@ -17388,7 +17396,7 @@

    Method List

  • -
  • +
  • #keg_only? Formula @@ -17396,7 +17404,7 @@

    Method List

  • -
  • +
  • keg_only? Formulary @@ -17404,7 +17412,7 @@

    Method List

  • -
  • +
  • #keg_only_text Caveats @@ -17412,7 +17420,7 @@

    Method List

  • -
  • +
  • kernel SystemConfig @@ -17420,7 +17428,7 @@

    Method List

  • -
  • +
  • kernel_name OS @@ -17428,7 +17436,7 @@

    Method List

  • -
  • +
  • kernel_version OS @@ -17436,7 +17444,7 @@

    Method List

  • -
  • +
  • #kext_prefix Formula @@ -17444,7 +17452,7 @@

    Method List

  • -
  • +
  • #keyboard_layouts Homebrew::UnversionedCaskChecker @@ -17452,7 +17460,7 @@

    Method List

  • -
  • +
  • keychain_username_password GitHub::API @@ -17460,7 +17468,7 @@

    Method List

  • -
  • +
  • keys BuildEnvironment @@ -17468,7 +17476,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaLoader @@ -17476,7 +17484,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaContentsLoader @@ -17484,7 +17492,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaAPILoader @@ -17492,7 +17500,7 @@

    Method List

  • -
  • +
  • #language Locale @@ -17500,7 +17508,7 @@

    Method List

  • -
  • +
  • language OS::Mac @@ -17508,7 +17516,7 @@

    Method List

  • -
  • +
  • #language Cask::DSL @@ -17516,7 +17524,7 @@

    Method List

  • -
  • +
  • #language Cask::Auditor @@ -17524,7 +17532,7 @@

    Method List

  • -
  • +
  • #language_eval Cask::DSL @@ -17532,7 +17540,7 @@

    Method List

  • -
  • +
  • language_info Cask::Info @@ -17540,7 +17548,7 @@

    Method List

  • -
  • +
  • languages OS::Mac @@ -17548,7 +17556,7 @@

    Method List

  • -
  • +
  • #languages Cask::DSL @@ -17556,7 +17564,7 @@

    Method List

  • -
  • +
  • #languages Cask::Cask @@ -17564,7 +17572,7 @@

    Method List

  • -
  • +
  • #languages Cask::Config @@ -17572,7 +17580,7 @@

    Method List

  • -
  • +
  • #languages= Cask::Config @@ -17580,7 +17588,7 @@

    Method List

  • -
  • +
  • last_commit GitHub @@ -17588,7 +17596,7 @@

    Method List

  • -
  • +
  • last_commit SystemConfig @@ -17596,7 +17604,7 @@

    Method List

  • -
  • +
  • #last_commit VCSDownloadStrategy @@ -17604,7 +17612,7 @@

    Method List

  • -
  • +
  • #last_commit SubversionDownloadStrategy @@ -17612,7 +17620,7 @@

    Method List

  • -
  • +
  • #last_commit GitDownloadStrategy @@ -17620,7 +17628,7 @@

    Method List

  • -
  • +
  • #last_commit MercurialDownloadStrategy @@ -17628,7 +17636,7 @@

    Method List

  • -
  • +
  • #last_commit BazaarDownloadStrategy @@ -17636,7 +17644,7 @@

    Method List

  • -
  • +
  • #last_commit FossilDownloadStrategy @@ -17644,7 +17652,7 @@

    Method List

  • -
  • +
  • #last_commit_date GitRepository @@ -17652,7 +17660,7 @@

    Method List

  • -
  • +
  • #last_committed GitRepository @@ -17660,7 +17668,7 @@

    Method List

  • -
  • +
  • last_revision_commit_of_file Utils::Git @@ -17668,7 +17676,7 @@

    Method List

  • -
  • +
  • last_revision_commit_of_files Utils::Git @@ -17676,7 +17684,7 @@

    Method List

  • -
  • +
  • last_revision_of_file Utils::Git @@ -17684,7 +17692,7 @@

    Method List

  • -
  • +
  • #latest? Cask::DSL::Version @@ -17692,7 +17700,7 @@

    Method List

  • -
  • +
  • latest_clang_version OS::Mac::CLT @@ -17700,7 +17708,7 @@

    Method List

  • -
  • +
  • #latest_formula Formula @@ -17708,7 +17716,7 @@

    Method List

  • -
  • +
  • #latest_head_prefix Formula @@ -17716,7 +17724,7 @@

    Method List

  • -
  • +
  • #latest_head_version Formula @@ -17724,7 +17732,7 @@

    Method List

  • -
  • +
  • latest_sdk_version OS::Mac @@ -17732,7 +17740,7 @@

    Method List

  • -
  • +
  • latest_sdk_version? OS::Mac::Xcode @@ -17740,7 +17748,7 @@

    Method List

  • -
  • +
  • latest_tag SPDX @@ -17748,7 +17756,7 @@

    Method List

  • -
  • +
  • latest_version OS::Mac::Xcode @@ -17756,7 +17764,7 @@

    Method List

  • -
  • +
  • latest_version Repology @@ -17764,7 +17772,7 @@

    Method List

  • -
  • +
  • latest_version Homebrew::Livecheck @@ -17772,7 +17780,7 @@

    Method List

  • -
  • +
  • #launch_only_once Homebrew::Service @@ -17780,7 +17788,7 @@

    Method List

  • -
  • +
  • launchctl Utils::Service @@ -17788,7 +17796,7 @@

    Method List

  • -
  • +
  • launchctl? Utils::Service @@ -17796,7 +17804,7 @@

    Method List

  • -
  • +
  • #launchd_service_path Formula @@ -17804,7 +17812,7 @@

    Method List

  • -
  • +
  • #ldflags SharedEnvExtension @@ -17812,7 +17820,7 @@

    Method List

  • -
  • +
  • #lead Homebrew::Manpages::Variables @@ -17820,7 +17828,7 @@

    Method List

  • -
  • +
  • leaves Homebrew @@ -17828,7 +17836,7 @@

    Method List

  • -
  • +
  • leaves_args Homebrew @@ -17836,7 +17844,7 @@

    Method List

  • -
  • +
  • #lib Formula @@ -17844,7 +17852,7 @@

    Method List

  • -
  • +
  • #lib Keg @@ -17852,7 +17860,7 @@

    Method List

  • -
  • +
  • #libcxx Stdenv @@ -17860,7 +17868,7 @@

    Method List

  • -
  • +
  • #libcxx Superenv @@ -17868,7 +17876,7 @@

    Method List

  • -
  • +
  • #libexec Formula @@ -17876,7 +17884,7 @@

    Method List

  • -
  • +
  • #libexec Keg @@ -17884,7 +17892,7 @@

    Method List

  • -
  • +
  • #libtool_files Keg @@ -17892,7 +17900,7 @@

    Method List

  • -
  • +
  • #libxml2 Stdenv @@ -17900,7 +17908,7 @@

    Method List

  • -
  • +
  • #license Formula @@ -17908,7 +17916,7 @@

    Method List

  • -
  • +
  • license Formula @@ -17916,7 +17924,7 @@

    Method List

  • -
  • +
  • #license Homebrew::FormulaCreator @@ -17924,7 +17932,7 @@

    Method List

  • -
  • +
  • license_data SPDX @@ -17932,7 +17940,7 @@

    Method List

  • -
  • +
  • license_expression_to_string SPDX @@ -17940,7 +17948,7 @@

    Method List

  • -
  • +
  • license_version_info SPDX @@ -17948,7 +17956,7 @@

    Method List

  • -
  • +
  • licenses_forbid_installation? SPDX @@ -17956,7 +17964,7 @@

    Method List

  • -
  • +
  • #line Homebrew::SourceLocation @@ -17964,7 +17972,7 @@

    Method List

  • -
  • +
  • #line_number Homebrew::FormulaTextAuditor @@ -17972,7 +17980,7 @@

    Method List

  • -
  • +
  • #line_number RuboCop::Cop::HelperFunctions @@ -17980,7 +17988,7 @@

    Method List

  • -
  • +
  • #line_start_column RuboCop::Cop::HelperFunctions @@ -17988,7 +17996,7 @@

    Method List

  • -
  • +
  • #link Keg @@ -17996,7 +18004,7 @@

    Method List

  • -
  • +
  • link Homebrew @@ -18004,7 +18012,7 @@

    Method List

  • -
  • +
  • #link FormulaInstaller @@ -18012,7 +18020,7 @@

    Method List

  • -
  • +
  • #link Cask::Artifact::Binary @@ -18020,7 +18028,7 @@

    Method List

  • -
  • +
  • #link Homebrew::Livecheck::Strategy::Sparkle::Item @@ -18028,7 +18036,7 @@

    Method List

  • -
  • +
  • link! Homebrew::Completions @@ -18036,7 +18044,7 @@

    Method List

  • -
  • +
  • link_args Homebrew @@ -18044,7 +18052,7 @@

    Method List

  • -
  • +
  • link_completions Utils::Link @@ -18052,7 +18060,7 @@

    Method List

  • -
  • +
  • link_completions? Homebrew::Completions @@ -18060,7 +18068,7 @@

    Method List

  • -
  • +
  • #link_completions_and_manpages Tap @@ -18068,7 +18076,7 @@

    Method List

  • -
  • +
  • link_completions_manpages_and_docs Homebrew @@ -18076,7 +18084,7 @@

    Method List

  • -
  • +
  • link_docs Utils::Link @@ -18084,7 +18092,7 @@

    Method List

  • -
  • +
  • #link_keg FormulaInstaller @@ -18092,7 +18100,7 @@

    Method List

  • -
  • +
  • link_manpages Utils::Link @@ -18100,7 +18108,7 @@

    Method List

  • -
  • +
  • #link_newname Migrator @@ -18108,7 +18116,7 @@

    Method List

  • -
  • +
  • link_nodenv_versions Homebrew @@ -18116,7 +18124,7 @@

    Method List

  • -
  • +
  • #link_oldname_cellar Migrator @@ -18124,7 +18132,7 @@

    Method List

  • -
  • +
  • #link_oldname_opt Migrator @@ -18132,7 +18140,7 @@

    Method List

  • -
  • +
  • link_overwrite Formula @@ -18140,7 +18148,7 @@

    Method List

  • -
  • +
  • link_pyenv_versions Homebrew @@ -18148,7 +18156,7 @@

    Method List

  • -
  • +
  • link_rbenv_versions Homebrew @@ -18156,7 +18164,7 @@

    Method List

  • -
  • +
  • link_type_english_name Cask::Artifact::Symlinked @@ -18164,7 +18172,7 @@

    Method List

  • -
  • +
  • linkage Homebrew @@ -18172,7 +18180,7 @@

    Method List

  • -
  • +
  • linkage_args Homebrew @@ -18180,7 +18188,7 @@

    Method List

  • -
  • +
  • #linked? Keg @@ -18188,7 +18196,7 @@

    Method List

  • -
  • +
  • #linked? Formula @@ -18196,7 +18204,7 @@

    Method List

  • -
  • +
  • #linked_keg_record Keg @@ -18204,7 +18212,7 @@

    Method List

  • -
  • +
  • #linked_old_linked_kegs Migrator @@ -18212,7 +18220,7 @@

    Method List

  • -
  • +
  • #linked_version Formula @@ -18220,7 +18228,7 @@

    Method List

  • -
  • +
  • linux? OS @@ -18228,7 +18236,7 @@

    Method List

  • -
  • +
  • #linux? GitHubRunner @@ -18236,7 +18244,7 @@

    Method List

  • -
  • +
  • #linux? Utils::Bottles::Tag @@ -18244,7 +18252,7 @@

    Method List

  • -
  • +
  • #linux_compatible? TestRunnerFormula @@ -18252,7 +18260,7 @@

    Method List

  • -
  • +
  • #linux_only? TestRunnerFormula @@ -18260,7 +18268,7 @@

    Method List

  • -
  • +
  • list Homebrew @@ -18268,7 +18276,7 @@

    Method List

  • -
  • +
  • list? Metafiles @@ -18276,7 +18284,7 @@

    Method List

  • -
  • +
  • list_args Homebrew @@ -18284,7 +18292,7 @@

    Method List

  • -
  • +
  • list_artifacts Cask::List @@ -18292,7 +18300,7 @@

    Method List

  • -
  • +
  • list_casks Homebrew @@ -18300,7 +18308,7 @@

    Method List

  • -
  • +
  • list_casks Cask::List @@ -18308,7 +18316,7 @@

    Method List

  • -
  • +
  • list_unbrewed Homebrew @@ -18316,7 +18324,7 @@

    Method List

  • -
  • +
  • little_endian? Hardware::CPU @@ -18324,7 +18332,7 @@

    Method List

  • -
  • +
  • #livecheck Formula @@ -18332,7 +18340,7 @@

    Method List

  • -
  • +
  • livecheck Formula @@ -18340,7 +18348,7 @@

    Method List

  • -
  • +
  • #livecheck Cask::DSL @@ -18348,7 +18356,7 @@

    Method List

  • -
  • +
  • #livecheck Resource @@ -18356,7 +18364,7 @@

    Method List

  • -
  • +
  • livecheck Homebrew @@ -18364,7 +18372,7 @@

    Method List

  • -
  • +
  • livecheck_args Homebrew @@ -18372,7 +18380,7 @@

    Method List

  • -
  • +
  • livecheck_result Homebrew @@ -18380,7 +18388,7 @@

    Method List

  • -
  • +
  • livecheck_strategy_names Homebrew::Livecheck @@ -18388,7 +18396,7 @@

    Method List

  • -
  • +
  • livecheck_url_to_string Homebrew::Livecheck @@ -18396,7 +18404,7 @@

    Method List

  • -
  • +
  • #livecheckable? Formula @@ -18404,7 +18412,7 @@

    Method List

  • -
  • +
  • livecheckable? Formula @@ -18412,7 +18420,7 @@

    Method List

  • -
  • +
  • #livecheckable? Cask::DSL @@ -18420,7 +18428,7 @@

    Method List

  • -
  • +
  • #livecheckable? Resource @@ -18428,7 +18436,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::ILoader @@ -18436,7 +18444,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromContentLoader @@ -18444,7 +18452,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromPathLoader @@ -18452,7 +18460,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromURILoader @@ -18460,7 +18468,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromTapLoader @@ -18468,7 +18476,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromInstanceLoader @@ -18476,7 +18484,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromAPILoader @@ -18484,7 +18492,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::NullLoader @@ -18492,7 +18500,7 @@

    Method List

  • -
  • +
  • load Cask::CaskLoader @@ -18500,7 +18508,7 @@

    Method List

  • -
  • +
  • #load Cask::DSL::DependsOn @@ -18508,7 +18516,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::FromUrlLoader @@ -18516,7 +18524,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::TapLoader @@ -18524,7 +18532,7 @@

    Method List

  • -
  • +
  • load_formula Formulary @@ -18532,7 +18540,7 @@

    Method List

  • -
  • +
  • load_formula_from_api Formulary @@ -18540,7 +18548,7 @@

    Method List

  • -
  • +
  • load_formula_from_path Formulary @@ -18548,7 +18556,7 @@

    Method List

  • -
  • +
  • load_logs Homebrew @@ -18556,7 +18564,7 @@

    Method List

  • -
  • +
  • load_other_tap_strategies Homebrew::Livecheck @@ -18564,7 +18572,7 @@

    Method List

  • -
  • +
  • load_tab Utils::Bottles @@ -18572,7 +18580,7 @@

    Method List

  • -
  • +
  • #loaded_from_api Tab @@ -18580,7 +18588,7 @@

    Method List

  • -
  • +
  • #loader Cask::Cask @@ -18588,7 +18596,7 @@

    Method List

  • -
  • +
  • loader_for Formulary @@ -18596,7 +18604,7 @@

    Method List

  • -
  • +
  • #loader_name_for Keg @@ -18604,7 +18612,7 @@

    Method List

  • -
  • +
  • #loader_path Formula @@ -18612,7 +18620,7 @@

    Method List

  • -
  • +
  • local_npm_install_args Language::Node @@ -18620,7 +18628,7 @@

    Method List

  • -
  • +
  • #location Homebrew::Style::Offense @@ -18628,7 +18636,7 @@

    Method List

  • -
  • +
  • #location Cask::URL @@ -18636,7 +18644,7 @@

    Method List

  • -
  • +
  • #location_expression RuboCop::AST::Node @@ -18644,7 +18652,7 @@

    Method List

  • -
  • +
  • #lock Keg @@ -18652,7 +18660,7 @@

    Method List

  • -
  • +
  • #lock Migrator @@ -18660,7 +18668,7 @@

    Method List

  • -
  • +
  • #lock LockFile @@ -18668,7 +18676,7 @@

    Method List

  • -
  • +
  • locked FormulaInstaller @@ -18676,7 +18684,7 @@

    Method List

  • -
  • +
  • log Homebrew @@ -18684,7 +18692,7 @@

    Method List

  • -
  • +
  • log_args Homebrew @@ -18692,7 +18700,7 @@

    Method List

  • -
  • +
  • #log_path Homebrew::Service @@ -18700,7 +18708,7 @@

    Method List

  • -
  • +
  • lookup FormulaInfo @@ -18708,7 +18716,7 @@

    Method List

  • -
  • +
  • mac? OS @@ -18716,7 +18724,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? MachOShim @@ -18724,7 +18732,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? Pathname @@ -18732,7 +18740,7 @@

    Method List

  • -
  • +
  • #mach_o_executable? MachOShim @@ -18740,7 +18748,7 @@

    Method List

  • -
  • +
  • #mach_o_files Keg @@ -18748,7 +18756,7 @@

    Method List

  • -
  • +
  • #macos Cask::DSL::DependsOn @@ -18756,7 +18764,7 @@

    Method List

  • -
  • +
  • #macos? GitHubRunner @@ -18764,7 +18772,7 @@

    Method List

  • -
  • +
  • #macos? Utils::Bottles::Tag @@ -18772,7 +18780,7 @@

    Method List

  • -
  • +
  • #macos_compatible? TestRunnerFormula @@ -18780,7 +18788,7 @@

    Method List

  • -
  • +
  • #macos_legacy_timers Homebrew::Service @@ -18788,7 +18796,7 @@

    Method List

  • -
  • +
  • #macos_only? TestRunnerFormula @@ -18796,7 +18804,7 @@

    Method List

  • -
  • +
  • #macos_version GitHubRunner @@ -18804,7 +18812,7 @@

    Method List

  • -
  • +
  • #macosxsdk Stdenv @@ -18812,7 +18820,7 @@

    Method List

  • -
  • +
  • macports_or_fink OS::Mac @@ -18820,7 +18828,7 @@

    Method List

  • -
  • +
  • #magic_number Pathname @@ -18828,7 +18836,7 @@

    Method List

  • -
  • +
  • #maintainers Homebrew::Manpages::Variables @@ -18836,7 +18844,7 @@

    Method List

  • -
  • +
  • #major Version @@ -18844,7 +18852,7 @@

    Method List

  • -
  • +
  • #major Cask::DSL::Version @@ -18852,7 +18860,7 @@

    Method List

  • -
  • +
  • #major_minor Version @@ -18860,7 +18868,7 @@

    Method List

  • -
  • +
  • #major_minor Cask::DSL::Version @@ -18868,7 +18876,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Version @@ -18876,7 +18884,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Cask::DSL::Version @@ -18884,7 +18892,7 @@

    Method List

  • -
  • +
  • major_minor_version Language::Python @@ -18892,7 +18900,7 @@

    Method List

  • -
  • +
  • make_jobs Homebrew::EnvConfig @@ -18900,7 +18908,7 @@

    Method List

  • -
  • +
  • #make_jobs Stdenv @@ -18908,7 +18916,7 @@

    Method List

  • -
  • +
  • #make_jobs Superenv @@ -18916,7 +18924,7 @@

    Method List

  • -
  • +
  • #man Formula @@ -18924,7 +18932,7 @@

    Method List

  • -
  • +
  • #man1 Formula @@ -18932,7 +18940,7 @@

    Method List

  • -
  • +
  • #man2 Formula @@ -18940,7 +18948,7 @@

    Method List

  • -
  • +
  • #man3 Formula @@ -18948,7 +18956,7 @@

    Method List

  • -
  • +
  • #man4 Formula @@ -18956,7 +18964,7 @@

    Method List

  • -
  • +
  • #man5 Formula @@ -18964,7 +18972,7 @@

    Method List

  • -
  • +
  • #man6 Formula @@ -18972,7 +18980,7 @@

    Method List

  • -
  • +
  • #man7 Formula @@ -18980,7 +18988,7 @@

    Method List

  • -
  • +
  • #man8 Formula @@ -18988,7 +18996,7 @@

    Method List

  • -
  • +
  • #manpagedir Cask::Config @@ -18996,7 +19004,7 @@

    Method List

  • -
  • +
  • #manual_command Homebrew::Service @@ -19004,7 +19012,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Git @@ -19012,7 +19020,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnu @@ -19020,7 +19028,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Npm @@ -19028,7 +19036,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xml @@ -19036,7 +19044,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Cpan @@ -19044,7 +19052,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Json @@ -19052,7 +19060,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Pypi @@ -19060,7 +19068,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xorg @@ -19068,7 +19076,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Yaml @@ -19076,7 +19084,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnome @@ -19084,7 +19092,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Apache @@ -19092,7 +19100,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Hackage @@ -19100,7 +19108,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sparkle @@ -19108,7 +19116,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Bitbucket @@ -19116,7 +19124,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Launchpad @@ -19124,7 +19132,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::PageMatch @@ -19132,7 +19140,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sourceforge @@ -19140,7 +19148,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::HeaderMatch @@ -19148,7 +19156,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ExtractPlist @@ -19156,7 +19164,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubLatest @@ -19164,7 +19172,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubReleases @@ -19172,7 +19180,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ElectronBuilder @@ -19180,7 +19188,7 @@

    Method List

  • -
  • +
  • #max_length Utils::Shebang::RewriteInfo @@ -19188,7 +19196,7 @@

    Method List

  • -
  • +
  • mdfind OS::Mac @@ -19196,7 +19204,7 @@

    Method List

  • -
  • +
  • mdfind_query OS::Mac @@ -19204,7 +19212,7 @@

    Method List

  • -
  • +
  • #mdimporters Homebrew::UnversionedCaskChecker @@ -19212,7 +19220,7 @@

    Method List

  • -
  • +
  • members_by_team GitHub @@ -19220,7 +19228,7 @@

    Method List

  • -
  • +
  • #merge Cask::Config @@ -19228,7 +19236,7 @@

    Method List

  • -
  • +
  • merge Homebrew @@ -19236,7 +19244,7 @@

    Method List

  • -
  • +
  • #merge BuildEnvironment @@ -19244,7 +19252,7 @@

    Method List

  • -
  • +
  • merge_bottle_spec Homebrew @@ -19252,7 +19260,7 @@

    Method List

  • -
  • +
  • #merge_directory Migrator @@ -19260,7 +19268,7 @@

    Method List

  • -
  • +
  • merge_json_files Homebrew @@ -19268,7 +19276,7 @@

    Method List

  • -
  • +
  • merge_pull_request GitHub @@ -19276,7 +19284,7 @@

    Method List

  • -
  • +
  • merge_repeats Dependency @@ -19284,7 +19292,7 @@

    Method List

  • -
  • +
  • merge_variations Homebrew::API @@ -19292,7 +19300,7 @@

    Method List

  • -
  • +
  • #merge_xattrs UnpackStrategy @@ -19300,7 +19308,7 @@

    Method List

  • -
  • +
  • #merged_output SystemCommand::Result @@ -19308,7 +19316,7 @@

    Method List

  • -
  • +
  • #message Homebrew::Style::Offense @@ -19316,7 +19324,7 @@

    Method List

  • -
  • +
  • #message TapRemoteMismatchError @@ -19324,7 +19332,7 @@

    Method List

  • -
  • +
  • #message TapCoreRemoteMismatchError @@ -19332,7 +19340,7 @@

    Method List

  • -
  • +
  • #message FormulaConflictError @@ -19340,7 +19348,7 @@

    Method List

  • -
  • +
  • #message Requirement @@ -19348,7 +19356,7 @@

    Method List

  • -
  • +
  • #message ArchRequirement @@ -19356,7 +19364,7 @@

    Method List

  • -
  • +
  • #message LinuxRequirement @@ -19364,7 +19372,7 @@

    Method List

  • -
  • +
  • #message MacOSRequirement @@ -19372,7 +19380,7 @@

    Method List

  • -
  • +
  • #message XcodeRequirement @@ -19380,7 +19388,7 @@

    Method List

  • -
  • +
  • #message CodesignRequirement @@ -19388,7 +19396,7 @@

    Method List

  • -
  • +
  • messages Homebrew @@ -19396,7 +19404,7 @@

    Method List

  • -
  • +
  • messages_displayed! Utils::Analytics @@ -19404,7 +19412,7 @@

    Method List

  • -
  • +
  • messages_displayed? Utils::Analytics @@ -19412,7 +19420,7 @@

    Method List

  • -
  • +
  • #metadata_main_container_path Cask::Metadata @@ -19420,7 +19428,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Metadata @@ -19428,7 +19436,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Installer @@ -19436,7 +19444,7 @@

    Method List

  • -
  • +
  • #metadata_timestamped_path Cask::Metadata @@ -19444,7 +19452,7 @@

    Method List

  • -
  • +
  • #metadata_versioned_path Cask::Metadata @@ -19452,7 +19460,7 @@

    Method List

  • -
  • +
  • #method_called? RuboCop::Cop::HelperFunctions @@ -19460,7 +19468,7 @@

    Method List

  • -
  • +
  • #method_called_ever? RuboCop::Cop::HelperFunctions @@ -19468,7 +19476,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL @@ -19476,7 +19484,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::URL::BlockDSL @@ -19484,7 +19492,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL::Base @@ -19492,7 +19500,7 @@

    Method List

  • -
  • +
  • method_missing_message Cask::Utils @@ -19500,7 +19508,7 @@

    Method List

  • -
  • +
  • method_name Commands @@ -19508,7 +19516,7 @@

    Method List

  • -
  • +
  • #method_name RuboCop::Cop::HelperFunctions @@ -19516,7 +19524,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::Stanza @@ -19524,7 +19532,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::CaskHeader @@ -19532,7 +19540,7 @@

    Method List

  • -
  • +
  • #migrate Migrator @@ -19540,7 +19548,7 @@

    Method List

  • -
  • +
  • migrate Homebrew @@ -19548,7 +19556,7 @@

    Method List

  • -
  • +
  • #migrate Cask::Migrator @@ -19556,7 +19564,7 @@

    Method List

  • -
  • +
  • migrate_args Homebrew @@ -19564,7 +19572,7 @@

    Method List

  • -
  • +
  • #migrate_cask_rename Reporter @@ -19572,7 +19580,7 @@

    Method List

  • -
  • +
  • #migrate_formula_rename Reporter @@ -19580,7 +19588,7 @@

    Method List

  • -
  • +
  • migrate_gcc_dependents_if_needed Homebrew @@ -19588,7 +19596,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Migrator @@ -19596,7 +19604,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Cask::Migrator @@ -19604,7 +19612,7 @@

    Method List

  • -
  • +
  • #migrate_tap_migration Reporter @@ -19612,7 +19620,7 @@

    Method List

  • -
  • +
  • #migration_needed? Formula @@ -19620,7 +19628,7 @@

    Method List

  • -
  • +
  • #minimum_system_version Homebrew::Livecheck::Strategy::Sparkle::Item @@ -19628,7 +19636,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::Xcode @@ -19636,7 +19644,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::CLT @@ -19644,7 +19652,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Glibc @@ -19652,7 +19660,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Kernel @@ -19660,7 +19668,7 @@

    Method List

  • -
  • +
  • #minor Version @@ -19668,7 +19676,7 @@

    Method List

  • -
  • +
  • #minor Cask::DSL::Version @@ -19676,7 +19684,7 @@

    Method List

  • -
  • +
  • #minor_patch Cask::DSL::Version @@ -19684,7 +19692,7 @@

    Method List

  • -
  • +
  • mirror Formula @@ -19692,7 +19700,7 @@

    Method List

  • -
  • +
  • #mirror Resource @@ -19700,7 +19708,7 @@

    Method List

  • -
  • +
  • #mirrors Downloadable @@ -19708,7 +19716,7 @@

    Method List

  • -
  • +
  • #mirrors Homebrew::ResourceAuditor @@ -19716,7 +19724,7 @@

    Method List

  • -
  • +
  • #mirrors CurlDownloadStrategy @@ -19724,7 +19732,7 @@

    Method List

  • -
  • +
  • #mirrors CurlApacheMirrorDownloadStrategy @@ -19732,7 +19740,7 @@

    Method List

  • -
  • +
  • missing Homebrew @@ -19740,7 +19748,7 @@

    Method List

  • -
  • +
  • missing_args Homebrew @@ -19748,7 +19756,7 @@

    Method List

  • -
  • +
  • #missing_cask_and_formula_dependencies Cask::Installer @@ -19756,7 +19764,7 @@

    Method List

  • -
  • +
  • #missing_dependencies Formula @@ -19764,7 +19772,7 @@

    Method List

  • -
  • +
  • missing_deps Homebrew::Diagnostic @@ -19772,7 +19780,7 @@

    Method List

  • -
  • +
  • #missing_options Dependency @@ -19780,7 +19788,7 @@

    Method List

  • -
  • +
  • #mkdir Formula @@ -19788,7 +19796,7 @@

    Method List

  • -
  • +
  • #mktemp Formula @@ -19796,7 +19804,7 @@

    Method List

  • -
  • +
  • #mktemp Requirement @@ -19804,7 +19812,7 @@

    Method List

  • -
  • +
  • #mode Homebrew::FormulaCreator @@ -19812,7 +19820,7 @@

    Method List

  • -
  • +
  • #modifier? RuboCop::Cop::FormulaAudit::Miscellaneous @@ -19820,7 +19828,7 @@

    Method List

  • -
  • +
  • #modify_build_environment Dependency @@ -19828,7 +19836,7 @@

    Method List

  • -
  • +
  • #modify_build_environment Requirement @@ -19836,7 +19844,7 @@

    Method List

  • -
  • +
  • #move_to_new_directory Migrator @@ -19844,7 +19852,7 @@

    Method List

  • -
  • +
  • #mtime CacheStoreDatabase @@ -19852,7 +19860,7 @@

    Method List

  • -
  • +
  • #multi_stanza_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -19860,7 +19868,7 @@

    Method List

  • -
  • +
  • multiple_short_commits_exist? GitHub @@ -19868,7 +19876,7 @@

    Method List

  • -
  • +
  • #multiple_versions Homebrew::VersionBumpInfo @@ -19876,7 +19884,7 @@

    Method List

  • -
  • +
  • #name Keg @@ -19884,7 +19892,7 @@

    Method List

  • -
  • +
  • #name Tap @@ -19892,7 +19900,7 @@

    Method List

  • -
  • +
  • #name Debrew::Menu::Entry @@ -19900,7 +19908,7 @@

    Method List

  • -
  • +
  • #name Formula @@ -19908,7 +19916,7 @@

    Method List

  • -
  • +
  • #name Option @@ -19916,7 +19924,7 @@

    Method List

  • -
  • +
  • #name Homebrew::Service @@ -19924,7 +19932,7 @@

    Method List

  • -
  • +
  • #name Cask::DSL @@ -19932,7 +19940,7 @@

    Method List

  • -
  • +
  • #name Resource @@ -19940,7 +19948,7 @@

    Method List

  • -
  • +
  • #name CompilerSelector::Compiler @@ -19948,7 +19956,7 @@

    Method List

  • -
  • +
  • #name Formulary::FormulaLoader @@ -19956,7 +19964,7 @@

    Method List

  • -
  • +
  • #name Dependency @@ -19964,7 +19972,7 @@

    Method List

  • -
  • +
  • #name NoSuchKegError @@ -19972,7 +19980,7 @@

    Method List

  • -
  • +
  • #name FormulaOrCaskUnavailableError @@ -19980,7 +19988,7 @@

    Method List

  • -
  • +
  • #name TapFormulaAmbiguityError @@ -19988,7 +19996,7 @@

    Method List

  • -
  • +
  • #name TapFormulaWithOldnameAmbiguityError @@ -19996,7 +20004,7 @@

    Method List

  • -
  • +
  • #name TapUnavailableError @@ -20004,7 +20012,7 @@

    Method List

  • -
  • +
  • #name TapRemoteMismatchError @@ -20012,7 +20020,7 @@

    Method List

  • -
  • +
  • #name TapAlreadyTappedError @@ -20020,7 +20028,7 @@

    Method List

  • -
  • +
  • #name TapNoCustomRemoteError @@ -20028,7 +20036,7 @@

    Method List

  • -
  • +
  • #name PyPI::Package @@ -20036,7 +20044,7 @@

    Method List

  • -
  • +
  • #name Requirement @@ -20044,7 +20052,7 @@

    Method List

  • -
  • +
  • #name Homebrew::TapAuditor @@ -20052,7 +20060,7 @@

    Method List

  • -
  • +
  • #name SoftwareSpec @@ -20060,7 +20068,7 @@

    Method List

  • -
  • +
  • #name Bottle::Filename @@ -20068,7 +20076,7 @@

    Method List

  • -
  • +
  • #name Bottle @@ -20076,7 +20084,7 @@

    Method List

  • -
  • +
  • #name CaskDependent @@ -20084,7 +20092,7 @@

    Method List

  • -
  • +
  • #name Homebrew::FormulaCreator @@ -20092,7 +20100,7 @@

    Method List

  • -
  • +
  • #name FormulaConflict @@ -20100,7 +20108,7 @@

    Method List

  • -
  • +
  • #name Homebrew::ResourceAuditor @@ -20108,7 +20116,7 @@

    Method List

  • -
  • +
  • #name LinuxRunnerSpec @@ -20116,7 +20124,7 @@

    Method List

  • -
  • +
  • #name MacOSRunnerSpec @@ -20124,7 +20132,7 @@

    Method List

  • -
  • +
  • #name TestRunnerFormula @@ -20132,7 +20140,7 @@

    Method List

  • -
  • +
  • name_info Cask::Info @@ -20140,7 +20148,7 @@

    Method List

  • -
  • +
  • name_of Homebrew @@ -20148,7 +20156,7 @@

    Method List

  • -
  • +
  • #name_to_option Homebrew::CLI::Parser @@ -20156,7 +20164,7 @@

    Method List

  • -
  • +
  • #named Homebrew::CLI::Args @@ -20164,7 +20172,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::Uninstall::DependentsMessage @@ -20172,7 +20180,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::CLI::Parser @@ -20180,7 +20188,7 @@

    Method List

  • -
  • +
  • named_args_type Commands @@ -20188,7 +20196,7 @@

    Method List

  • -
  • +
  • #named_args_type Homebrew::CLI::Parser @@ -20196,7 +20204,7 @@

    Method List

  • -
  • +
  • names Tap @@ -20204,7 +20212,7 @@

    Method List

  • -
  • +
  • needs Formula @@ -20212,7 +20220,7 @@

    Method List

  • -
  • +
  • #needs SoftwareSpec @@ -20220,7 +20228,7 @@

    Method List

  • -
  • +
  • needs_clt_installed? OS::Mac::Xcode @@ -20228,7 +20236,7 @@

    Method List

  • -
  • +
  • needs_migration? Migrator @@ -20236,7 +20244,7 @@

    Method List

  • -
  • +
  • #needs_python? Language::Python::Virtualenv @@ -20244,7 +20252,7 @@

    Method List

  • -
  • +
  • #nested Cask::DSL::Container @@ -20252,7 +20260,7 @@

    Method List

  • -
  • +
  • nested_cache? Homebrew::Cleanup @@ -20260,7 +20268,7 @@

    Method List

  • -
  • +
  • #new_cask Cask::Migrator @@ -20268,7 +20276,7 @@

    Method List

  • -
  • +
  • #new_cask_path Tap @@ -20276,7 +20284,7 @@

    Method List

  • -
  • +
  • #new_cask_path CoreCaskTap @@ -20284,7 +20292,7 @@

    Method List

  • -
  • +
  • #new_cellar Migrator @@ -20292,7 +20300,7 @@

    Method List

  • -
  • +
  • #new_cellar_existed Migrator @@ -20300,7 +20308,7 @@

    Method List

  • -
  • +
  • #new_download_sha Cask::Cask @@ -20308,7 +20316,7 @@

    Method List

  • -
  • +
  • #new_formula_available? Formula @@ -20316,7 +20324,7 @@

    Method List

  • -
  • +
  • #new_formula_path Tap @@ -20324,7 +20332,7 @@

    Method List

  • -
  • +
  • #new_formula_path CoreTap @@ -20332,7 +20340,7 @@

    Method List

  • -
  • +
  • #new_formula_problems Homebrew::FormulaAuditor @@ -20340,7 +20348,7 @@

    Method List

  • -
  • +
  • #new_linked_keg_record Migrator @@ -20348,7 +20356,7 @@

    Method List

  • -
  • +
  • #new_pin_record Migrator @@ -20356,7 +20364,7 @@

    Method List

  • -
  • +
  • #new_version Homebrew::VersionBumpInfo @@ -20364,7 +20372,7 @@

    Method List

  • -
  • +
  • #newname Migrator @@ -20372,7 +20380,7 @@

    Method List

  • -
  • +
  • #nice_version Homebrew::BundleVersion @@ -20380,7 +20388,7 @@

    Method List

  • -
  • +
  • no_changes_message Homebrew @@ -20388,7 +20396,7 @@

    Method List

  • -
  • +
  • #no_dividers Cask::DSL::Version @@ -20396,7 +20404,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Stdenv @@ -20404,7 +20412,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Superenv @@ -20412,7 +20420,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains_support? SharedEnvExtension @@ -20420,7 +20428,7 @@

    Method List

  • -
  • +
  • no_message_output? Utils::Analytics @@ -20428,7 +20436,7 @@

    Method List

  • -
  • +
  • #no_named? Homebrew::CLI::Args @@ -20436,7 +20444,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Stdenv @@ -20444,7 +20452,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Superenv @@ -20452,7 +20460,7 @@

    Method List

  • -
  • +
  • #no_weak_imports_support? SharedEnvExtension @@ -20460,7 +20468,7 @@

    Method List

  • -
  • +
  • #node_equals? RuboCop::Cop::HelperFunctions @@ -20468,7 +20476,7 @@

    Method List

  • -
  • +
  • nodenv_sync Homebrew @@ -20476,7 +20484,7 @@

    Method List

  • -
  • +
  • nodenv_sync_args Homebrew @@ -20484,7 +20492,7 @@

    Method List

  • -
  • +
  • noecho_gets Homebrew @@ -20492,7 +20500,7 @@

    Method List

  • -
  • +
  • #none_string Homebrew::Diagnostic::Checks @@ -20500,7 +20508,7 @@

    Method List

  • -
  • +
  • normalize_python_package PyPI @@ -20508,7 +20516,7 @@

    Method List

  • -
  • +
  • not_this_run? Utils::Analytics @@ -20516,7 +20524,7 @@

    Method List

  • -
  • +
  • npm_cache_config Language::Node @@ -20524,7 +20532,7 @@

    Method List

  • -
  • +
  • #null? Version::Token @@ -20532,7 +20540,7 @@

    Method List

  • -
  • +
  • #null? Version @@ -20540,7 +20548,7 @@

    Method List

  • -
  • +
  • #number_readable Kernel @@ -20548,7 +20556,7 @@

    Method List

  • -
  • +
  • #numeric? Version::Token @@ -20556,7 +20564,7 @@

    Method List

  • -
  • +
  • #numeric? Version::NumericToken @@ -20564,7 +20572,7 @@

    Method List

  • -
  • +
  • #odebug Kernel @@ -20572,7 +20580,7 @@

    Method List

  • -
  • +
  • #odeprecated Kernel @@ -20580,7 +20588,7 @@

    Method List

  • -
  • +
  • #odie Kernel @@ -20588,7 +20596,7 @@

    Method List

  • -
  • +
  • odie_if_defined Homebrew @@ -20596,7 +20604,7 @@

    Method List

  • -
  • +
  • #odisabled Kernel @@ -20604,7 +20612,7 @@

    Method List

  • -
  • +
  • #ofail Kernel @@ -20612,7 +20620,7 @@

    Method List

  • -
  • +
  • #offending_node RuboCop::Cop::HelperFunctions @@ -20620,7 +20628,7 @@

    Method List

  • -
  • +
  • #official? Tap @@ -20628,7 +20636,7 @@

    Method List

  • -
  • +
  • #official_external_commands Homebrew::Manpages::Variables @@ -20636,7 +20644,7 @@

    Method List

  • -
  • +
  • official_external_commands_paths Commands @@ -20644,7 +20652,7 @@

    Method List

  • -
  • +
  • #oh1 Kernel @@ -20652,7 +20660,7 @@

    Method List

  • -
  • +
  • #oh1_title Kernel @@ -20660,7 +20668,7 @@

    Method List

  • -
  • +
  • #ohai Kernel @@ -20668,7 +20676,7 @@

    Method List

  • -
  • +
  • ohai_if_defined Homebrew @@ -20676,7 +20684,7 @@

    Method List

  • -
  • +
  • #ohai_title Kernel @@ -20684,7 +20692,7 @@

    Method List

  • -
  • +
  • #old DeprecatedOption @@ -20692,7 +20700,7 @@

    Method List

  • -
  • +
  • #old_cask Cask::Migrator @@ -20700,7 +20708,7 @@

    Method List

  • -
  • +
  • #old_cellar Migrator @@ -20708,7 +20716,7 @@

    Method List

  • -
  • +
  • old_checksums Homebrew @@ -20716,7 +20724,7 @@

    Method List

  • -
  • +
  • #old_flag DeprecatedOption @@ -20724,7 +20732,7 @@

    Method List

  • -
  • +
  • #old_full_linked_kegs Migrator @@ -20732,7 +20740,7 @@

    Method List

  • -
  • +
  • #old_installed_formulae Formula @@ -20740,7 +20748,7 @@

    Method List

  • -
  • +
  • #old_linked_kegs Migrator @@ -20748,7 +20756,7 @@

    Method List

  • -
  • +
  • #old_opt_records Migrator @@ -20756,7 +20764,7 @@

    Method List

  • -
  • +
  • #old_pin_link_record Migrator @@ -20764,7 +20772,7 @@

    Method List

  • -
  • +
  • #old_pin_record Migrator @@ -20772,7 +20780,7 @@

    Method List

  • -
  • +
  • #old_tabs Migrator @@ -20780,7 +20788,7 @@

    Method List

  • -
  • +
  • #old_tap Migrator @@ -20788,7 +20796,7 @@

    Method List

  • -
  • +
  • #old_tokens Cask::Cask @@ -20796,7 +20804,7 @@

    Method List

  • -
  • +
  • oldest_cpu Hardware @@ -20804,7 +20812,7 @@

    Method List

  • -
  • +
  • #oldname Formula @@ -20812,7 +20820,7 @@

    Method List

  • -
  • +
  • #oldname Migrator @@ -20820,7 +20828,7 @@

    Method List

  • -
  • +
  • #oldname_opt_records Keg @@ -20828,7 +20836,7 @@

    Method List

  • -
  • +
  • #oldnames Formula @@ -20836,7 +20844,7 @@

    Method List

  • -
  • +
  • oldnames_needing_migration Migrator @@ -20844,7 +20852,7 @@

    Method List

  • -
  • +
  • #on_block RuboCop::Cop::Cask::CaskHelp @@ -20852,7 +20860,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::Variables @@ -20860,7 +20868,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::NoOverrides @@ -20868,7 +20876,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::CaskHelp @@ -20876,7 +20884,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::StanzaGrouping @@ -20884,7 +20892,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnUrlStanza @@ -20892,7 +20900,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnDescStanza @@ -20900,7 +20908,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnSystemConditionals @@ -20908,7 +20916,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnHomepageStanza @@ -20916,7 +20924,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::StanzaOrder @@ -20924,7 +20932,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::CaskHelp @@ -20932,7 +20940,7 @@

    Method List

  • -
  • +
  • #on_class RuboCop::Cop::FormulaCop @@ -20940,7 +20948,7 @@

    Method List

  • -
  • +
  • #on_desc_stanza RuboCop::Cop::Cask::Desc @@ -20948,7 +20956,7 @@

    Method List

  • -
  • +
  • #on_homepage_stanza RuboCop::Cop::Cask::HomepageUrlTrailingSlash @@ -20956,7 +20964,7 @@

    Method List

  • -
  • +
  • #on_new_investigation RuboCop::Cop::Cask::StanzaOrder @@ -20964,7 +20972,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::IORead @@ -20972,7 +20980,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ShellCommands @@ -20980,7 +20988,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ExecShellMetacharacters @@ -20988,7 +20996,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::MoveToExtendOS @@ -20996,7 +21004,7 @@

    Method List

  • -
  • +
  • #on_system_methods RuboCop::Cop::Cask::CaskHelp @@ -21004,7 +21012,7 @@

    Method List

  • -
  • +
  • #on_system_stanzas RuboCop::Cop::Cask::NoOverrides @@ -21012,7 +21020,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::Url @@ -21020,7 +21028,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::UrlLegacyCommaSeparators @@ -21028,7 +21036,7 @@

    Method List

  • -
  • +
  • #only_formula_or_cask Homebrew::CLI::Args @@ -21036,7 +21044,7 @@

    Method List

  • -
  • +
  • #only_path Cask::URL::DSL @@ -21044,7 +21052,7 @@

    Method List

  • -
  • +
  • #onoe Kernel @@ -21052,7 +21060,7 @@

    Method List

  • -
  • +
  • open_graphql GitHub::API @@ -21060,7 +21068,7 @@

    Method List

  • -
  • +
  • #open_pull_requests Homebrew::VersionBumpInfo @@ -21068,7 +21076,7 @@

    Method List

  • -
  • +
  • open_rest GitHub::API @@ -21076,7 +21084,7 @@

    Method List

  • -
  • +
  • #openjdk_dep_name_if_applicable Keg @@ -21084,7 +21092,7 @@

    Method List

  • -
  • +
  • #opoo Kernel @@ -21092,7 +21100,7 @@

    Method List

  • -
  • +
  • opoo_if_defined Homebrew @@ -21100,7 +21108,7 @@

    Method List

  • -
  • +
  • #opt_bin Formula @@ -21108,7 +21116,7 @@

    Method List

  • -
  • +
  • #opt_elisp Formula @@ -21116,7 +21124,7 @@

    Method List

  • -
  • +
  • #opt_frameworks Formula @@ -21124,7 +21132,7 @@

    Method List

  • -
  • +
  • #opt_include Formula @@ -21132,7 +21140,7 @@

    Method List

  • -
  • +
  • #opt_lib Formula @@ -21140,7 +21148,7 @@

    Method List

  • -
  • +
  • #opt_libexec Formula @@ -21148,7 +21156,7 @@

    Method List

  • -
  • +
  • #opt_pkgshare Formula @@ -21156,7 +21164,7 @@

    Method List

  • -
  • +
  • #opt_prefix Formula @@ -21164,7 +21172,7 @@

    Method List

  • -
  • +
  • #opt_record Keg @@ -21172,7 +21180,7 @@

    Method List

  • -
  • +
  • #opt_sbin Formula @@ -21180,7 +21188,7 @@

    Method List

  • -
  • +
  • #opt_share Formula @@ -21188,7 +21196,7 @@

    Method List

  • -
  • +
  • optimization_flags Hardware::CPU @@ -21196,7 +21204,7 @@

    Method List

  • -
  • +
  • option Formula @@ -21204,7 +21212,7 @@

    Method List

  • -
  • +
  • #option SoftwareSpec @@ -21212,7 +21220,7 @@

    Method List

  • -
  • +
  • option Formatter @@ -21220,7 +21228,7 @@

    Method List

  • -
  • +
  • option_conflicts Commands @@ -21228,7 +21236,7 @@

    Method List

  • -
  • +
  • #option_defined? Formula @@ -21236,7 +21244,7 @@

    Method List

  • -
  • +
  • #option_defined? SoftwareSpec @@ -21244,7 +21252,7 @@

    Method List

  • -
  • +
  • #option_description Homebrew::CLI::Parser @@ -21252,7 +21260,7 @@

    Method List

  • -
  • +
  • #option_names Dependency @@ -21260,7 +21268,7 @@

    Method List

  • -
  • +
  • #option_names Requirement @@ -21268,7 +21276,7 @@

    Method List

  • -
  • +
  • #option_tags Dependable @@ -21276,7 +21284,7 @@

    Method List

  • -
  • +
  • #option_to_description Homebrew::CLI::Parser @@ -21284,7 +21292,7 @@

    Method List

  • -
  • +
  • #option_to_name Homebrew::CLI::Parser @@ -21292,7 +21300,7 @@

    Method List

  • -
  • +
  • #optional Dependencies @@ -21300,7 +21308,7 @@

    Method List

  • -
  • +
  • #optional? Dependable @@ -21308,7 +21316,7 @@

    Method List

  • -
  • +
  • #options Dependable @@ -21316,7 +21324,7 @@

    Method List

  • -
  • +
  • #options BuildError @@ -21324,7 +21332,7 @@

    Method List

  • -
  • +
  • options Homebrew @@ -21332,7 +21340,7 @@

    Method List

  • -
  • +
  • #options SoftwareSpec @@ -21340,7 +21348,7 @@

    Method List

  • -
  • +
  • #options FormulaInstaller @@ -21348,7 +21356,7 @@

    Method List

  • -
  • +
  • options_args Homebrew @@ -21356,7 +21364,7 @@

    Method List

  • -
  • +
  • #options_only Homebrew::CLI::Args @@ -21364,7 +21372,7 @@

    Method List

  • -
  • +
  • #optlink Keg @@ -21372,7 +21380,7 @@

    Method List

  • -
  • +
  • #optlinked? Keg @@ -21380,7 +21388,7 @@

    Method List

  • -
  • +
  • #optlinked? Formula @@ -21388,7 +21396,7 @@

    Method List

  • -
  • +
  • origin SystemConfig @@ -21396,7 +21404,7 @@

    Method List

  • -
  • +
  • #origin_branch_name GitRepository @@ -21404,7 +21412,7 @@

    Method List

  • -
  • +
  • #origin_has_branch? GitRepository @@ -21412,7 +21420,7 @@

    Method List

  • -
  • +
  • #origin_url GitRepository @@ -21420,7 +21428,7 @@

    Method List

  • -
  • +
  • #origin_url= GitRepository @@ -21428,7 +21436,7 @@

    Method List

  • -
  • +
  • os Homebrew::SimulateSystem @@ -21436,7 +21444,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Livecheck::Strategy::Sparkle::Item @@ -21444,7 +21452,7 @@

    Method List

  • -
  • +
  • #os_arch_combinations Homebrew::CLI::Args @@ -21452,7 +21460,7 @@

    Method List

  • -
  • +
  • os_condition_met? OnSystem @@ -21460,7 +21468,7 @@

    Method List

  • -
  • +
  • os_version OS::Linux @@ -21468,7 +21476,7 @@

    Method List

  • -
  • +
  • outdated Homebrew @@ -21476,7 +21484,7 @@

    Method List

  • -
  • +
  • #outdated? Cask::Cask @@ -21484,7 +21492,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::Xcode @@ -21492,7 +21500,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::CLT @@ -21500,7 +21508,7 @@

    Method List

  • -
  • +
  • outdated_args Homebrew @@ -21508,7 +21516,7 @@

    Method List

  • -
  • +
  • outdated_casks Homebrew @@ -21516,7 +21524,7 @@

    Method List

  • -
  • +
  • #outdated_download_sha? Cask::Cask @@ -21524,7 +21532,7 @@

    Method List

  • -
  • +
  • outdated_formulae Homebrew @@ -21532,7 +21540,7 @@

    Method List

  • -
  • +
  • outdated_formulae_casks Homebrew @@ -21540,7 +21548,7 @@

    Method List

  • -
  • +
  • #outdated_info Cask::Cask @@ -21548,7 +21556,7 @@

    Method List

  • -
  • +
  • outdated_kegs Homebrew::Upgrade @@ -21556,7 +21564,7 @@

    Method List

  • -
  • +
  • #outdated_release? MacOSVersion @@ -21564,7 +21572,7 @@

    Method List

  • -
  • +
  • #outdated_version Cask::Cask @@ -21572,7 +21580,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::DeveloperDependentsMessage @@ -21580,7 +21588,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::NondeveloperDependentsMessage @@ -21588,7 +21596,7 @@

    Method List

  • -
  • +
  • #output ErrorDuringExecution @@ -21596,7 +21604,7 @@

    Method List

  • -
  • +
  • output Utils::Analytics @@ -21604,7 +21612,7 @@

    Method List

  • -
  • +
  • output_analytics Utils::Analytics @@ -21612,7 +21620,7 @@

    Method List

  • -
  • +
  • output_github_packages_downloads Utils::Analytics @@ -21620,7 +21628,7 @@

    Method List

  • -
  • +
  • output_lost_bottles Homebrew @@ -21628,7 +21636,7 @@

    Method List

  • -
  • +
  • output_total Homebrew @@ -21636,7 +21644,7 @@

    Method List

  • -
  • +
  • output_unbottled Homebrew @@ -21644,7 +21652,7 @@

    Method List

  • -
  • +
  • output_update_report Homebrew @@ -21652,7 +21660,7 @@

    Method List

  • -
  • +
  • overridable_java_home_env Language::Java @@ -21660,7 +21668,7 @@

    Method List

  • -
  • +
  • #owner Resource @@ -21668,7 +21676,7 @@

    Method List

  • -
  • +
  • #owner SoftwareSpec @@ -21676,7 +21684,7 @@

    Method List

  • -
  • +
  • #owner Homebrew::ResourceAuditor @@ -21684,7 +21692,7 @@

    Method List

  • -
  • +
  • #owner= ExternalPatch @@ -21692,7 +21700,7 @@

    Method List

  • -
  • +
  • owner_uid Homebrew @@ -21700,7 +21708,7 @@

    Method List

  • -
  • +
  • pack_for_installation Language::Node @@ -21708,7 +21716,7 @@

    Method List

  • -
  • +
  • #package_count Messages @@ -21716,7 +21724,7 @@

    Method List

  • -
  • +
  • #package_id Cask::Pkg @@ -21724,7 +21732,7 @@

    Method List

  • -
  • +
  • #package_installed Messages @@ -21732,7 +21740,7 @@

    Method List

  • -
  • +
  • package_or_resource_name Homebrew::Livecheck @@ -21740,7 +21748,7 @@

    Method List

  • -
  • +
  • package_or_resource_skip Homebrew::Livecheck::SkipConditions @@ -21748,7 +21756,7 @@

    Method List

  • -
  • +
  • page_content Homebrew::Livecheck::Strategy @@ -21756,7 +21764,7 @@

    Method List

  • -
  • +
  • page_headers Homebrew::Livecheck::Strategy @@ -21764,7 +21772,7 @@

    Method List

  • -
  • +
  • paginate_rest GitHub::API @@ -21772,7 +21780,7 @@

    Method List

  • -
  • +
  • #pair_node RuboCop::Cask::AST::CaskHeader @@ -21780,7 +21788,7 @@

    Method List

  • -
  • +
  • #pairs Cask::DSL::Container @@ -21788,7 +21796,7 @@

    Method List

  • -
  • +
  • #parameters RuboCop::Cop::HelperFunctions @@ -21796,7 +21804,7 @@

    Method List

  • -
  • +
  • #parameters_passed? RuboCop::Cop::HelperFunctions @@ -21804,7 +21812,7 @@

    Method List

  • -
  • +
  • parent Utils::Shell @@ -21812,7 +21820,7 @@

    Method List

  • -
  • +
  • #parent Homebrew::CLI::NamedArgs @@ -21820,7 +21828,7 @@

    Method List

  • -
  • +
  • parse Locale @@ -21828,7 +21836,7 @@

    Method List

  • -
  • +
  • parse Version @@ -21836,7 +21844,7 @@

    Method List

  • -
  • +
  • #parse Homebrew::CLI::Parser @@ -21844,7 +21852,7 @@

    Method List

  • -
  • +
  • parse PkgVersion @@ -21852,7 +21860,7 @@

    Method List

  • -
  • +
  • #parse Version::Parser @@ -21860,7 +21868,7 @@

    Method List

  • -
  • +
  • #parse Version::RegexParser @@ -21868,7 +21876,7 @@

    Method List

  • -
  • +
  • parse_api_response Repology @@ -21876,7 +21884,7 @@

    Method List

  • -
  • +
  • parse_author! Utils @@ -21884,7 +21892,7 @@

    Method List

  • -
  • +
  • #parse_cask_version Homebrew::BumpVersionParser @@ -21892,7 +21900,7 @@

    Method List

  • -
  • +
  • #parse_content IgnoreDirectiveDocstringParser @@ -21900,7 +21908,7 @@

    Method List

  • -
  • +
  • #parse_cron Homebrew::Service @@ -21908,7 +21916,7 @@

    Method List

  • -
  • +
  • parse_curl_output Utils::Curl @@ -21916,7 +21924,7 @@

    Method List

  • -
  • +
  • parse_json Homebrew::Livecheck::Strategy::Json @@ -21924,7 +21932,7 @@

    Method List

  • -
  • +
  • parse_json_files Homebrew @@ -21932,7 +21940,7 @@

    Method List

  • -
  • +
  • parse_license_expression SPDX @@ -21940,7 +21948,7 @@

    Method List

  • -
  • +
  • #parse_remaining Homebrew::CLI::Parser @@ -21948,7 +21956,7 @@

    Method List

  • -
  • +
  • #parse_version Homebrew::BumpVersionParser @@ -21956,7 +21964,7 @@

    Method List

  • -
  • +
  • parse_xml Homebrew::Livecheck::Strategy::Xml @@ -21964,7 +21972,7 @@

    Method List

  • -
  • +
  • parse_yaml Homebrew::Livecheck::Strategy::Yaml @@ -21972,7 +21980,7 @@

    Method List

  • -
  • +
  • #parsed_homebrew_version Tab @@ -21980,7 +21988,7 @@

    Method List

  • -
  • +
  • pat_blurb GitHub @@ -21988,7 +21996,7 @@

    Method List

  • -
  • +
  • #patch Debrew::Formula @@ -21996,7 +22004,7 @@

    Method List

  • -
  • +
  • patch Formula @@ -22004,7 +22012,7 @@

    Method List

  • -
  • +
  • #patch Version @@ -22012,7 +22020,7 @@

    Method List

  • -
  • +
  • #patch Resource @@ -22020,7 +22028,7 @@

    Method List

  • -
  • +
  • #patch SoftwareSpec @@ -22028,7 +22036,7 @@

    Method List

  • -
  • +
  • #patch Cask::DSL::Version @@ -22036,7 +22044,7 @@

    Method List

  • -
  • +
  • #patch! ELFShim @@ -22044,7 +22052,7 @@

    Method List

  • -
  • +
  • #patch_files Resource::PatchResource @@ -22052,7 +22060,7 @@

    Method List

  • -
  • +
  • #patchelf_patcher ELFShim @@ -22060,7 +22068,7 @@

    Method List

  • -
  • +
  • #patches Resource @@ -22068,7 +22076,7 @@

    Method List

  • -
  • +
  • #patches SoftwareSpec @@ -22076,7 +22084,7 @@

    Method List

  • -
  • +
  • #path Tap @@ -22084,7 +22092,7 @@

    Method List

  • -
  • +
  • #path DATAPatch @@ -22092,7 +22100,7 @@

    Method List

  • -
  • +
  • #path Formula @@ -22100,7 +22108,7 @@

    Method List

  • -
  • +
  • path Commands @@ -22108,7 +22116,7 @@

    Method List

  • -
  • +
  • #path Formulary::FormulaLoader @@ -22116,7 +22124,7 @@

    Method List

  • -
  • +
  • path Formulary @@ -22124,7 +22132,7 @@

    Method List

  • -
  • +
  • #path LockFile @@ -22132,7 +22140,7 @@

    Method List

  • -
  • +
  • path Utils::Git @@ -22140,7 +22148,7 @@

    Method List

  • -
  • +
  • path Cask::Cache @@ -22148,7 +22156,7 @@

    Method List

  • -
  • +
  • #path FormulaClassUnavailableErrorModule @@ -22156,7 +22164,7 @@

    Method List

  • -
  • +
  • #path OS::Mac::SDK @@ -22164,7 +22172,7 @@

    Method List

  • -
  • +
  • #path FormulaPin @@ -22172,7 +22180,7 @@

    Method List

  • -
  • +
  • #path Homebrew::TapAuditor @@ -22180,7 +22188,7 @@

    Method List

  • -
  • +
  • path Cask::Caskroom @@ -22188,7 +22196,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskQuarantineError @@ -22196,7 +22204,7 @@

    Method List

  • -
  • +
  • #path Homebrew::FormulaCreator @@ -22204,7 +22212,7 @@

    Method List

  • -
  • +
  • #path UnpackStrategy @@ -22212,7 +22220,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskLoader::FromPathLoader @@ -22220,7 +22228,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskLoader::FromAPILoader @@ -22228,7 +22236,7 @@

    Method List

  • -
  • +
  • path Cask::CaskLoader @@ -22236,7 +22244,7 @@

    Method List

  • -
  • +
  • #path Cask::Artifact::Pkg @@ -22244,7 +22252,7 @@

    Method List

  • -
  • +
  • #path Cask::Artifact::Installer @@ -22252,7 +22260,7 @@

    Method List

  • -
  • +
  • path_occupied? Cask::Utils @@ -22260,7 +22268,7 @@

    Method List

  • -
  • +
  • path_relative_to_workspace GitHub::Actions::Annotation @@ -22268,7 +22276,7 @@

    Method List

  • -
  • +
  • path_resolved_basename Utils::Bottles @@ -22276,7 +22284,7 @@

    Method List

  • -
  • +
  • #path_starts_with? RuboCop::Cop::FormulaAuditStrict::Text @@ -22284,7 +22292,7 @@

    Method List

  • -
  • +
  • path_to_regex Keg::Relocation @@ -22292,7 +22300,7 @@

    Method List

  • -
  • +
  • #pathname GitRepository @@ -22300,7 +22308,7 @@

    Method List

  • -
  • +
  • #paths TapFormulaAmbiguityError @@ -22308,7 +22316,7 @@

    Method List

  • -
  • +
  • #paths Kernel @@ -22316,7 +22324,7 @@

    Method List

  • -
  • +
  • perform_build_from_source_checks Homebrew::Install @@ -22324,7 +22332,7 @@

    Method List

  • -
  • +
  • perform_preinstall_checks Homebrew::Install @@ -22332,7 +22340,7 @@

    Method List

  • -
  • +
  • periodic_clean! Homebrew::Cleanup @@ -22340,7 +22348,7 @@

    Method List

  • -
  • +
  • periodic_clean_due? Homebrew::Cleanup @@ -22348,7 +22356,7 @@

    Method List

  • -
  • +
  • permission GitHub @@ -22356,7 +22364,7 @@

    Method List

  • -
  • +
  • #permit_arch_flags Superenv @@ -22364,7 +22372,7 @@

    Method List

  • -
  • +
  • #permit_arch_flags SharedEnvExtension @@ -22372,7 +22380,7 @@

    Method List

  • -
  • +
  • physical_cpu_arm64? Hardware::CPU @@ -22380,7 +22388,7 @@

    Method List

  • -
  • +
  • pin Homebrew @@ -22388,7 +22396,7 @@

    Method List

  • -
  • +
  • #pin FormulaPin @@ -22396,7 +22404,7 @@

    Method List

  • -
  • +
  • pin_args Homebrew @@ -22404,7 +22412,7 @@

    Method List

  • -
  • +
  • #pin_at FormulaPin @@ -22412,7 +22420,7 @@

    Method List

  • -
  • +
  • #pinnable? FormulaPin @@ -22420,7 +22428,7 @@

    Method List

  • -
  • +
  • #pinned? Migrator @@ -22428,7 +22436,7 @@

    Method List

  • -
  • +
  • #pinned? FormulaPin @@ -22436,7 +22444,7 @@

    Method List

  • -
  • +
  • #pinned_version FormulaPin @@ -22444,7 +22452,7 @@

    Method List

  • -
  • +
  • #pip_install Language::Python::Virtualenv::Virtualenv @@ -22452,7 +22460,7 @@

    Method List

  • -
  • +
  • #pip_install_and_link Language::Python::Virtualenv::Virtualenv @@ -22460,7 +22468,7 @@

    Method List

  • -
  • +
  • pip_report PyPI @@ -22468,7 +22476,7 @@

    Method List

  • -
  • +
  • pip_report_to_packages PyPI @@ -22476,7 +22484,7 @@

    Method List

  • -
  • +
  • #pipe_output Homebrew::Assertions @@ -22484,7 +22492,7 @@

    Method List

  • -
  • +
  • #pkg_version Formula @@ -22492,7 +22500,7 @@

    Method List

  • -
  • +
  • #pkg_version FormulaInfo @@ -22500,7 +22508,7 @@

    Method List

  • -
  • +
  • #pkgetc Formula @@ -22508,7 +22516,7 @@

    Method List

  • -
  • +
  • #pkgs Homebrew::UnversionedCaskChecker @@ -22516,7 +22524,7 @@

    Method List

  • -
  • +
  • #pkgshare Formula @@ -22524,7 +22532,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_all Cask::Pkg @@ -22532,7 +22540,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_dirs Cask::Pkg @@ -22540,7 +22548,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_files Cask::Pkg @@ -22548,7 +22556,7 @@

    Method List

  • -
  • +
  • #pkgutil_bom_specials Cask::Pkg @@ -22556,7 +22564,7 @@

    Method List

  • -
  • +
  • pkgutil_info OS::Mac @@ -22564,7 +22572,7 @@

    Method List

  • -
  • +
  • #platform GitHubRunner @@ -22572,7 +22580,7 @@

    Method List

  • -
  • +
  • #plc Homebrew::Manpages::Variables @@ -22580,7 +22588,7 @@

    Method List

  • -
  • +
  • #please_create_pull_requests Homebrew::Diagnostic::Checks @@ -22588,7 +22596,7 @@

    Method List

  • -
  • +
  • #plist Formula @@ -22596,7 +22604,7 @@

    Method List

  • -
  • +
  • #plist SystemCommand::Result @@ -22604,7 +22612,7 @@

    Method List

  • -
  • +
  • #plist_installed? Keg @@ -22612,7 +22620,7 @@

    Method List

  • -
  • +
  • #plist_name Formula @@ -22620,7 +22628,7 @@

    Method List

  • -
  • +
  • #plist_name Homebrew::Service @@ -22628,7 +22636,7 @@

    Method List

  • -
  • +
  • plist_options Formula @@ -22636,7 +22644,7 @@

    Method List

  • -
  • +
  • #plist_path Formula @@ -22644,7 +22652,7 @@

    Method List

  • -
  • +
  • pluralize Utils @@ -22652,7 +22660,7 @@

    Method List

  • -
  • +
  • popen Utils @@ -22660,7 +22668,7 @@

    Method List

  • -
  • +
  • popen_read Utils @@ -22668,7 +22676,7 @@

    Method List

  • -
  • +
  • popen_write Utils @@ -22676,7 +22684,7 @@

    Method List

  • -
  • +
  • #populate_from_api! Cask::Cask @@ -22684,7 +22692,7 @@

    Method List

  • -
  • +
  • #populate_if_empty! DescriptionCacheStore @@ -22692,7 +22700,7 @@

    Method List

  • -
  • +
  • #populate_if_empty! CaskDescriptionCacheStore @@ -22700,7 +22708,7 @@

    Method List

  • -
  • +
  • #possible_tap_newname_formulae TapFormulaWithOldnameAmbiguityError @@ -22708,7 +22716,7 @@

    Method List

  • -
  • +
  • #post_install Formula @@ -22716,7 +22724,7 @@

    Method List

  • -
  • +
  • #post_install FormulaInstaller @@ -22724,7 +22732,7 @@

    Method List

  • -
  • +
  • #post_install_formula_path FormulaInstaller @@ -22732,7 +22740,7 @@

    Method List

  • -
  • +
  • #post_uninstall_phase Cask::Artifact::Uninstall @@ -22740,7 +22748,7 @@

    Method List

  • -
  • +
  • postgresql_upgrade_database Homebrew @@ -22748,7 +22756,7 @@

    Method List

  • -
  • +
  • postgresql_upgrade_database_args Homebrew @@ -22756,7 +22764,7 @@

    Method List

  • -
  • +
  • postinstall Homebrew @@ -22764,7 +22772,7 @@

    Method List

  • -
  • +
  • postinstall_args Homebrew @@ -22772,7 +22780,7 @@

    Method List

  • -
  • +
  • #potential_formula_dirs Tap @@ -22780,7 +22788,7 @@

    Method List

  • -
  • +
  • #pour FormulaInstaller @@ -22788,7 +22796,7 @@

    Method List

  • -
  • +
  • #pour_bottle? Formula @@ -22796,7 +22804,7 @@

    Method List

  • -
  • +
  • pour_bottle? Formula @@ -22804,7 +22812,7 @@

    Method List

  • -
  • +
  • #pour_bottle? FormulaInstaller @@ -22812,7 +22820,7 @@

    Method List

  • -
  • +
  • #poured_from_bottle Tab @@ -22820,7 +22828,7 @@

    Method List

  • -
  • +
  • ppc32? Hardware::CPU @@ -22828,7 +22836,7 @@

    Method List

  • -
  • +
  • ppc64? Hardware::CPU @@ -22836,7 +22844,7 @@

    Method List

  • -
  • +
  • #ppc64? MachOShim @@ -22844,7 +22852,7 @@

    Method List

  • -
  • +
  • ppc64le? Hardware::CPU @@ -22852,7 +22860,7 @@

    Method List

  • -
  • +
  • #ppc7400? MachOShim @@ -22860,7 +22868,7 @@

    Method List

  • -
  • +
  • ppc? Hardware::CPU @@ -22868,7 +22876,7 @@

    Method List

  • -
  • +
  • pr_automerge Homebrew @@ -22876,7 +22884,7 @@

    Method List

  • -
  • +
  • pr_automerge_args Homebrew @@ -22884,7 +22892,7 @@

    Method List

  • -
  • +
  • pr_check_conflicts Homebrew @@ -22892,7 +22900,7 @@

    Method List

  • -
  • +
  • pr_publish Homebrew @@ -22900,7 +22908,7 @@

    Method List

  • -
  • +
  • pr_publish_args Homebrew @@ -22908,7 +22916,7 @@

    Method List

  • -
  • +
  • pr_pull Homebrew @@ -22916,7 +22924,7 @@

    Method List

  • -
  • +
  • pr_pull_args Homebrew @@ -22924,7 +22932,7 @@

    Method List

  • -
  • +
  • pr_upload Homebrew @@ -22932,7 +22940,7 @@

    Method List

  • -
  • +
  • pr_upload_args Homebrew @@ -22940,7 +22948,7 @@

    Method List

  • -
  • +
  • preferred Utils::Shell @@ -22948,7 +22956,7 @@

    Method List

  • -
  • +
  • preferred_gcc CompilerSelector @@ -22956,7 +22964,7 @@

    Method List

  • -
  • +
  • #preferred_header_str RuboCop::Cask::AST::CaskHeader @@ -22964,7 +22972,7 @@

    Method List

  • -
  • +
  • preferred_path Utils::Shell @@ -22972,7 +22980,7 @@

    Method List

  • -
  • +
  • preferred_perl_version OS::Mac @@ -22980,7 +22988,7 @@

    Method List

  • -
  • +
  • #preferred_shell Kernel @@ -22988,7 +22996,7 @@

    Method List

  • -
  • +
  • #prefix Formula @@ -22996,7 +23004,7 @@

    Method List

  • -
  • +
  • prefix OS::Mac::Xcode @@ -23004,7 +23012,7 @@

    Method List

  • -
  • +
  • #prefix_linked? Formula @@ -23012,7 +23020,7 @@

    Method List

  • -
  • +
  • #prelude FormulaInstaller @@ -23020,7 +23028,7 @@

    Method List

  • -
  • +
  • #prepare_codesign_writable_files Keg @@ -23028,7 +23036,7 @@

    Method List

  • -
  • +
  • #prepare_debug_symbols Keg @@ -23036,7 +23044,7 @@

    Method List

  • -
  • +
  • #prepare_patches Resource @@ -23044,7 +23052,7 @@

    Method List

  • -
  • +
  • #prepare_relocation_to_locations Keg @@ -23052,7 +23060,7 @@

    Method List

  • -
  • +
  • #prepare_relocation_to_placeholders Keg @@ -23060,7 +23068,7 @@

    Method List

  • -
  • +
  • #prepend PATH @@ -23068,7 +23076,7 @@

    Method List

  • -
  • +
  • #prepend SharedEnvExtension @@ -23076,7 +23084,7 @@

    Method List

  • -
  • +
  • #prepend_create_path SharedEnvExtension @@ -23084,7 +23092,7 @@

    Method List

  • -
  • +
  • #prepend_path SharedEnvExtension @@ -23092,7 +23100,7 @@

    Method List

  • -
  • +
  • prepend_path_in_profile Utils::Shell @@ -23100,7 +23108,7 @@

    Method List

  • -
  • +
  • preprocess_url Homebrew::Livecheck @@ -23108,7 +23116,7 @@

    Method List

  • -
  • +
  • #prerelease? MacOSVersion @@ -23116,7 +23124,7 @@

    Method List

  • -
  • +
  • #pretty_duration Kernel @@ -23124,7 +23132,7 @@

    Method List

  • -
  • +
  • #pretty_installed Kernel @@ -23132,7 +23140,7 @@

    Method List

  • -
  • +
  • #pretty_name MacOSVersion @@ -23140,7 +23148,7 @@

    Method List

  • -
  • +
  • #pretty_outdated Kernel @@ -23148,7 +23156,7 @@

    Method List

  • -
  • +
  • #pretty_ratelimit_reset GitHub::API::RateLimitExceededError @@ -23156,7 +23164,7 @@

    Method List

  • -
  • +
  • #pretty_uninstalled Kernel @@ -23164,7 +23172,7 @@

    Method List

  • -
  • +
  • #previously_fetched_formula FormulaInstaller @@ -23172,7 +23180,7 @@

    Method List

  • -
  • +
  • #primary_container Cask::Installer @@ -23180,7 +23188,7 @@

    Method List

  • -
  • +
  • #print Descriptions @@ -23188,7 +23196,7 @@

    Method List

  • -
  • +
  • print_analytics Homebrew @@ -23196,7 +23204,7 @@

    Method List

  • -
  • +
  • print_backtrace_message Utils::Backtrace @@ -23204,7 +23212,7 @@

    Method List

  • -
  • +
  • print_cask_cache Homebrew @@ -23212,7 +23220,7 @@

    Method List

  • -
  • +
  • #print_dir PrettyListing @@ -23220,7 +23228,7 @@

    Method List

  • -
  • +
  • print_dry_run_dependencies Homebrew::Install @@ -23228,7 +23236,7 @@

    Method List

  • -
  • +
  • print_formula_cache Homebrew @@ -23236,7 +23244,7 @@

    Method List

  • -
  • +
  • print_info Homebrew @@ -23244,7 +23252,7 @@

    Method List

  • -
  • +
  • print_json Homebrew @@ -23252,7 +23260,7 @@

    Method List

  • -
  • +
  • print_latest_version Homebrew::Livecheck @@ -23260,7 +23268,7 @@

    Method List

  • -
  • +
  • print_missing_formula_help Homebrew @@ -23268,7 +23276,7 @@

    Method List

  • -
  • +
  • print_outdated Homebrew @@ -23276,7 +23284,7 @@

    Method List

  • -
  • +
  • print_problems Homebrew @@ -23284,7 +23292,7 @@

    Method List

  • -
  • +
  • print_pull_requests_matching GitHub @@ -23292,7 +23300,7 @@

    Method List

  • -
  • +
  • print_regex_help Homebrew @@ -23300,7 +23308,7 @@

    Method List

  • -
  • +
  • #print_remaining_files PrettyListing @@ -23308,7 +23316,7 @@

    Method List

  • -
  • +
  • print_resources_info Homebrew::Livecheck @@ -23316,7 +23324,7 @@

    Method List

  • -
  • +
  • print_results Homebrew @@ -23324,7 +23332,7 @@

    Method List

  • -
  • +
  • print_skip_information Homebrew::Livecheck::SkipConditions @@ -23332,7 +23340,7 @@

    Method List

  • -
  • +
  • print_statistics Homebrew @@ -23340,7 +23348,7 @@

    Method List

  • -
  • +
  • print_tap_info Homebrew @@ -23348,7 +23356,7 @@

    Method List

  • -
  • +
  • print_tap_json Homebrew @@ -23356,7 +23364,7 @@

    Method List

  • -
  • +
  • print_upgrade_message Homebrew::Upgrade @@ -23364,7 +23372,7 @@

    Method List

  • -
  • +
  • #private? Tap @@ -23372,7 +23380,7 @@

    Method List

  • -
  • +
  • private_repo? GitHub @@ -23380,7 +23388,7 @@

    Method List

  • -
  • +
  • #problem Homebrew::TapAuditor @@ -23388,7 +23396,7 @@

    Method List

  • -
  • +
  • #problem Homebrew::ResourceAuditor @@ -23396,7 +23404,7 @@

    Method List

  • -
  • +
  • #problem RuboCop::Cop::HelperFunctions @@ -23404,7 +23412,7 @@

    Method List

  • -
  • +
  • #problem_if_output Homebrew::FormulaAuditor @@ -23412,7 +23420,7 @@

    Method List

  • -
  • +
  • #problem_if_output FormulaInstaller @@ -23420,7 +23428,7 @@

    Method List

  • -
  • +
  • #problem_if_output FormulaCellarChecks @@ -23428,7 +23436,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::TapAuditor @@ -23436,7 +23444,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::FormulaAuditor @@ -23444,7 +23452,7 @@

    Method List

  • -
  • +
  • #problems Homebrew::ResourceAuditor @@ -23452,7 +23460,7 @@

    Method List

  • -
  • +
  • process_source Utils::AST @@ -23460,7 +23468,7 @@

    Method List

  • -
  • +
  • process_spec Version::RegexParser @@ -23468,7 +23476,7 @@

    Method List

  • -
  • +
  • process_spec Version::UrlParser @@ -23476,7 +23484,7 @@

    Method List

  • -
  • +
  • process_spec Version::StemParser @@ -23484,7 +23492,7 @@

    Method List

  • -
  • +
  • #process_type Homebrew::Service @@ -23492,7 +23500,7 @@

    Method List

  • -
  • +
  • #processed_options Homebrew::CLI::Parser @@ -23500,7 +23508,7 @@

    Method List

  • -
  • +
  • prof Homebrew @@ -23508,7 +23516,7 @@

    Method List

  • -
  • +
  • prof_args Homebrew @@ -23516,7 +23524,7 @@

    Method List

  • -
  • +
  • profile Utils::Shell @@ -23524,7 +23532,7 @@

    Method List

  • -
  • +
  • #prompt Debrew::Menu @@ -23532,7 +23540,7 @@

    Method List

  • -
  • +
  • propagate Cask::Quarantine @@ -23540,7 +23548,7 @@

    Method List

  • -
  • +
  • #provided_by_macos? KegOnlyReason @@ -23548,7 +23556,7 @@

    Method List

  • -
  • +
  • provides_sdk? OS::Mac::CLT @@ -23556,7 +23564,7 @@

    Method List

  • -
  • +
  • prune Dependency @@ -23564,7 +23572,7 @@

    Method List

  • -
  • +
  • prune Requirement @@ -23572,7 +23580,7 @@

    Method List

  • -
  • +
  • prune? Homebrew::Cleanup @@ -23580,7 +23588,7 @@

    Method List

  • -
  • +
  • prune? Requirement @@ -23588,7 +23596,7 @@

    Method List

  • -
  • +
  • #prune_from_option? Dependable @@ -23596,7 +23604,7 @@

    Method List

  • -
  • +
  • #prune_if_build_and_not_dependent? Dependable @@ -23604,7 +23612,7 @@

    Method List

  • -
  • +
  • #prune_prefix_symlinks_and_directories Homebrew::Cleanup @@ -23612,7 +23620,7 @@

    Method List

  • -
  • +
  • #pub_date Homebrew::Livecheck::Strategy::Sparkle::Item @@ -23620,7 +23628,7 @@

    Method List

  • -
  • +
  • public_member_usernames GitHub @@ -23628,7 +23636,7 @@

    Method List

  • -
  • +
  • pull_request_commits GitHub @@ -23636,7 +23644,7 @@

    Method List

  • -
  • +
  • pull_request_labels GitHub @@ -23644,7 +23652,7 @@

    Method List

  • -
  • +
  • pull_request_title_regex GitHub @@ -23652,7 +23660,7 @@

    Method List

  • -
  • +
  • pull_requests GitHub @@ -23660,7 +23668,7 @@

    Method List

  • -
  • +
  • #purge_backed_up_versioned_files Cask::Installer @@ -23668,7 +23676,7 @@

    Method List

  • -
  • +
  • #purge_caskroom_path Cask::Installer @@ -23676,7 +23684,7 @@

    Method List

  • -
  • +
  • #purge_versioned_files Cask::Installer @@ -23684,7 +23692,7 @@

    Method List

  • -
  • +
  • #puts Cask::DSL::Caveats @@ -23692,7 +23700,7 @@

    Method List

  • -
  • +
  • puts_deps Homebrew @@ -23700,7 +23708,7 @@

    Method List

  • -
  • +
  • puts_deps_tree Homebrew @@ -23708,7 +23716,7 @@

    Method List

  • -
  • +
  • puts_keg_only_path_message Homebrew @@ -23716,7 +23724,7 @@

    Method List

  • -
  • +
  • puts_no_install_cleanup_disable_message Homebrew::Cleanup @@ -23724,7 +23732,7 @@

    Method List

  • -
  • +
  • puts_no_install_cleanup_disable_message_if_not_already! Homebrew::Cleanup @@ -23732,7 +23740,7 @@

    Method List

  • -
  • +
  • puts_no_installed_dependents_check_disable_message_if_not_already! Homebrew::Upgrade @@ -23740,7 +23748,7 @@

    Method List

  • -
  • +
  • puts_options Homebrew @@ -23748,7 +23756,7 @@

    Method List

  • -
  • +
  • pyenv_sync Homebrew @@ -23756,7 +23764,7 @@

    Method List

  • -
  • +
  • pyenv_sync_args Homebrew @@ -23764,7 +23772,7 @@

    Method List

  • -
  • +
  • #pypi_formula_mappings Tap @@ -23772,7 +23780,7 @@

    Method List

  • -
  • +
  • #pypi_info PyPI::Package @@ -23780,7 +23788,7 @@

    Method List

  • -
  • +
  • #python_names Language::Python::Virtualenv @@ -23788,7 +23796,7 @@

    Method List

  • -
  • +
  • #python_pth_files_installed? Keg @@ -23796,7 +23804,7 @@

    Method List

  • -
  • +
  • #python_site_packages_installed? Keg @@ -23804,7 +23812,7 @@

    Method List

  • -
  • +
  • #qlplugins Homebrew::UnversionedCaskChecker @@ -23812,7 +23820,7 @@

    Method List

  • -
  • +
  • query_api Repology @@ -23820,7 +23828,7 @@

    Method List

  • -
  • +
  • query_regexp Homebrew::Search @@ -23828,7 +23836,7 @@

    Method List

  • -
  • +
  • #quiet! Mktemp @@ -23836,7 +23844,7 @@

    Method List

  • -
  • +
  • #quiet! AbstractDownloadStrategy @@ -23844,7 +23852,7 @@

    Method List

  • -
  • +
  • #quiet? Context::ContextStruct @@ -23852,7 +23860,7 @@

    Method List

  • -
  • +
  • #quiet? Context @@ -23860,7 +23868,7 @@

    Method List

  • -
  • +
  • #quiet? AbstractDownloadStrategy @@ -23868,7 +23876,7 @@

    Method List

  • -
  • +
  • #quiet_system Kernel @@ -23876,7 +23884,7 @@

    Method List

  • -
  • +
  • #quote_dep Homebrew::FormulaAuditor @@ -23884,7 +23892,7 @@

    Method List

  • -
  • +
  • #rack Keg @@ -23892,7 +23900,7 @@

    Method List

  • -
  • +
  • raise_deprecation_exceptions? Homebrew @@ -23900,7 +23908,7 @@

    Method List

  • -
  • +
  • raise_error GitHub::API @@ -23908,7 +23916,7 @@

    Method List

  • -
  • +
  • raise_with_message! Homebrew @@ -23916,7 +23924,7 @@

    Method List

  • -
  • +
  • #raw_version Cask::DSL::Version @@ -23924,7 +23932,7 @@

    Method List

  • -
  • +
  • rbenv_sync Homebrew @@ -23932,7 +23940,7 @@

    Method List

  • -
  • +
  • rbenv_sync_args Homebrew @@ -23940,7 +23948,7 @@

    Method List

  • -
  • +
  • read Homebrew::Settings @@ -23948,7 +23956,7 @@

    Method List

  • -
  • +
  • read_script_arguments Cask::Artifact::AbstractArtifact @@ -23956,7 +23964,7 @@

    Method List

  • -
  • +
  • #read_uint16 ELFShim @@ -23964,7 +23972,7 @@

    Method List

  • -
  • +
  • #read_uint8 ELFShim @@ -23972,7 +23980,7 @@

    Method List

  • -
  • +
  • readall Homebrew @@ -23980,7 +23988,7 @@

    Method List

  • -
  • +
  • readall_args Homebrew @@ -23988,7 +23996,7 @@

    Method List

  • -
  • +
  • #readline_nonblock IO @@ -23996,7 +24004,7 @@

    Method List

  • -
  • +
  • reads_brewed_pth_files? Language::Python @@ -24004,7 +24012,7 @@

    Method List

  • -
  • +
  • #reason UsageError @@ -24012,7 +24020,7 @@

    Method List

  • -
  • +
  • reason Cask::Denylist @@ -24020,7 +24028,7 @@

    Method List

  • -
  • +
  • #reason PourBottleCheck @@ -24028,7 +24036,7 @@

    Method List

  • -
  • +
  • #reason Cask::AbstractCaskErrorWithToken @@ -24036,7 +24044,7 @@

    Method List

  • -
  • +
  • #reason Cask::CaskQuarantineError @@ -24044,7 +24052,7 @@

    Method List

  • -
  • +
  • #reason FormulaConflict @@ -24052,7 +24060,7 @@

    Method List

  • -
  • +
  • #reason KegOnlyReason @@ -24060,7 +24068,7 @@

    Method List

  • -
  • +
  • reason Homebrew::MissingFormula @@ -24068,7 +24076,7 @@

    Method List

  • -
  • +
  • #rebuild Bottle::Filename @@ -24076,7 +24084,7 @@

    Method List

  • -
  • +
  • #rebuild Bottle @@ -24084,7 +24092,7 @@

    Method List

  • -
  • +
  • rebuild_commands_completion_list Commands @@ -24092,7 +24100,7 @@

    Method List

  • -
  • +
  • rebuild_internal_commands_completion_list Commands @@ -24100,7 +24108,7 @@

    Method List

  • -
  • +
  • receipt_path Utils::Bottles @@ -24108,7 +24116,7 @@

    Method List

  • -
  • +
  • #recommended Dependencies @@ -24116,7 +24124,7 @@

    Method List

  • -
  • +
  • #recommended? Dependable @@ -24124,7 +24132,7 @@

    Method List

  • -
  • +
  • #record_caveats Messages @@ -24132,7 +24140,7 @@

    Method List

  • -
  • +
  • #record_log Sandbox @@ -24140,7 +24148,7 @@

    Method List

  • -
  • +
  • #recursive_dependencies SoftwareSpec @@ -24148,7 +24156,7 @@

    Method List

  • -
  • +
  • #recursive_dependencies CaskDependent @@ -24156,7 +24164,7 @@

    Method List

  • -
  • +
  • recursive_deps_tree Homebrew @@ -24164,7 +24172,7 @@

    Method List

  • -
  • +
  • #recursive_fgrep_args Keg @@ -24172,7 +24180,7 @@

    Method List

  • -
  • +
  • #recursive_includes DependenciesHelpers @@ -24180,7 +24188,7 @@

    Method List

  • -
  • +
  • #recursive_requirements SoftwareSpec @@ -24188,7 +24196,7 @@

    Method List

  • -
  • +
  • #recursive_requirements CaskDependent @@ -24196,7 +24204,7 @@

    Method List

  • -
  • +
  • #redact_secrets Kernel @@ -24204,7 +24212,7 @@

    Method List

  • -
  • +
  • #redirect_stdout Kernel @@ -24212,7 +24220,7 @@

    Method List

  • -
  • +
  • referenced_skip_information Homebrew::Livecheck::SkipConditions @@ -24220,7 +24228,7 @@

    Method List

  • -
  • +
  • #referer Cask::URL::DSL @@ -24228,7 +24236,7 @@

    Method List

  • -
  • +
  • #refresh Cask::Cask @@ -24236,7 +24244,7 @@

    Method List

  • -
  • +
  • regenerate_man_pages Homebrew::Manpages @@ -24244,7 +24252,7 @@

    Method List

  • -
  • +
  • #regex Livecheck @@ -24252,7 +24260,7 @@

    Method List

  • -
  • +
  • #regex Utils::Shebang::RewriteInfo @@ -24260,7 +24268,7 @@

    Method List

  • -
  • +
  • #regex_match_group RuboCop::Cop::HelperFunctions @@ -24268,7 +24276,7 @@

    Method List

  • -
  • +
  • #region Locale @@ -24276,7 +24284,7 @@

    Method List

  • -
  • +
  • reinstall Homebrew @@ -24284,7 +24292,7 @@

    Method List

  • -
  • +
  • reinstall_args Homebrew @@ -24292,7 +24300,7 @@

    Method List

  • -
  • +
  • reinstall_casks Cask::Reinstall @@ -24300,7 +24308,7 @@

    Method List

  • -
  • +
  • reinstall_formula Homebrew @@ -24308,7 +24316,7 @@

    Method List

  • -
  • +
  • #reject PATH @@ -24316,7 +24324,7 @@

    Method List

  • -
  • +
  • #relative_cask_path Tap @@ -24324,7 +24332,7 @@

    Method List

  • -
  • +
  • release Homebrew @@ -24332,7 +24340,7 @@

    Method List

  • -
  • +
  • release! Cask::Quarantine @@ -24340,7 +24348,7 @@

    Method List

  • -
  • +
  • release_args Homebrew @@ -24348,7 +24356,7 @@

    Method List

  • -
  • +
  • #release_notes_link Homebrew::Livecheck::Strategy::Sparkle::Item @@ -24356,7 +24364,7 @@

    Method List

  • -
  • +
  • #relevant? GitHub::Actions::Annotation @@ -24364,7 +24372,7 @@

    Method List

  • -
  • +
  • #relocate_build_prefix Keg @@ -24372,7 +24380,7 @@

    Method List

  • -
  • +
  • #relocate_dynamic_linkage Keg @@ -24380,7 +24388,7 @@

    Method List

  • -
  • +
  • #relocated_name_for Keg @@ -24388,7 +24396,7 @@

    Method List

  • -
  • +
  • remap_deprecated_options Tab @@ -24396,7 +24404,7 @@

    Method List

  • -
  • +
  • #remote Tap @@ -24404,7 +24412,7 @@

    Method List

  • -
  • +
  • #remote CoreTap @@ -24412,7 +24420,7 @@

    Method List

  • -
  • +
  • remote_exists? Utils::Git @@ -24420,7 +24428,7 @@

    Method List

  • -
  • +
  • remote_exists? Utils::Svn @@ -24428,7 +24436,7 @@

    Method List

  • -
  • +
  • #remote_repo Tap @@ -24436,7 +24444,7 @@

    Method List

  • -
  • +
  • #remove SharedEnvExtension @@ -24444,7 +24452,7 @@

    Method List

  • -
  • +
  • #remove_cc_etc SharedEnvExtension @@ -24452,7 +24460,7 @@

    Method List

  • -
  • +
  • #remove_config_file Cask::Installer @@ -24460,7 +24468,7 @@

    Method List

  • -
  • +
  • #remove_conflicts Migrator @@ -24468,7 +24476,7 @@

    Method List

  • -
  • +
  • #remove_download_sha Cask::Installer @@ -24476,7 +24484,7 @@

    Method List

  • -
  • +
  • #remove_from_cflags SharedEnvExtension @@ -24484,7 +24492,7 @@

    Method List

  • -
  • +
  • #remove_linked_keg_record Keg @@ -24492,7 +24500,7 @@

    Method List

  • -
  • +
  • #remove_macosxsdk Stdenv @@ -24500,7 +24508,7 @@

    Method List

  • -
  • +
  • #remove_make_var! StringInreplaceExtension @@ -24508,7 +24516,7 @@

    Method List

  • -
  • +
  • #remove_old_aliases Keg @@ -24516,7 +24524,7 @@

    Method List

  • -
  • +
  • #remove_oldname_opt_records Keg @@ -24524,7 +24532,7 @@

    Method List

  • -
  • +
  • #remove_opt_record Keg @@ -24532,7 +24540,7 @@

    Method List

  • -
  • +
  • #remove_stanza Utils::AST::FormulaAST @@ -24540,7 +24548,7 @@

    Method List

  • -
  • +
  • #rename_branch GitRepository @@ -24548,7 +24556,7 @@

    Method List

  • -
  • +
  • #reorder_components RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -24556,7 +24564,7 @@

    Method List

  • -
  • +
  • #repin Migrator @@ -24564,7 +24572,7 @@

    Method List

  • -
  • +
  • #replace_bottle_block Utils::AST::FormulaAST @@ -24572,7 +24580,7 @@

    Method List

  • -
  • +
  • replace_caskfile_token Cask::Migrator @@ -24580,7 +24588,7 @@

    Method List

  • -
  • +
  • #replace_locations_with_placeholders Keg @@ -24588,7 +24596,7 @@

    Method List

  • -
  • +
  • replace_placeholders Homebrew::Service @@ -24596,7 +24604,7 @@

    Method List

  • -
  • +
  • #replace_placeholders_with_locations Keg @@ -24604,7 +24612,7 @@

    Method List

  • -
  • +
  • #replace_stanza Utils::AST::FormulaAST @@ -24612,7 +24620,7 @@

    Method List

  • -
  • +
  • #replace_text Keg::Relocation @@ -24620,7 +24628,7 @@

    Method List

  • -
  • +
  • #replace_text_in_files Keg @@ -24628,7 +24636,7 @@

    Method List

  • -
  • +
  • replace_version_and_checksum Homebrew @@ -24636,7 +24644,7 @@

    Method List

  • -
  • +
  • #replacement Utils::Shebang::RewriteInfo @@ -24644,7 +24652,7 @@

    Method List

  • -
  • +
  • #replacement_pair_for Keg::Relocation @@ -24652,7 +24660,7 @@

    Method List

  • -
  • +
  • #repo Tap @@ -24660,7 +24668,7 @@

    Method List

  • -
  • +
  • #repo TapFormulaUnavailableError @@ -24668,7 +24676,7 @@

    Method List

  • -
  • +
  • repo_commits_for_user GitHub @@ -24676,7 +24684,7 @@

    Method List

  • -
  • +
  • repo_info Cask::Info @@ -24684,7 +24692,7 @@

    Method List

  • -
  • +
  • #repo_valid? FossilDownloadStrategy @@ -24692,7 +24700,7 @@

    Method List

  • -
  • +
  • #repo_var Tap @@ -24700,7 +24708,7 @@

    Method List

  • -
  • +
  • repo_without_prefix GitHubPackages @@ -24708,7 +24716,7 @@

    Method List

  • -
  • +
  • #repology_latest Homebrew::VersionBumpInfo @@ -24716,7 +24724,7 @@

    Method List

  • -
  • +
  • #report Reporter @@ -24724,7 +24732,7 @@

    Method List

  • -
  • +
  • report_build_error Utils::Analytics @@ -24732,7 +24740,7 @@

    Method List

  • -
  • +
  • report_event Utils::Analytics @@ -24740,7 +24748,7 @@

    Method List

  • -
  • +
  • report_influx Utils::Analytics @@ -24748,7 +24756,7 @@

    Method List

  • -
  • +
  • report_influx_error Utils::Analytics @@ -24756,7 +24764,7 @@

    Method List

  • -
  • +
  • report_influx_event Utils::Analytics @@ -24764,7 +24772,7 @@

    Method List

  • -
  • +
  • #reporters ReporterHub @@ -24772,7 +24780,7 @@

    Method List

  • -
  • +
  • repository GitHub @@ -24780,7 +24788,7 @@

    Method List

  • -
  • +
  • #repository BottleSpecification @@ -24788,7 +24796,7 @@

    Method List

  • -
  • +
  • reproducible_gnutar_args Homebrew @@ -24796,7 +24804,7 @@

    Method List

  • -
  • +
  • #reqs Build @@ -24804,7 +24812,7 @@

    Method List

  • -
  • +
  • #reqs Homebrew::Uninstall::DependentsMessage @@ -24812,7 +24820,7 @@

    Method List

  • -
  • +
  • #require? Kernel @@ -24820,7 +24828,7 @@

    Method List

  • -
  • +
  • #require_relocation? Keg @@ -24828,7 +24836,7 @@

    Method List

  • -
  • +
  • #require_root Homebrew::Service @@ -24836,7 +24844,7 @@

    Method List

  • -
  • +
  • #required Dependencies @@ -24844,7 +24852,7 @@

    Method List

  • -
  • +
  • #required? Dependable @@ -24852,7 +24860,7 @@

    Method List

  • -
  • +
  • #requirements SoftwareSpec @@ -24860,7 +24868,7 @@

    Method List

  • -
  • +
  • #requirements CaskDependent @@ -24868,7 +24876,7 @@

    Method List

  • -
  • +
  • #requirements DependencyCollector @@ -24876,7 +24884,7 @@

    Method List

  • -
  • +
  • #requires_nehalem_cpu? MacOSVersion @@ -24884,7 +24892,7 @@

    Method List

  • -
  • +
  • #requires_root? Homebrew::Service @@ -24892,7 +24900,7 @@

    Method List

  • -
  • +
  • #reset Superenv @@ -24900,7 +24908,7 @@

    Method List

  • -
  • +
  • reset_escape_sequence! Tty @@ -24908,7 +24916,7 @@

    Method List

  • -
  • +
  • resolve Formulary @@ -24916,7 +24924,7 @@

    Method List

  • -
  • +
  • resolve_formula_names Utils::Bottles @@ -24924,7 +24932,7 @@

    Method List

  • -
  • +
  • resolve_livecheck_reference Homebrew::Livecheck @@ -24932,7 +24940,7 @@

    Method List

  • -
  • +
  • #resolve_rpath MachOShim @@ -24940,7 +24948,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Manpage @@ -24948,7 +24956,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Artifact @@ -24956,7 +24964,7 @@

    Method List

  • -
  • +
  • #resolve_target Cask::Artifact::Relocated @@ -24964,7 +24972,7 @@

    Method List

  • -
  • +
  • #resolve_variable_name MachOShim @@ -24972,7 +24980,7 @@

    Method List

  • -
  • +
  • resolve_version Utils::Bottles @@ -24980,7 +24988,7 @@

    Method List

  • -
  • +
  • #resolved_time_file_size CurlDownloadStrategy @@ -24988,7 +24996,7 @@

    Method List

  • -
  • +
  • #resource ExternalPatch @@ -24996,7 +25004,7 @@

    Method List

  • -
  • +
  • #resource Formula @@ -25004,7 +25012,7 @@

    Method List

  • -
  • +
  • resource Formula @@ -25012,7 +25020,7 @@

    Method List

  • -
  • +
  • #resource Resource::Partial @@ -25020,7 +25028,7 @@

    Method List

  • -
  • +
  • #resource ResourceStageContext @@ -25028,7 +25036,7 @@

    Method List

  • -
  • +
  • #resource SoftwareSpec @@ -25036,7 +25044,7 @@

    Method List

  • -
  • +
  • #resource Bottle @@ -25044,7 +25052,7 @@

    Method List

  • -
  • +
  • #resource_defined? SoftwareSpec @@ -25052,7 +25060,7 @@

    Method List

  • -
  • +
  • resource_version Homebrew::Livecheck @@ -25060,7 +25068,7 @@

    Method List

  • -
  • +
  • #resources Formula @@ -25068,7 +25076,7 @@

    Method List

  • -
  • +
  • #resources SoftwareSpec @@ -25076,7 +25084,7 @@

    Method List

  • -
  • +
  • #respond_to? Version @@ -25084,7 +25092,7 @@

    Method List

  • -
  • +
  • #respond_to_missing? Cask::DSL @@ -25092,7 +25100,7 @@

    Method List

  • -
  • +
  • #respond_to_missing? Cask::URL::BlockDSL @@ -25100,7 +25108,7 @@

    Method List

  • -
  • +
  • #restart_delay Homebrew::Service @@ -25108,7 +25116,7 @@

    Method List

  • -
  • +
  • restore_backup Homebrew @@ -25116,7 +25124,7 @@

    Method List

  • -
  • +
  • #restore_backup Cask::Installer @@ -25124,7 +25132,7 @@

    Method List

  • -
  • +
  • #result Cask::Audit @@ -25132,7 +25140,7 @@

    Method List

  • -
  • +
  • #retain! Mktemp @@ -25140,7 +25148,7 @@

    Method List

  • -
  • +
  • #retain? Mktemp @@ -25148,7 +25156,7 @@

    Method List

  • -
  • +
  • #retain_in_cache? Mktemp @@ -25156,7 +25164,7 @@

    Method List

  • -
  • +
  • retrieve_and_display_info_and_open_pr Homebrew @@ -25164,7 +25172,7 @@

    Method List

  • -
  • +
  • retrieve_pull_requests Homebrew @@ -25172,7 +25180,7 @@

    Method List

  • -
  • +
  • retrieve_versions_by_arch Homebrew @@ -25180,7 +25188,7 @@

    Method List

  • -
  • +
  • retry_fetch? Homebrew @@ -25188,7 +25196,7 @@

    Method List

  • -
  • +
  • retry_test? Homebrew @@ -25196,7 +25204,7 @@

    Method List

  • -
  • +
  • #rev Version::CompositeToken @@ -25204,7 +25212,7 @@

    Method List

  • -
  • +
  • #rev_list FormulaVersions @@ -25212,7 +25220,7 @@

    Method List

  • -
  • +
  • #reverse_line_number Homebrew::FormulaTextAuditor @@ -25220,7 +25228,7 @@

    Method List

  • -
  • +
  • #revert_upgrade Cask::Installer @@ -25228,7 +25236,7 @@

    Method List

  • -
  • +
  • #revision Formula @@ -25236,7 +25244,7 @@

    Method List

  • -
  • +
  • #revision Cask::URL::DSL @@ -25244,7 +25252,7 @@

    Method List

  • -
  • +
  • #revision PkgVersion @@ -25252,7 +25260,7 @@

    Method List

  • -
  • +
  • #revision FormulaInfo @@ -25260,7 +25268,7 @@

    Method List

  • -
  • +
  • #revisions Cask::URL::DSL @@ -25268,7 +25276,7 @@

    Method List

  • -
  • +
  • reword_package_commit Homebrew @@ -25276,7 +25284,7 @@

    Method List

  • -
  • +
  • rewrite_child_error Utils @@ -25284,7 +25292,7 @@

    Method List

  • -
  • +
  • rewrite_shebang Utils::Shebang @@ -25292,7 +25300,7 @@

    Method List

  • -
  • +
  • #rm_ds_store Homebrew::Cleanup @@ -25300,7 +25308,7 @@

    Method List

  • -
  • +
  • rm_pin Homebrew::Uninstall @@ -25308,7 +25316,7 @@

    Method List

  • -
  • +
  • #root Cask::Pkg @@ -25316,7 +25324,7 @@

    Method List

  • -
  • +
  • #root_dir Homebrew::Service @@ -25324,7 +25332,7 @@

    Method List

  • -
  • +
  • #root_url BottleSpecification @@ -25332,7 +25340,7 @@

    Method List

  • -
  • +
  • root_url GitHubPackages @@ -25340,7 +25348,7 @@

    Method List

  • -
  • +
  • root_url_if_match GitHubPackages @@ -25348,7 +25356,7 @@

    Method List

  • -
  • +
  • #root_url_specs BottleSpecification @@ -25356,7 +25364,7 @@

    Method List

  • -
  • +
  • #rpath Formula @@ -25364,7 +25372,7 @@

    Method List

  • -
  • +
  • #rpath ELFShim @@ -25372,7 +25380,7 @@

    Method List

  • -
  • +
  • #rpath_using_patchelf_rb ELFShim @@ -25380,7 +25388,7 @@

    Method List

  • -
  • +
  • #rpaths MachOShim @@ -25388,7 +25396,7 @@

    Method List

  • -
  • +
  • #rpaths ELFShim @@ -25396,7 +25404,7 @@

    Method List

  • -
  • +
  • #rpaths Pathname @@ -25404,7 +25412,7 @@

    Method List

  • -
  • +
  • ruby Homebrew @@ -25412,7 +25420,7 @@

    Method List

  • -
  • +
  • ruby_args Homebrew @@ -25420,7 +25428,7 @@

    Method List

  • -
  • +
  • ruby_bindir Homebrew @@ -25428,7 +25436,7 @@

    Method List

  • -
  • +
  • #ruby_source_checksum Cask::Cask @@ -25436,7 +25444,7 @@

    Method List

  • -
  • +
  • #ruby_source_path Cask::Cask @@ -25444,7 +25452,7 @@

    Method List

  • -
  • +
  • #run Mktemp @@ -25452,7 +25460,7 @@

    Method List

  • -
  • +
  • #run Homebrew::Service @@ -25460,7 +25468,7 @@

    Method List

  • -
  • +
  • run SystemCommand @@ -25468,7 +25476,7 @@

    Method List

  • -
  • +
  • #run! Cask::Audit @@ -25476,7 +25484,7 @@

    Method List

  • -
  • +
  • run! SystemCommand @@ -25484,7 +25492,7 @@

    Method List

  • -
  • +
  • #run! SystemCommand @@ -25492,7 +25500,7 @@

    Method List

  • -
  • +
  • #run_at_load Homebrew::Service @@ -25500,7 +25508,7 @@

    Method List

  • -
  • +
  • run_audit Homebrew @@ -25508,7 +25516,7 @@

    Method List

  • -
  • +
  • run_buildpulse Homebrew @@ -25516,7 +25524,7 @@

    Method List

  • -
  • +
  • run_cask_audit Homebrew @@ -25524,7 +25532,7 @@

    Method List

  • -
  • +
  • run_cask_style Homebrew @@ -25532,7 +25540,7 @@

    Method List

  • -
  • +
  • run_checks Homebrew::Livecheck @@ -25540,7 +25548,7 @@

    Method List

  • -
  • +
  • run_rubocop Homebrew::Style @@ -25548,7 +25556,7 @@

    Method List

  • -
  • +
  • run_shellcheck Homebrew::Style @@ -25556,7 +25564,7 @@

    Method List

  • -
  • +
  • run_shfmt Homebrew::Style @@ -25564,7 +25572,7 @@

    Method List

  • -
  • +
  • #run_type Homebrew::Service @@ -25572,7 +25580,7 @@

    Method List

  • -
  • +
  • #runner LinuxRunnerSpec @@ -25580,7 +25588,7 @@

    Method List

  • -
  • +
  • #runner MacOSRunnerSpec @@ -25588,7 +25596,7 @@

    Method List

  • -
  • +
  • #runners GitHubRunnerMatrix @@ -25596,7 +25604,7 @@

    Method List

  • -
  • +
  • running? Utils::Service @@ -25604,7 +25612,7 @@

    Method List

  • -
  • +
  • running_as_root? Homebrew @@ -25612,7 +25620,7 @@

    Method List

  • -
  • +
  • running_as_root_but_not_owned_by_root? Homebrew @@ -25620,7 +25628,7 @@

    Method List

  • -
  • +
  • #runtime_cpu_detection Superenv @@ -25628,7 +25636,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies Keg @@ -25636,7 +25644,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies Tab @@ -25644,7 +25652,7 @@

    Method List

  • -
  • +
  • #runtime_dependencies CaskDependent @@ -25652,7 +25660,7 @@

    Method List

  • -
  • +
  • runtime_deps_hash Tab @@ -25660,7 +25668,7 @@

    Method List

  • -
  • +
  • #runtime_installed_formula_dependents Formula @@ -25668,7 +25676,7 @@

    Method List

  • -
  • +
  • #runtime_requirements FormulaInstaller @@ -25676,7 +25684,7 @@

    Method List

  • -
  • +
  • rustflags_target_cpu Hardware @@ -25684,7 +25692,7 @@

    Method List

  • -
  • +
  • safe_fork Utils @@ -25692,7 +25700,7 @@

    Method List

  • -
  • +
  • safe_popen_read Utils @@ -25700,7 +25708,7 @@

    Method List

  • -
  • +
  • safe_popen_write Utils @@ -25708,7 +25716,7 @@

    Method List

  • -
  • +
  • #safe_system Kernel @@ -25716,7 +25724,7 @@

    Method List

  • -
  • +
  • #same_group? RuboCop::Cask::AST::Stanza @@ -25724,7 +25732,7 @@

    Method List

  • -
  • +
  • #same_package? PyPI::Package @@ -25732,7 +25740,7 @@

    Method List

  • -
  • +
  • #sanitized_argv_options FormulaInstaller @@ -25740,7 +25748,7 @@

    Method List

  • -
  • +
  • #satisfied? Dependency @@ -25748,7 +25756,7 @@

    Method List

  • -
  • +
  • #satisfied? Requirement @@ -25756,7 +25764,7 @@

    Method List

  • -
  • +
  • #satisfied_result_parent Requirement @@ -25764,7 +25772,7 @@

    Method List

  • -
  • +
  • satisfy Requirement @@ -25772,7 +25780,7 @@

    Method List

  • -
  • +
  • #satisfy PourBottleCheck @@ -25780,7 +25788,7 @@

    Method List

  • -
  • +
  • #satisfy_cask_and_formula_dependencies Cask::Installer @@ -25788,7 +25796,7 @@

    Method List

  • -
  • +
  • #save_caskfile Cask::Installer @@ -25796,7 +25804,7 @@

    Method List

  • -
  • +
  • #save_config_file Cask::Installer @@ -25804,7 +25812,7 @@

    Method List

  • -
  • +
  • #save_download_sha Cask::Installer @@ -25812,7 +25820,7 @@

    Method List

  • -
  • +
  • #save_using_patchelf_rb ELFShim @@ -25820,7 +25828,7 @@

    Method List

  • -
  • +
  • #sbin Formula @@ -25828,7 +25836,7 @@

    Method List

  • -
  • +
  • scan_repositories Homebrew @@ -25836,7 +25844,7 @@

    Method List

  • -
  • +
  • #screen_savers Homebrew::UnversionedCaskChecker @@ -25844,7 +25852,7 @@

    Method List

  • -
  • +
  • #script Locale @@ -25852,7 +25860,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac @@ -25860,7 +25868,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac::Xcode @@ -25868,7 +25876,7 @@

    Method List

  • -
  • +
  • sdk OS::Mac::CLT @@ -25876,7 +25884,7 @@

    Method List

  • -
  • +
  • sdk_for_formula OS::Mac @@ -25884,7 +25892,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac @@ -25892,7 +25900,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac::Xcode @@ -25900,7 +25908,7 @@

    Method List

  • -
  • +
  • sdk_locator OS::Mac::CLT @@ -25908,7 +25916,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac @@ -25916,7 +25924,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac::Xcode @@ -25924,7 +25932,7 @@

    Method List

  • -
  • +
  • sdk_path OS::Mac::CLT @@ -25932,7 +25940,7 @@

    Method List

  • -
  • +
  • sdk_path_if_needed OS::Mac @@ -25940,7 +25948,7 @@

    Method List

  • -
  • +
  • sdk_root_needed? OS::Mac @@ -25948,7 +25956,7 @@

    Method List

  • -
  • +
  • search Homebrew::Search @@ -25956,7 +25964,7 @@

    Method List

  • -
  • +
  • search Homebrew @@ -25964,7 +25972,7 @@

    Method List

  • -
  • +
  • search Descriptions @@ -25972,7 +25980,7 @@

    Method List

  • -
  • +
  • search GitHub @@ -25980,7 +25988,7 @@

    Method List

  • -
  • +
  • search_args Homebrew @@ -25988,7 +25996,7 @@

    Method List

  • -
  • +
  • search_casks Homebrew::Search @@ -25996,7 +26004,7 @@

    Method List

  • -
  • +
  • search_descriptions Homebrew::Search @@ -26004,7 +26012,7 @@

    Method List

  • -
  • +
  • search_formulae Homebrew::Search @@ -26012,7 +26020,7 @@

    Method List

  • -
  • +
  • search_issues GitHub @@ -26020,7 +26028,7 @@

    Method List

  • -
  • +
  • search_names Homebrew::Search @@ -26028,7 +26036,7 @@

    Method List

  • -
  • +
  • search_package_manager Homebrew @@ -26036,7 +26044,7 @@

    Method List

  • -
  • +
  • search_pull_requests Homebrew @@ -26044,7 +26052,7 @@

    Method List

  • -
  • +
  • search_query_string GitHub @@ -26052,7 +26060,7 @@

    Method List

  • -
  • +
  • search_regex Homebrew::Search @@ -26060,7 +26068,7 @@

    Method List

  • -
  • +
  • search_results_count GitHub @@ -26068,7 +26076,7 @@

    Method List

  • -
  • +
  • search_results_items GitHub @@ -26076,7 +26084,7 @@

    Method List

  • -
  • +
  • search_string Homebrew::Search @@ -26084,7 +26092,7 @@

    Method List

  • -
  • +
  • #section Cask::Artifact::Manpage @@ -26092,7 +26100,7 @@

    Method List

  • -
  • +
  • #select PATH @@ -26100,7 +26108,7 @@

    Method List

  • -
  • +
  • #select CacheStoreDatabase @@ -26108,7 +26116,7 @@

    Method List

  • -
  • +
  • #select DescriptionCacheStore @@ -26116,7 +26124,7 @@

    Method List

  • -
  • +
  • select_for CompilerSelector @@ -26124,7 +26132,7 @@

    Method List

  • -
  • +
  • #select_formula_or_cask ReporterHub @@ -26132,7 +26140,7 @@

    Method List

  • -
  • +
  • #select_includes DependenciesHelpers @@ -26140,7 +26148,7 @@

    Method List

  • -
  • +
  • select_outdated Homebrew @@ -26148,7 +26156,7 @@

    Method List

  • -
  • +
  • select_used_dependents Homebrew @@ -26156,7 +26164,7 @@

    Method List

  • -
  • +
  • #sensitive? EnvActivation @@ -26164,7 +26172,7 @@

    Method List

  • -
  • +
  • #sensitive_environment EnvActivation @@ -26172,7 +26180,7 @@

    Method List

  • -
  • +
  • separate_commit_message Homebrew @@ -26180,7 +26188,7 @@

    Method List

  • -
  • +
  • separate_header_package? OS::Mac::CLT @@ -26188,7 +26196,7 @@

    Method List

  • -
  • +
  • #serialize Homebrew::Service @@ -26196,7 +26204,7 @@

    Method List

  • -
  • +
  • #service Formula @@ -26204,7 +26212,7 @@

    Method List

  • -
  • +
  • service Formula @@ -26212,7 +26220,7 @@

    Method List

  • -
  • +
  • #service? Formula @@ -26220,7 +26228,7 @@

    Method List

  • -
  • +
  • service? Formula @@ -26228,7 +26236,7 @@

    Method List

  • -
  • +
  • #service_name Formula @@ -26236,7 +26244,7 @@

    Method List

  • -
  • +
  • #service_name Homebrew::Service @@ -26244,7 +26252,7 @@

    Method List

  • -
  • +
  • #set CacheStoreDatabase @@ -26252,7 +26260,7 @@

    Method List

  • -
  • +
  • #set_debug_symbols Superenv @@ -26260,7 +26268,7 @@

    Method List

  • -
  • +
  • #set_default_options Homebrew::CLI::Parser @@ -26268,7 +26276,7 @@

    Method List

  • -
  • +
  • #set_head_origin_auto GitRepository @@ -26276,7 +26284,7 @@

    Method List

  • -
  • +
  • set_name_email! Utils::Git @@ -26284,7 +26292,7 @@

    Method List

  • -
  • +
  • #set_ownership Cask::Staged @@ -26292,7 +26300,7 @@

    Method List

  • -
  • +
  • #set_permissions Cask::Staged @@ -26300,7 +26308,7 @@

    Method List

  • -
  • +
  • #set_unique_stanza Cask::DSL @@ -26308,7 +26316,7 @@

    Method List

  • -
  • +
  • #set_upstream_branch GitRepository @@ -26316,7 +26324,7 @@

    Method List

  • -
  • +
  • set_variable_in_profile Utils::Shell @@ -26324,7 +26332,7 @@

    Method List

  • -
  • +
  • setup_arch_methods OnSystem @@ -26332,7 +26340,7 @@

    Method List

  • -
  • +
  • setup_base_os_methods OnSystem @@ -26340,7 +26348,7 @@

    Method List

  • -
  • +
  • setup_environment! Homebrew @@ -26348,7 +26356,7 @@

    Method List

  • -
  • +
  • setup_gem_environment! Homebrew @@ -26356,7 +26364,7 @@

    Method List

  • -
  • +
  • setup_gpg! Utils::Git @@ -26364,7 +26372,7 @@

    Method List

  • -
  • +
  • setup_install_args Language::Python @@ -26372,7 +26380,7 @@

    Method List

  • -
  • +
  • setup_macos_methods OnSystem @@ -26380,7 +26388,7 @@

    Method List

  • -
  • +
  • setup_npm_environment Language::Node @@ -26388,7 +26396,7 @@

    Method List

  • -
  • +
  • setup_tar_and_args! Homebrew @@ -26396,7 +26404,7 @@

    Method List

  • -
  • +
  • #severity Homebrew::Style::Offense @@ -26404,7 +26412,7 @@

    Method List

  • -
  • +
  • #severity_code Homebrew::Style::Offense @@ -26412,7 +26420,7 @@

    Method List

  • -
  • +
  • sh Homebrew @@ -26420,7 +26428,7 @@

    Method List

  • -
  • +
  • sh_args Homebrew @@ -26428,7 +26436,7 @@

    Method List

  • -
  • +
  • sh_quote Utils::Shell @@ -26436,7 +26444,7 @@

    Method List

  • -
  • +
  • sha256 Formula @@ -26444,7 +26452,7 @@

    Method List

  • -
  • +
  • #sha256 Cask::DSL @@ -26452,7 +26460,7 @@

    Method List

  • -
  • +
  • #sha256 Resource @@ -26460,7 +26468,7 @@

    Method List

  • -
  • +
  • #sha256 BottleSpecification @@ -26468,7 +26476,7 @@

    Method List

  • -
  • +
  • #sha256 Pathname @@ -26476,7 +26484,7 @@

    Method List

  • -
  • +
  • #sha256 Homebrew::FormulaCreator @@ -26484,7 +26492,7 @@

    Method List

  • -
  • +
  • #sha256_bottle_tag RuboCop::Cop::FormulaAudit::BottleOrder @@ -26492,7 +26500,7 @@

    Method List

  • -
  • +
  • #sha256_order RuboCop::Cop::FormulaAudit::BottleOrder @@ -26500,7 +26508,7 @@

    Method List

  • -
  • +
  • #shadowed_by_macos? KegOnlyReason @@ -26508,7 +26516,7 @@

    Method List

  • -
  • +
  • #shallow? Tap @@ -26516,7 +26524,7 @@

    Method List

  • -
  • +
  • #share Formula @@ -26524,7 +26532,7 @@

    Method List

  • -
  • +
  • #shared_library Formula @@ -26532,7 +26540,7 @@

    Method List

  • -
  • +
  • #shell_output Homebrew::Assertions @@ -26540,7 +26548,7 @@

    Method List

  • -
  • +
  • #shell_profile Kernel @@ -26548,7 +26556,7 @@

    Method List

  • -
  • +
  • shell_scripts Homebrew::Style @@ -26556,7 +26564,7 @@

    Method List

  • -
  • +
  • shellcheck Homebrew::Style @@ -26564,7 +26572,7 @@

    Method List

  • -
  • +
  • shfmt Homebrew::Style @@ -26572,7 +26580,7 @@

    Method List

  • -
  • +
  • shims_path Superenv @@ -26580,7 +26588,7 @@

    Method List

  • -
  • +
  • #short_head_ref GitRepository @@ -26588,7 +26596,7 @@

    Method List

  • -
  • +
  • #short_version Homebrew::BundleVersion @@ -26596,7 +26604,7 @@

    Method List

  • -
  • +
  • shorten_revision Homebrew @@ -26604,7 +26612,7 @@

    Method List

  • -
  • +
  • show_completions_message_if_needed Homebrew::Completions @@ -26612,7 +26620,7 @@

    Method List

  • -
  • +
  • #shutup! AbstractDownloadStrategy @@ -26620,7 +26628,7 @@

    Method List

  • -
  • +
  • signoff! Homebrew @@ -26628,7 +26636,7 @@

    Method List

  • -
  • +
  • simplify_string Homebrew::Search @@ -26636,7 +26644,7 @@

    Method List

  • -
  • +
  • simulating_or_running_on_linux? Homebrew::SimulateSystem @@ -26644,7 +26652,7 @@

    Method List

  • -
  • +
  • simulating_or_running_on_macos? Homebrew::SimulateSystem @@ -26652,7 +26660,7 @@

    Method List

  • -
  • +
  • #single_app_cask? Homebrew::UnversionedCaskChecker @@ -26660,7 +26668,7 @@

    Method List

  • -
  • +
  • single_package_query Repology @@ -26668,7 +26676,7 @@

    Method List

  • -
  • +
  • #single_pkg_cask? Homebrew::UnversionedCaskChecker @@ -26676,7 +26684,7 @@

    Method List

  • -
  • +
  • #single_qlplugin_cask? Homebrew::UnversionedCaskChecker @@ -26684,7 +26692,7 @@

    Method List

  • -
  • +
  • #single_stanza_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -26692,7 +26700,7 @@

    Method List

  • -
  • +
  • site_packages Language::Python @@ -26700,7 +26708,7 @@

    Method List

  • -
  • +
  • #size RuboCop::Cop::HelperFunctions @@ -26708,7 +26716,7 @@

    Method List

  • -
  • +
  • #skip Livecheck @@ -26716,7 +26724,7 @@

    Method List

  • -
  • +
  • skip Dependency @@ -26724,7 +26732,7 @@

    Method List

  • -
  • +
  • #skip? Livecheck @@ -26732,7 +26740,7 @@

    Method List

  • -
  • +
  • skip_clean Formula @@ -26740,7 +26748,7 @@

    Method List

  • -
  • +
  • skip_clean_formula? Homebrew::Cleanup @@ -26748,7 +26756,7 @@

    Method List

  • -
  • +
  • #skip_cxxstdlib_check? Formula @@ -26756,7 +26764,7 @@

    Method List

  • -
  • +
  • skip_ineligible_formulae Homebrew @@ -26764,7 +26772,7 @@

    Method List

  • -
  • +
  • skip_information Homebrew::Livecheck::SkipConditions @@ -26772,7 +26780,7 @@

    Method List

  • -
  • +
  • #skip_msg Livecheck @@ -26780,7 +26788,7 @@

    Method List

  • -
  • +
  • #skip_post_install? FormulaInstaller @@ -26788,7 +26796,7 @@

    Method List

  • -
  • +
  • #skip_relocation? BottleSpecification @@ -26796,7 +26804,7 @@

    Method List

  • -
  • +
  • #skip_relocation? Bottle @@ -26804,7 +26812,7 @@

    Method List

  • -
  • +
  • #sockets Homebrew::Service @@ -26812,7 +26820,7 @@

    Method List

  • -
  • +
  • sorbet_runtime_path Utils::Backtrace @@ -26820,7 +26828,7 @@

    Method List

  • -
  • +
  • #sort_conditional_dependencies! RuboCop::Cop::FormulaAudit::DependencyOrder @@ -26828,7 +26836,7 @@

    Method List

  • -
  • +
  • #sort_dependencies_by_type RuboCop::Cop::FormulaAudit::DependencyOrder @@ -26836,7 +26844,7 @@

    Method List

  • -
  • +
  • sort_items Homebrew::Livecheck::Strategy::Sparkle @@ -26844,7 +26852,7 @@

    Method List

  • -
  • +
  • sort_key_for_path Homebrew::Manpages @@ -26852,7 +26860,7 @@

    Method List

  • -
  • +
  • sorted_dependents Homebrew @@ -26860,7 +26868,7 @@

    Method List

  • -
  • +
  • #source Tab @@ -26868,7 +26876,7 @@

    Method List

  • -
  • +
  • #source Cask::Cask @@ -26876,7 +26884,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::SDK @@ -26884,7 +26892,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::XcodeSDKLocator @@ -26892,7 +26900,7 @@

    Method List

  • -
  • +
  • #source OS::Mac::CLTSDKLocator @@ -26900,7 +26908,7 @@

    Method List

  • -
  • +
  • #source Cask::Artifact::Relocated @@ -26908,7 +26916,7 @@

    Method List

  • -
  • +
  • #source_buffer RuboCop::Cop::HelperFunctions @@ -26916,7 +26924,7 @@

    Method List

  • -
  • +
  • source_download Homebrew::API::Cask @@ -26924,7 +26932,7 @@

    Method List

  • -
  • +
  • source_download Homebrew::API::Formula @@ -26932,7 +26940,7 @@

    Method List

  • -
  • +
  • #source_modified_time Tab @@ -26940,7 +26948,7 @@

    Method List

  • -
  • +
  • #source_modified_time Resource @@ -26948,7 +26956,7 @@

    Method List

  • -
  • +
  • #source_modified_time AbstractDownloadStrategy @@ -26956,7 +26964,7 @@

    Method List

  • -
  • +
  • #source_modified_time SubversionDownloadStrategy @@ -26964,7 +26972,7 @@

    Method List

  • -
  • +
  • #source_modified_time GitDownloadStrategy @@ -26972,7 +26980,7 @@

    Method List

  • -
  • +
  • #source_modified_time CVSDownloadStrategy @@ -26980,7 +26988,7 @@

    Method List

  • -
  • +
  • #source_modified_time MercurialDownloadStrategy @@ -26988,7 +26996,7 @@

    Method List

  • -
  • +
  • #source_modified_time BazaarDownloadStrategy @@ -26996,7 +27004,7 @@

    Method List

  • -
  • +
  • #source_modified_time FossilDownloadStrategy @@ -27004,7 +27012,7 @@

    Method List

  • -
  • +
  • #source_range RuboCop::Cask::AST::Stanza @@ -27012,7 +27020,7 @@

    Method List

  • -
  • +
  • #source_range RuboCop::Cask::AST::CaskHeader @@ -27020,7 +27028,7 @@

    Method List

  • -
  • +
  • #source_range_with_comments RuboCop::Cask::AST::Stanza @@ -27028,7 +27036,7 @@

    Method List

  • -
  • +
  • #sourcefile_path Cask::Cask @@ -27036,7 +27044,7 @@

    Method List

  • -
  • +
  • #spec Tab @@ -27044,7 +27052,7 @@

    Method List

  • -
  • +
  • #spec GitHubRunner @@ -27052,7 +27060,7 @@

    Method List

  • -
  • +
  • #spec_name Homebrew::ResourceAuditor @@ -27060,7 +27068,7 @@

    Method List

  • -
  • +
  • #specification_for Utils::Bottles::Collector @@ -27068,7 +27076,7 @@

    Method List

  • -
  • +
  • #specified_name Formula @@ -27076,7 +27084,7 @@

    Method List

  • -
  • +
  • #specified_path Formula @@ -27084,7 +27092,7 @@

    Method List

  • -
  • +
  • #specs URL @@ -27092,7 +27100,7 @@

    Method List

  • -
  • +
  • #specs Cask::URL::DSL @@ -27100,7 +27108,7 @@

    Method List

  • -
  • +
  • #specs Resource @@ -27108,7 +27116,7 @@

    Method List

  • -
  • +
  • #specs Homebrew::ResourceAuditor @@ -27116,7 +27124,7 @@

    Method List

  • -
  • +
  • sponsor_logo Homebrew @@ -27124,7 +27132,7 @@

    Method List

  • -
  • +
  • sponsor_name Homebrew @@ -27132,7 +27140,7 @@

    Method List

  • -
  • +
  • sponsor_url Homebrew @@ -27140,7 +27148,7 @@

    Method List

  • -
  • +
  • sponsorships GitHub @@ -27148,7 +27156,7 @@

    Method List

  • -
  • +
  • squash_package_commits Homebrew @@ -27156,7 +27164,7 @@

    Method List

  • -
  • +
  • #src Keg::LinkError @@ -27164,7 +27172,7 @@

    Method List

  • -
  • +
  • sse3? Hardware::CPU @@ -27172,7 +27180,7 @@

    Method List

  • -
  • +
  • sse4? Hardware::CPU @@ -27180,7 +27188,7 @@

    Method List

  • -
  • +
  • sse4_2? Hardware::CPU @@ -27188,7 +27196,7 @@

    Method List

  • -
  • +
  • ssse3? Hardware::CPU @@ -27196,7 +27204,7 @@

    Method List

  • -
  • +
  • stable Formula @@ -27204,7 +27212,7 @@

    Method List

  • -
  • +
  • #stable? Tab @@ -27212,7 +27220,7 @@

    Method List

  • -
  • +
  • #stable? BuildOptions @@ -27220,7 +27228,7 @@

    Method List

  • -
  • +
  • #stable_version Tab @@ -27228,7 +27236,7 @@

    Method List

  • -
  • +
  • #stage Resource @@ -27236,7 +27244,7 @@

    Method List

  • -
  • +
  • #stage Resource::Go @@ -27244,7 +27252,7 @@

    Method List

  • -
  • +
  • #stage Bottle @@ -27252,7 +27260,7 @@

    Method List

  • -
  • +
  • #stage Cask::Installer @@ -27260,7 +27268,7 @@

    Method List

  • -
  • +
  • #stage AbstractDownloadStrategy::Pourable @@ -27268,7 +27276,7 @@

    Method List

  • -
  • +
  • #stage AbstractDownloadStrategy @@ -27276,7 +27284,7 @@

    Method List

  • -
  • +
  • #stage NoUnzipCurlDownloadStrategy @@ -27284,7 +27292,7 @@

    Method List

  • -
  • +
  • stage_deps Language::Go @@ -27292,7 +27300,7 @@

    Method List

  • -
  • +
  • #staged_path Cask::DSL @@ -27300,7 +27308,7 @@

    Method List

  • -
  • +
  • #staged_path_join_executable Cask::Artifact::AbstractArtifact @@ -27308,7 +27316,7 @@

    Method List

  • -
  • +
  • #staging ResourceStageContext @@ -27316,7 +27324,7 @@

    Method List

  • -
  • +
  • stale? Homebrew::Cleanup @@ -27324,7 +27332,7 @@

    Method List

  • -
  • +
  • #standardized_arch Utils::Bottles::Tag @@ -27332,7 +27340,7 @@

    Method List

  • -
  • +
  • #stanza Utils::AST::FormulaAST @@ -27340,7 +27348,7 @@

    Method List

  • -
  • +
  • #stanza? RuboCop::AST::Node @@ -27348,7 +27356,7 @@

    Method List

  • -
  • +
  • #stanza_group RuboCop::Cask::AST::Stanza @@ -27356,7 +27364,7 @@

    Method List

  • -
  • +
  • #stanza_index RuboCop::Cask::AST::Stanza @@ -27364,7 +27372,7 @@

    Method List

  • -
  • +
  • #stanza_name RuboCop::Cask::AST::Stanza @@ -27372,7 +27380,7 @@

    Method List

  • -
  • +
  • #stanza_options Cask::Artifact::Pkg @@ -27380,7 +27388,7 @@

    Method List

  • -
  • +
  • stanza_text Utils::AST @@ -27388,7 +27396,7 @@

    Method List

  • -
  • +
  • #stanzas RuboCop::Cask::AST::StanzaBlock @@ -27396,7 +27404,7 @@

    Method List

  • -
  • +
  • #stanzas RuboCop::Cask::AST::CaskBlock @@ -27404,7 +27412,7 @@

    Method List

  • -
  • +
  • #start_column RuboCop::Cop::HelperFunctions @@ -27412,7 +27420,7 @@

    Method List

  • -
  • +
  • #start_upgrade Cask::Installer @@ -27420,7 +27428,7 @@

    Method List

  • -
  • +
  • #status ErrorDuringExecution @@ -27428,7 +27436,7 @@

    Method List

  • -
  • +
  • #status SystemCommand::Result @@ -27436,7 +27444,7 @@

    Method List

  • -
  • +
  • status Cask::Quarantine @@ -27444,7 +27452,7 @@

    Method List

  • -
  • +
  • status_hash Homebrew::Livecheck @@ -27452,7 +27460,7 @@

    Method List

  • -
  • +
  • #std? BuildEnvironment @@ -27460,7 +27468,7 @@

    Method List

  • -
  • +
  • #std_cabal_v2_args Formula @@ -27468,7 +27476,7 @@

    Method List

  • -
  • +
  • #std_cargo_args Formula @@ -27476,7 +27484,7 @@

    Method List

  • -
  • +
  • #std_cmake_args Formula @@ -27484,7 +27492,7 @@

    Method List

  • -
  • +
  • #std_configure_args Formula @@ -27492,7 +27500,7 @@

    Method List

  • -
  • +
  • #std_go_args Formula @@ -27500,7 +27508,7 @@

    Method List

  • -
  • +
  • #std_meson_args Formula @@ -27508,7 +27516,7 @@

    Method List

  • -
  • +
  • std_npm_install_args Language::Node @@ -27516,7 +27524,7 @@

    Method List

  • -
  • +
  • #std_pip_args Formula @@ -27524,7 +27532,7 @@

    Method List

  • -
  • +
  • #std_service_path_env Homebrew::Service @@ -27532,7 +27540,7 @@

    Method List

  • -
  • +
  • #stderr ErrorDuringExecution @@ -27540,7 +27548,7 @@

    Method List

  • -
  • +
  • #stderr SystemCommand::Result @@ -27548,7 +27556,7 @@

    Method List

  • -
  • +
  • #stdlib Tab @@ -27556,7 +27564,7 @@

    Method List

  • -
  • +
  • #stdout SystemCommand::Result @@ -27564,7 +27572,7 @@

    Method List

  • -
  • +
  • #stem Pathname @@ -27572,7 +27580,7 @@

    Method List

  • -
  • +
  • #store LinkageChecker @@ -27580,7 +27588,7 @@

    Method List

  • -
  • +
  • #strategy Livecheck @@ -27588,7 +27596,7 @@

    Method List

  • -
  • +
  • #strategy_block Livecheck @@ -27596,7 +27604,7 @@

    Method List

  • -
  • +
  • #strictness Attr @@ -27604,7 +27612,7 @@

    Method List

  • -
  • +
  • #string_content RuboCop::Cop::HelperFunctions @@ -27612,7 +27620,7 @@

    Method List

  • -
  • +
  • string_to_license_expression SPDX @@ -27620,7 +27628,7 @@

    Method List

  • -
  • +
  • #strip EmbeddedPatch @@ -27628,7 +27636,7 @@

    Method List

  • -
  • +
  • #strip ExternalPatch @@ -27636,7 +27644,7 @@

    Method List

  • -
  • +
  • strip_ansi Tty @@ -27644,7 +27652,7 @@

    Method List

  • -
  • +
  • #strip_patch MacOSVersion @@ -27652,7 +27660,7 @@

    Method List

  • -
  • +
  • style Homebrew @@ -27660,7 +27668,7 @@

    Method List

  • -
  • +
  • style_args Homebrew @@ -27668,7 +27676,7 @@

    Method List

  • -
  • +
  • #style_exceptions Tap @@ -27676,7 +27684,7 @@

    Method List

  • -
  • +
  • #style_exceptions_dir RuboCop::Cop::FormulaCop @@ -27684,7 +27692,7 @@

    Method List

  • -
  • +
  • #sub! StringInreplaceExtension @@ -27692,7 +27700,7 @@

    Method List

  • -
  • +
  • #subdirs Pathname @@ -27700,7 +27708,7 @@

    Method List

  • -
  • +
  • #subversion_dep_if_needed DependencyCollector @@ -27708,7 +27716,7 @@

    Method List

  • -
  • +
  • success Formatter @@ -27716,7 +27724,7 @@

    Method List

  • -
  • +
  • #success? Cask::Audit @@ -27724,7 +27732,7 @@

    Method List

  • -
  • +
  • #success? SystemCommand::Result @@ -27732,7 +27740,7 @@

    Method List

  • -
  • +
  • sudo_purge Homebrew @@ -27740,7 +27748,7 @@

    Method List

  • -
  • +
  • suggest_command Homebrew::MissingFormula @@ -27748,7 +27756,7 @@

    Method List

  • -
  • +
  • #suggestion Keg::ConflictError @@ -27756,7 +27764,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Pkg @@ -27764,7 +27772,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Installer @@ -27772,7 +27780,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::Relocated @@ -27780,7 +27788,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::StageOnly @@ -27788,7 +27796,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractArtifact @@ -27796,7 +27804,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractUninstall @@ -27804,7 +27812,7 @@

    Method List

  • -
  • +
  • #summarize Cask::Artifact::AbstractFlightBlock @@ -27812,7 +27820,7 @@

    Method List

  • -
  • +
  • #summarize_installed Cask::Artifact::Moved @@ -27820,7 +27828,7 @@

    Method List

  • -
  • +
  • #summarize_installed Cask::Artifact::Symlinked @@ -27828,7 +27836,7 @@

    Method List

  • -
  • +
  • #summary Cask::Audit @@ -27836,7 +27844,7 @@

    Method List

  • -
  • +
  • #summary Cask::Installer @@ -27844,7 +27852,7 @@

    Method List

  • -
  • +
  • #summary FormulaInstaller @@ -27852,7 +27860,7 @@

    Method List

  • -
  • +
  • #supersedes_an_installed_formula? Formula @@ -27860,7 +27868,7 @@

    Method List

  • -
  • +
  • #supported_configuration_checks Homebrew::Diagnostic::Checks @@ -27868,7 +27876,7 @@

    Method List

  • -
  • +
  • supports_partial_clone_sparse_checkout? Utils::Git @@ -27876,7 +27884,7 @@

    Method List

  • -
  • +
  • #suppress_move_to_applications Cask::DSL::Postflight @@ -27884,7 +27892,7 @@

    Method List

  • -
  • +
  • #switch Homebrew::CLI::Parser @@ -27892,7 +27900,7 @@

    Method List

  • -
  • +
  • #symlink_files Keg @@ -27900,7 +27908,7 @@

    Method List

  • -
  • +
  • #symlink_location Homebrew::API::DownloadStrategy @@ -27908,7 +27916,7 @@

    Method List

  • -
  • +
  • #symlink_location Homebrew::API::Download @@ -27916,7 +27924,7 @@

    Method List

  • -
  • +
  • #symlink_location AbstractFileDownloadStrategy @@ -27924,7 +27932,7 @@

    Method List

  • -
  • +
  • system Homebrew @@ -27932,7 +27940,7 @@

    Method List

  • -
  • +
  • #system Formula @@ -27940,7 +27948,7 @@

    Method List

  • -
  • +
  • #system Utils::Bottles::Tag @@ -27948,7 +27956,7 @@

    Method List

  • -
  • +
  • #system_command Cask::DSL::Base @@ -27956,7 +27964,7 @@

    Method List

  • -
  • +
  • #system_command SystemCommand::Mixin @@ -27964,7 +27972,7 @@

    Method List

  • -
  • +
  • #system_command! SystemCommand::Mixin @@ -27972,7 +27980,7 @@

    Method List

  • -
  • +
  • system_dir? OS::Mac @@ -27980,7 +27988,7 @@

    Method List

  • -
  • +
  • system_dir_symlink? UnpackStrategy::Dmg::Bom @@ -27988,7 +27996,7 @@

    Method List

  • -
  • +
  • system_version OS::Linux::Glibc @@ -27996,7 +28004,7 @@

    Method List

  • -
  • +
  • systemctl Utils::Service @@ -28004,7 +28012,7 @@

    Method List

  • -
  • +
  • systemctl? Utils::Service @@ -28012,7 +28020,7 @@

    Method List

  • -
  • +
  • #systemd_service_path Formula @@ -28020,7 +28028,7 @@

    Method List

  • -
  • +
  • #systemd_timer_path Formula @@ -28028,7 +28036,7 @@

    Method List

  • -
  • +
  • #tab Keg @@ -28036,7 +28044,7 @@

    Method List

  • -
  • +
  • #tab_attributes Bottle @@ -28044,7 +28052,7 @@

    Method List

  • -
  • +
  • #tabfile Tab @@ -28052,7 +28060,7 @@

    Method List

  • -
  • +
  • table_output Utils::Analytics @@ -28060,7 +28068,7 @@

    Method List

  • -
  • +
  • #tag Utils::Bottles::MacOSOverride @@ -28068,7 +28076,7 @@

    Method List

  • -
  • +
  • #tag Cask::URL::DSL @@ -28076,7 +28084,7 @@

    Method List

  • -
  • +
  • #tag Bottle::Filename @@ -28084,7 +28092,7 @@

    Method List

  • -
  • +
  • tag Utils::Bottles @@ -28092,7 +28100,7 @@

    Method List

  • -
  • +
  • #tag Utils::Bottles::TagSpecification @@ -28100,7 +28108,7 @@

    Method List

  • -
  • +
  • #tag? BottleSpecification @@ -28108,7 +28116,7 @@

    Method List

  • -
  • +
  • #tag? Utils::Bottles::Collector @@ -28116,7 +28124,7 @@

    Method List

  • -
  • +
  • tag_info Homebrew::Livecheck::Strategy::Git @@ -28124,7 +28132,7 @@

    Method List

  • -
  • +
  • #tag_specification_for BottleSpecification @@ -28132,7 +28140,7 @@

    Method List

  • -
  • +
  • #tag_to_cellar BottleSpecification @@ -28140,7 +28148,7 @@

    Method List

  • -
  • +
  • #tags Dependable @@ -28148,7 +28156,7 @@

    Method List

  • -
  • +
  • #tags Utils::Bottles::Collector @@ -28156,7 +28164,7 @@

    Method List

  • -
  • +
  • #tap Tab @@ -28164,7 +28172,7 @@

    Method List

  • -
  • +
  • #tap TapConfig @@ -28172,7 +28180,7 @@

    Method List

  • -
  • +
  • tap Homebrew @@ -28180,7 +28188,7 @@

    Method List

  • -
  • +
  • #tap Cask::Cask @@ -28188,7 +28196,7 @@

    Method List

  • -
  • +
  • #tap Formulary::FormulaLoader @@ -28196,7 +28204,7 @@

    Method List

  • -
  • +
  • #tap Dependency @@ -28204,7 +28212,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaOrCaskUnavailableError @@ -28212,7 +28220,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaUnavailableError @@ -28220,7 +28228,7 @@

    Method List

  • -
  • +
  • #tap TapFormulaClassUnavailableError @@ -28228,7 +28236,7 @@

    Method List

  • -
  • +
  • #tap BottleSpecification @@ -28236,7 +28244,7 @@

    Method List

  • -
  • +
  • #tap Cask::TapCaskUnavailableError @@ -28244,7 +28252,7 @@

    Method List

  • -
  • +
  • #tap Homebrew::FormulaCreator @@ -28252,7 +28260,7 @@

    Method List

  • -
  • +
  • #tap Cask::CaskLoader::AbstractContentLoader @@ -28260,7 +28268,7 @@

    Method List

  • -
  • +
  • #tap= Tab @@ -28268,7 +28276,7 @@

    Method List

  • -
  • +
  • #tap_and_name_comparison Kernel @@ -28276,7 +28284,7 @@

    Method List

  • -
  • +
  • tap_args Homebrew @@ -28284,7 +28292,7 @@

    Method List

  • -
  • +
  • #tap_audit_exceptions Homebrew::TapAuditor @@ -28292,7 +28300,7 @@

    Method List

  • -
  • +
  • tap_formula_name_path Formulary @@ -28300,7 +28308,7 @@

    Method List

  • -
  • +
  • tap_from_source_download Homebrew::API @@ -28308,7 +28316,7 @@

    Method List

  • -
  • +
  • #tap_git_head Cask::Cask @@ -28316,7 +28324,7 @@

    Method List

  • -
  • +
  • tap_info Homebrew @@ -28324,7 +28332,7 @@

    Method List

  • -
  • +
  • tap_info_args Homebrew @@ -28332,7 +28340,7 @@

    Method List

  • -
  • +
  • tap_loader_for Formulary @@ -28340,7 +28348,7 @@

    Method List

  • -
  • +
  • tap_migration_reason Homebrew::MissingFormula @@ -28348,7 +28356,7 @@

    Method List

  • -
  • +
  • #tap_migrations Tap @@ -28356,7 +28364,7 @@

    Method List

  • -
  • +
  • #tap_migrations CoreCaskTap @@ -28364,7 +28372,7 @@

    Method List

  • -
  • +
  • tap_new Homebrew @@ -28372,7 +28380,7 @@

    Method List

  • -
  • +
  • tap_new_args Homebrew @@ -28380,7 +28388,7 @@

    Method List

  • -
  • +
  • tap_or_untap_core_taps_if_necessary Homebrew @@ -28388,7 +28396,7 @@

    Method List

  • -
  • +
  • tap_paths Formulary @@ -28396,7 +28404,7 @@

    Method List

  • -
  • +
  • tap_paths Cask::CaskLoader @@ -28404,7 +28412,7 @@

    Method List

  • -
  • +
  • #tap_pypi_formula_mappings Homebrew::TapAuditor @@ -28412,7 +28420,7 @@

    Method List

  • -
  • +
  • #tap_style_exception? RuboCop::Cop::FormulaCop @@ -28420,7 +28428,7 @@

    Method List

  • -
  • +
  • #tap_style_exceptions Homebrew::TapAuditor @@ -28428,7 +28436,7 @@

    Method List

  • -
  • +
  • #taps TapFormulaWithOldnameAmbiguityError @@ -28436,7 +28444,7 @@

    Method List

  • -
  • +
  • tar_args Homebrew @@ -28444,7 +28452,7 @@

    Method List

  • -
  • +
  • tar_needs_xz_dependency? DependencyCollector @@ -28452,7 +28460,7 @@

    Method List

  • -
  • +
  • #target Cask::Artifact::Relocated @@ -28460,7 +28468,7 @@

    Method List

  • -
  • +
  • target_path_to_format Homebrew::Manpages @@ -28468,7 +28476,7 @@

    Method List

  • -
  • +
  • #template Homebrew::FormulaCreator @@ -28476,7 +28484,7 @@

    Method List

  • -
  • +
  • #temporary_path AbstractFileDownloadStrategy @@ -28484,7 +28492,7 @@

    Method List

  • -
  • +
  • #test Debrew::Formula @@ -28492,7 +28500,7 @@

    Method List

  • -
  • +
  • test Formula @@ -28500,7 +28508,7 @@

    Method List

  • -
  • +
  • test Homebrew @@ -28508,7 +28516,7 @@

    Method List

  • -
  • +
  • #test? Dependable @@ -28516,7 +28524,7 @@

    Method List

  • -
  • +
  • test_args Homebrew @@ -28524,7 +28532,7 @@

    Method List

  • -
  • +
  • #testpath Formula @@ -28532,7 +28540,7 @@

    Method List

  • -
  • +
  • tests Homebrew @@ -28540,7 +28548,7 @@

    Method List

  • -
  • +
  • tests_args Homebrew @@ -28548,7 +28556,7 @@

    Method List

  • -
  • +
  • #text Homebrew::FormulaAuditor @@ -28556,7 +28564,7 @@

    Method List

  • -
  • +
  • #text_files Keg @@ -28564,7 +28572,7 @@

    Method List

  • -
  • +
  • text_matches_in_file Keg @@ -28572,7 +28580,7 @@

    Method List

  • -
  • +
  • #time Tab @@ -28580,7 +28588,7 @@

    Method List

  • -
  • +
  • #time Formula @@ -28588,7 +28596,7 @@

    Method List

  • -
  • +
  • #time_file_size Cask::Download @@ -28596,7 +28604,7 @@

    Method List

  • -
  • +
  • time_period Homebrew @@ -28604,7 +28612,7 @@

    Method List

  • -
  • +
  • #timed? Homebrew::Service @@ -28612,7 +28620,7 @@

    Method List

  • -
  • +
  • #timeout LinuxRunnerSpec @@ -28620,7 +28628,7 @@

    Method List

  • -
  • +
  • #timeout MacOSRunnerSpec @@ -28628,7 +28636,7 @@

    Method List

  • -
  • +
  • #timestamped_versions Cask::Cask @@ -28636,7 +28644,7 @@

    Method List

  • -
  • +
  • #title Homebrew::Livecheck::Strategy::Sparkle::Item @@ -28644,7 +28652,7 @@

    Method List

  • -
  • +
  • title_info Cask::Info @@ -28652,7 +28660,7 @@

    Method List

  • -
  • +
  • #tmpdir Mktemp @@ -28660,7 +28668,7 @@

    Method List

  • -
  • +
  • #to_a Cask::ArtifactSet @@ -28668,7 +28676,7 @@

    Method List

  • -
  • +
  • #to_a Cask::Artifact::Relocated @@ -28676,7 +28684,7 @@

    Method List

  • -
  • +
  • #to_a Cask::Artifact::StageOnly @@ -28684,7 +28692,7 @@

    Method List

  • -
  • +
  • #to_args Cask::Artifact::AbstractArtifact @@ -28692,7 +28700,7 @@

    Method List

  • -
  • +
  • #to_ary PATH @@ -28700,7 +28708,7 @@

    Method List

  • -
  • +
  • #to_ary SystemCommand::Result @@ -28708,7 +28716,7 @@

    Method List

  • -
  • +
  • #to_bottle_hash Tab @@ -28716,7 +28724,7 @@

    Method List

  • -
  • +
  • #to_casks Homebrew::CLI::NamedArgs @@ -28724,7 +28732,7 @@

    Method List

  • -
  • +
  • #to_default_kegs Homebrew::CLI::NamedArgs @@ -28732,7 +28740,7 @@

    Method List

  • -
  • +
  • #to_f Version::Token @@ -28740,7 +28748,7 @@

    Method List

  • -
  • +
  • #to_f Version @@ -28748,7 +28756,7 @@

    Method List

  • -
  • +
  • #to_formula Keg @@ -28756,7 +28764,7 @@

    Method List

  • -
  • +
  • #to_formula Dependency @@ -28764,7 +28772,7 @@

    Method List

  • -
  • +
  • #to_formulae Homebrew::CLI::NamedArgs @@ -28772,7 +28780,7 @@

    Method List

  • -
  • +
  • #to_formulae_and_casks Homebrew::CLI::NamedArgs @@ -28780,7 +28788,7 @@

    Method List

  • -
  • +
  • #to_formulae_and_casks_and_unavailable Homebrew::CLI::NamedArgs @@ -28788,7 +28796,7 @@

    Method List

  • -
  • +
  • #to_formulae_to_casks Homebrew::CLI::NamedArgs @@ -28796,7 +28804,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Cask @@ -28804,7 +28812,7 @@

    Method List

  • -
  • +
  • #to_h LinuxRunnerSpec @@ -28812,7 +28820,7 @@

    Method List

  • -
  • +
  • #to_h MacOSRunnerSpec @@ -28820,7 +28828,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Artifact::Installer @@ -28828,7 +28836,7 @@

    Method List

  • -
  • +
  • #to_h Cask::Artifact::AbstractUninstall @@ -28836,7 +28844,7 @@

    Method List

  • -
  • +
  • #to_hash Tap @@ -28844,7 +28852,7 @@

    Method List

  • -
  • +
  • #to_hash Livecheck @@ -28852,7 +28860,7 @@

    Method List

  • -
  • +
  • #to_hash KegOnlyReason @@ -28860,7 +28868,7 @@

    Method List

  • -
  • +
  • #to_hash_with_variations Cask::Cask @@ -28868,7 +28876,7 @@

    Method List

  • -
  • +
  • #to_i Version::Token @@ -28876,7 +28884,7 @@

    Method List

  • -
  • +
  • #to_i Version @@ -28884,7 +28892,7 @@

    Method List

  • -
  • +
  • #to_installed_taps Homebrew::CLI::NamedArgs @@ -28892,7 +28900,7 @@

    Method List

  • -
  • +
  • #to_json Tab @@ -28900,7 +28908,7 @@

    Method List

  • -
  • +
  • #to_json Version @@ -28908,7 +28916,7 @@

    Method List

  • -
  • +
  • #to_json Cask::Config @@ -28916,7 +28924,7 @@

    Method List

  • -
  • +
  • #to_json Cask::DSL::ConflictsWith @@ -28924,7 +28932,7 @@

    Method List

  • -
  • +
  • #to_json MacOSRequirement @@ -28932,7 +28940,7 @@

    Method List

  • -
  • +
  • #to_kegs Homebrew::CLI::NamedArgs @@ -28940,7 +28948,7 @@

    Method List

  • -
  • +
  • #to_kegs_to_casks Homebrew::CLI::NamedArgs @@ -28948,7 +28956,7 @@

    Method List

  • -
  • +
  • #to_latest_kegs Homebrew::CLI::NamedArgs @@ -28956,7 +28964,7 @@

    Method List

  • -
  • +
  • #to_macos_version Utils::Bottles::Tag @@ -28964,7 +28972,7 @@

    Method List

  • -
  • +
  • #to_paths Homebrew::CLI::NamedArgs @@ -28972,7 +28980,7 @@

    Method List

  • -
  • +
  • #to_plist Homebrew::Service @@ -28980,7 +28988,7 @@

    Method List

  • -
  • +
  • to_rack Formulary @@ -28988,7 +28996,7 @@

    Method List

  • -
  • +
  • #to_resolved_formulae Homebrew::CLI::NamedArgs @@ -28996,7 +29004,7 @@

    Method List

  • -
  • +
  • #to_resolved_formulae_to_casks Homebrew::CLI::NamedArgs @@ -29004,7 +29012,7 @@

    Method List

  • -
  • +
  • #to_s Keg::ConflictError @@ -29012,7 +29020,7 @@

    Method List

  • -
  • +
  • #to_s Keg::DirectoryNotWritableError @@ -29020,7 +29028,7 @@

    Method List

  • -
  • +
  • #to_s Tab @@ -29028,7 +29036,7 @@

    Method List

  • -
  • +
  • #to_s Tap @@ -29036,7 +29044,7 @@

    Method List

  • -
  • +
  • #to_s URL @@ -29044,7 +29052,7 @@

    Method List

  • -
  • +
  • #to_s Locale @@ -29052,7 +29060,7 @@

    Method List

  • -
  • +
  • #to_s Mktemp @@ -29060,7 +29068,7 @@

    Method List

  • -
  • +
  • #to_s Formula @@ -29068,7 +29076,7 @@

    Method List

  • -
  • +
  • #to_s Option @@ -29076,7 +29084,7 @@

    Method List

  • -
  • +
  • #to_s Options @@ -29084,7 +29092,7 @@

    Method List

  • -
  • +
  • #to_s Version::Token @@ -29092,7 +29100,7 @@

    Method List

  • -
  • +
  • #to_s Version @@ -29100,7 +29108,7 @@

    Method List

  • -
  • +
  • #to_s ResourceStageContext @@ -29108,7 +29116,7 @@

    Method List

  • -
  • +
  • #to_s Cask::Cask @@ -29116,7 +29124,7 @@

    Method List

  • -
  • +
  • to_s Tty @@ -29124,7 +29132,7 @@

    Method List

  • -
  • +
  • #to_s Dependency @@ -29132,7 +29140,7 @@

    Method List

  • -
  • +
  • #to_s UsageError @@ -29140,7 +29148,7 @@

    Method List

  • -
  • +
  • #to_s FormulaOrCaskUnavailableError @@ -29148,7 +29156,7 @@

    Method List

  • -
  • +
  • #to_s TapFormulaOrCaskUnavailableError @@ -29156,7 +29164,7 @@

    Method List

  • -
  • +
  • #to_s FormulaUnavailableError @@ -29164,7 +29172,7 @@

    Method List

  • -
  • +
  • #to_s FormulaClassUnavailableErrorModule @@ -29172,7 +29180,7 @@

    Method List

  • -
  • +
  • #to_s FormulaUnreadableErrorModule @@ -29180,7 +29188,7 @@

    Method List

  • -
  • +
  • #to_s TapFormulaUnavailableError @@ -29188,7 +29196,7 @@

    Method List

  • -
  • +
  • #to_s PyPI::Package @@ -29196,7 +29204,7 @@

    Method List

  • -
  • +
  • #to_s PkgVersion @@ -29204,7 +29212,7 @@

    Method List

  • -
  • +
  • #to_s Bottle::Filename @@ -29212,7 +29220,7 @@

    Method List

  • -
  • +
  • #to_s Utils::Bottles::Tag @@ -29220,7 +29228,7 @@

    Method List

  • -
  • +
  • #to_s GitRepository @@ -29228,7 +29236,7 @@

    Method List

  • -
  • +
  • #to_s Cask::MultipleCaskErrors @@ -29236,7 +29244,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskNotInstalledError @@ -29244,7 +29252,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskConflictError @@ -29252,7 +29260,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnavailableError @@ -29260,7 +29268,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnreadableError @@ -29268,7 +29276,7 @@

    Method List

  • -
  • +
  • #to_s Cask::TapCaskUnavailableError @@ -29276,7 +29284,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskAlreadyCreatedError @@ -29284,7 +29292,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskCyclicDependencyError @@ -29292,7 +29300,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskSelfReferencingDependencyError @@ -29300,7 +29308,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskUnspecifiedError @@ -29308,7 +29316,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskInvalidError @@ -29316,7 +29324,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantineError @@ -29324,7 +29332,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantinePropagationError @@ -29332,7 +29340,7 @@

    Method List

  • -
  • +
  • #to_s Cask::CaskQuarantineReleaseError @@ -29340,7 +29348,7 @@

    Method List

  • -
  • +
  • #to_s KegOnlyReason @@ -29348,7 +29356,7 @@

    Method List

  • -
  • +
  • #to_s Homebrew::SourceLocation @@ -29356,7 +29364,7 @@

    Method List

  • -
  • +
  • #to_s Cask::DSL::Caveats @@ -29364,7 +29372,7 @@

    Method List

  • -
  • +
  • #to_s Cask::DSL::Container @@ -29372,7 +29380,7 @@

    Method List

  • -
  • +
  • #to_s Homebrew::FormulaTextAuditor @@ -29380,7 +29388,7 @@

    Method List

  • -
  • +
  • #to_s GitHub::Actions::Annotation @@ -29388,7 +29396,7 @@

    Method List

  • -
  • +
  • #to_s Cask::Artifact::AbstractArtifact @@ -29396,7 +29404,7 @@

    Method List

  • -
  • +
  • #to_sentence Array @@ -29404,7 +29412,7 @@

    Method List

  • -
  • +
  • #to_str PATH @@ -29412,7 +29420,7 @@

    Method List

  • -
  • +
  • #to_str Version @@ -29420,7 +29428,7 @@

    Method List

  • -
  • +
  • #to_sym MacOSVersion @@ -29428,7 +29436,7 @@

    Method List

  • -
  • +
  • #to_sym Utils::Bottles::Tag @@ -29436,7 +29444,7 @@

    Method List

  • -
  • +
  • #to_systemd_timer Homebrew::Service @@ -29444,7 +29452,7 @@

    Method List

  • -
  • +
  • #to_systemd_unit Homebrew::Service @@ -29452,7 +29460,7 @@

    Method List

  • -
  • +
  • #to_taps Homebrew::CLI::NamedArgs @@ -29460,7 +29468,7 @@

    Method List

  • -
  • +
  • #to_yaml Cask::DSL::Container @@ -29468,7 +29476,7 @@

    Method List

  • -
  • +
  • toggle_no_translocation_bit Cask::Quarantine @@ -29476,7 +29484,7 @@

    Method List

  • -
  • +
  • #token Cask::DSL @@ -29484,7 +29492,7 @@

    Method List

  • -
  • +
  • #token Cask::Cask @@ -29492,7 +29500,7 @@

    Method List

  • -
  • +
  • #token Cask::AbstractCaskErrorWithToken @@ -29500,7 +29508,7 @@

    Method List

  • -
  • +
  • #token Cask::CaskLoader::FromPathLoader @@ -29508,7 +29516,7 @@

    Method List

  • -
  • +
  • #token Cask::CaskLoader::FromAPILoader @@ -29516,7 +29524,7 @@

    Method List

  • -
  • +
  • token_from Cask::Utils @@ -29524,7 +29532,7 @@

    Method List

  • -
  • +
  • toolchain_path OS::Mac::Xcode @@ -29532,7 +29540,7 @@

    Method List

  • -
  • +
  • #top_level_info_plists Homebrew::UnversionedCaskChecker @@ -29540,7 +29548,7 @@

    Method List

  • -
  • +
  • #toplevel_stanzas RuboCop::Cask::AST::CaskBlock @@ -29548,7 +29556,7 @@

    Method List

  • -
  • +
  • total Homebrew @@ -29556,7 +29564,7 @@

    Method List

  • -
  • +
  • #trailing_newline? Homebrew::FormulaTextAuditor @@ -29564,7 +29572,7 @@

    Method List

  • -
  • +
  • truncate Tty @@ -29572,7 +29580,7 @@

    Method List

  • -
  • +
  • #truncate_text_to_approximate_size Kernel @@ -29580,7 +29588,7 @@

    Method List

  • -
  • +
  • #trust_cert Cask::URL::DSL @@ -29588,7 +29596,7 @@

    Method List

  • -
  • +
  • try_parse Locale @@ -29596,7 +29604,7 @@

    Method List

  • -
  • +
  • #tsc Homebrew::Manpages::Variables @@ -29604,7 +29612,7 @@

    Method List

  • -
  • +
  • type Hardware::CPU @@ -29612,7 +29620,7 @@

    Method List

  • -
  • +
  • #type CompilerFailure @@ -29620,7 +29628,7 @@

    Method List

  • -
  • +
  • #type CompilerSelector::Compiler @@ -29628,7 +29636,7 @@

    Method List

  • -
  • +
  • #type CxxStdlib @@ -29636,7 +29644,7 @@

    Method List

  • -
  • +
  • #type Homebrew::VersionBumpInfo @@ -29644,7 +29652,7 @@

    Method List

  • -
  • +
  • #type Cask::DSL::Container @@ -29652,7 +29660,7 @@

    Method List

  • -
  • +
  • #type_string CxxStdlib @@ -29660,7 +29668,7 @@

    Method List

  • -
  • +
  • typecheck Homebrew @@ -29668,7 +29676,7 @@

    Method List

  • -
  • +
  • typecheck_args Homebrew @@ -29676,7 +29684,7 @@

    Method List

  • -
  • +
  • unbottled Homebrew @@ -29684,7 +29692,7 @@

    Method List

  • -
  • +
  • unbottled_args Homebrew @@ -29692,7 +29700,7 @@

    Method List

  • -
  • +
  • #unbottled_dependencies FormulaInstaller @@ -29700,7 +29708,7 @@

    Method List

  • -
  • +
  • #undeclared_deps LinkageChecker @@ -29708,7 +29716,7 @@

    Method List

  • -
  • +
  • undeletable? OS::Mac @@ -29716,7 +29724,7 @@

    Method List

  • -
  • +
  • underscore Utils @@ -29724,7 +29732,7 @@

    Method List

  • -
  • +
  • #unexpected_broken_dylibs LinkageChecker @@ -29732,7 +29740,7 @@

    Method List

  • -
  • +
  • #unexpected_present_dylibs LinkageChecker @@ -29740,7 +29748,7 @@

    Method List

  • -
  • +
  • unhook_raise Ignorable @@ -29748,7 +29756,7 @@

    Method List

  • -
  • +
  • #uninstall Keg @@ -29756,7 +29764,7 @@

    Method List

  • -
  • +
  • #uninstall Tap @@ -29764,7 +29772,7 @@

    Method List

  • -
  • +
  • #uninstall Cask::Pkg @@ -29772,7 +29780,7 @@

    Method List

  • -
  • +
  • uninstall Homebrew @@ -29780,7 +29788,7 @@

    Method List

  • -
  • +
  • #uninstall Cask::Installer @@ -29788,7 +29796,7 @@

    Method List

  • -
  • +
  • uninstall_args Homebrew @@ -29796,7 +29804,7 @@

    Method List

  • -
  • +
  • #uninstall_artifacts Cask::Installer @@ -29804,7 +29812,7 @@

    Method List

  • -
  • +
  • uninstall_casks Cask::Uninstall @@ -29812,7 +29820,7 @@

    Method List

  • -
  • +
  • uninstall_dsl_key Cask::Artifact::AbstractFlightBlock @@ -29820,7 +29828,7 @@

    Method List

  • -
  • +
  • #uninstall_existing_cask Cask::Installer @@ -29828,7 +29836,7 @@

    Method List

  • -
  • +
  • uninstall_kegs Homebrew::Uninstall @@ -29836,7 +29844,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Moved @@ -29844,7 +29852,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Qlplugin @@ -29852,7 +29860,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Symlinked @@ -29860,7 +29868,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::Uninstall @@ -29868,7 +29876,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::KeyboardLayout @@ -29876,7 +29884,7 @@

    Method List

  • -
  • +
  • #uninstall_phase Cask::Artifact::AbstractFlightBlock @@ -29884,7 +29892,7 @@

    Method List

  • -
  • +
  • #universal? MachOShim @@ -29892,7 +29900,7 @@

    Method List

  • -
  • +
  • #unless_modifier? RuboCop::Cop::FormulaAudit::OptionDeclarations @@ -29900,7 +29908,7 @@

    Method List

  • -
  • +
  • #unlink Keg @@ -29908,7 +29916,7 @@

    Method List

  • -
  • +
  • unlink Homebrew::Unlink @@ -29916,7 +29924,7 @@

    Method List

  • -
  • +
  • unlink Homebrew @@ -29924,7 +29932,7 @@

    Method List

  • -
  • +
  • unlink! Homebrew::Completions @@ -29932,7 +29940,7 @@

    Method List

  • -
  • +
  • unlink_args Homebrew @@ -29940,7 +29948,7 @@

    Method List

  • -
  • +
  • unlink_completions Utils::Link @@ -29948,7 +29956,7 @@

    Method List

  • -
  • +
  • unlink_manpages Utils::Link @@ -29956,7 +29964,7 @@

    Method List

  • -
  • +
  • #unlink_newname Migrator @@ -29964,7 +29972,7 @@

    Method List

  • -
  • +
  • #unlink_oldname Migrator @@ -29972,7 +29980,7 @@

    Method List

  • -
  • +
  • #unlink_oldname_cellar Migrator @@ -29980,7 +29988,7 @@

    Method List

  • -
  • +
  • #unlink_oldname_opt Migrator @@ -29988,7 +29996,7 @@

    Method List

  • -
  • +
  • unlink_versioned_formulae Homebrew::Unlink @@ -29996,7 +30004,7 @@

    Method List

  • -
  • +
  • #unlock Migrator @@ -30004,7 +30012,7 @@

    Method List

  • -
  • +
  • #unlock LockFile @@ -30012,7 +30020,7 @@

    Method List

  • -
  • +
  • #unpack Resource @@ -30020,7 +30028,7 @@

    Method List

  • -
  • +
  • unpack Homebrew @@ -30028,7 +30036,7 @@

    Method List

  • -
  • +
  • unpack_args Homebrew @@ -30036,7 +30044,7 @@

    Method List

  • -
  • +
  • unpin Homebrew @@ -30044,7 +30052,7 @@

    Method List

  • -
  • +
  • #unpin FormulaPin @@ -30052,7 +30060,7 @@

    Method List

  • -
  • +
  • unpin_args Homebrew @@ -30060,7 +30068,7 @@

    Method List

  • -
  • +
  • #unremovable_kegs Homebrew::Cleanup @@ -30068,7 +30076,7 @@

    Method List

  • -
  • +
  • #unstable? Cask::DSL::Version @@ -30076,7 +30084,7 @@

    Method List

  • -
  • +
  • unsupported_configuration? OS @@ -30084,7 +30092,7 @@

    Method List

  • -
  • +
  • #unsupported_release? MacOSVersion @@ -30092,7 +30100,7 @@

    Method List

  • -
  • +
  • untap Homebrew @@ -30100,7 +30108,7 @@

    Method List

  • -
  • +
  • untap_args Homebrew @@ -30108,7 +30116,7 @@

    Method List

  • -
  • +
  • untapped_official_taps Tap @@ -30116,7 +30124,7 @@

    Method List

  • -
  • +
  • #unused_options Tab @@ -30124,7 +30132,7 @@

    Method List

  • -
  • +
  • #unversioned? Cask::URL @@ -30132,7 +30140,7 @@

    Method List

  • -
  • +
  • #unzip_dep_if_needed DependencyCollector @@ -30140,7 +30148,7 @@

    Method List

  • -
  • +
  • #update! CacheStore @@ -30148,7 +30156,7 @@

    Method List

  • -
  • +
  • #update! LinkageCacheStore @@ -30156,7 +30164,7 @@

    Method List

  • -
  • +
  • #update! DescriptionCacheStore @@ -30164,7 +30172,7 @@

    Method List

  • -
  • +
  • #update_commit Version @@ -30172,7 +30180,7 @@

    Method List

  • -
  • +
  • #update_from_cask_tokens! CaskDescriptionCacheStore @@ -30180,7 +30188,7 @@

    Method List

  • -
  • +
  • #update_from_formula_names! DescriptionCacheStore @@ -30188,7 +30196,7 @@

    Method List

  • -
  • +
  • #update_from_report! DescriptionCacheStore @@ -30196,7 +30204,7 @@

    Method List

  • -
  • +
  • #update_from_report! CaskDescriptionCacheStore @@ -30204,7 +30212,7 @@

    Method List

  • -
  • +
  • #update_head_version Formula @@ -30212,7 +30220,7 @@

    Method List

  • -
  • +
  • update_instructions OS::Mac::Xcode @@ -30220,7 +30228,7 @@

    Method List

  • -
  • +
  • update_instructions OS::Mac::CLT @@ -30228,7 +30236,7 @@

    Method List

  • -
  • +
  • update_license_data Homebrew @@ -30236,7 +30244,7 @@

    Method List

  • -
  • +
  • update_license_data_args Homebrew @@ -30244,7 +30252,7 @@

    Method List

  • -
  • +
  • update_maintainers Homebrew @@ -30252,7 +30260,7 @@

    Method List

  • -
  • +
  • update_maintainers_args Homebrew @@ -30260,7 +30268,7 @@

    Method List

  • -
  • +
  • #update_path Homebrew::FormulaCreator @@ -30268,7 +30276,7 @@

    Method List

  • -
  • +
  • update_pypi_url PyPI @@ -30276,7 +30284,7 @@

    Method List

  • -
  • +
  • update_python_resources Homebrew @@ -30284,7 +30292,7 @@

    Method List

  • -
  • +
  • update_python_resources! PyPI @@ -30292,7 +30300,7 @@

    Method List

  • -
  • +
  • update_python_resources_args Homebrew @@ -30300,7 +30308,7 @@

    Method List

  • -
  • +
  • update_report Homebrew @@ -30308,7 +30316,7 @@

    Method List

  • -
  • +
  • update_report_args Homebrew @@ -30316,7 +30324,7 @@

    Method List

  • -
  • +
  • update_shell_completions! Homebrew::Completions @@ -30324,7 +30332,7 @@

    Method List

  • -
  • +
  • update_sponsors Homebrew @@ -30332,7 +30340,7 @@

    Method List

  • -
  • +
  • update_sponsors_args Homebrew @@ -30340,7 +30348,7 @@

    Method List

  • -
  • +
  • #update_tabs Migrator @@ -30348,7 +30356,7 @@

    Method List

  • -
  • +
  • update_test Homebrew @@ -30356,7 +30364,7 @@

    Method List

  • -
  • +
  • update_test_args Homebrew @@ -30364,7 +30372,7 @@

    Method List

  • -
  • +
  • #updated? Reporter @@ -30372,7 +30380,7 @@

    Method List

  • -
  • +
  • upgrade Homebrew @@ -30380,7 +30388,7 @@

    Method List

  • -
  • +
  • upgrade_args Homebrew @@ -30388,7 +30396,7 @@

    Method List

  • -
  • +
  • upgrade_cask Cask::Upgrade @@ -30396,7 +30404,7 @@

    Method List

  • -
  • +
  • upgrade_casks Cask::Upgrade @@ -30404,7 +30412,7 @@

    Method List

  • -
  • +
  • upgrade_formulae Homebrew::Upgrade @@ -30412,7 +30420,7 @@

    Method List

  • -
  • +
  • upgrade_outdated_casks Homebrew @@ -30420,7 +30428,7 @@

    Method List

  • -
  • +
  • upgrade_outdated_formulae Homebrew @@ -30428,7 +30436,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubPackages @@ -30436,7 +30444,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubReleases @@ -30444,7 +30452,7 @@

    Method List

  • -
  • +
  • upload_release_asset GitHub @@ -30452,7 +30460,7 @@

    Method List

  • -
  • +
  • #uri Cask::URL::DSL @@ -30460,7 +30468,7 @@

    Method List

  • -
  • +
  • url Formula @@ -30468,7 +30476,7 @@

    Method List

  • -
  • +
  • #url Cask::DSL @@ -30476,7 +30484,7 @@

    Method List

  • -
  • +
  • #url Cask::URL::BlockDSL::PageWithURL @@ -30484,7 +30492,7 @@

    Method List

  • -
  • +
  • #url Resource @@ -30492,7 +30500,7 @@

    Method List

  • -
  • +
  • #url Formulary::FromUrlLoader @@ -30500,7 +30508,7 @@

    Method List

  • -
  • +
  • #url Livecheck @@ -30508,7 +30516,7 @@

    Method List

  • -
  • +
  • #url Downloadable @@ -30516,7 +30524,7 @@

    Method List

  • -
  • +
  • #url Cask::Download @@ -30524,7 +30532,7 @@

    Method List

  • -
  • +
  • #url SoftwareSpec @@ -30532,7 +30540,7 @@

    Method List

  • -
  • +
  • #url Homebrew::FormulaCreator @@ -30540,7 +30548,7 @@

    Method List

  • -
  • +
  • url Formatter @@ -30548,7 +30556,7 @@

    Method List

  • -
  • +
  • #url Cask::CaskLoader::FromURILoader @@ -30556,7 +30564,7 @@

    Method List

  • -
  • +
  • #url Homebrew::ResourceAuditor @@ -30564,7 +30572,7 @@

    Method List

  • -
  • +
  • #url AbstractDownloadStrategy @@ -30572,7 +30580,7 @@

    Method List

  • -
  • +
  • #url Homebrew::Livecheck::Strategy::Sparkle::Item @@ -30580,7 +30588,7 @@

    Method List

  • -
  • +
  • #url_encode Bottle::Filename @@ -30588,7 +30596,7 @@

    Method List

  • -
  • +
  • url_protected_by_cloudflare? Utils::Curl @@ -30596,7 +30604,7 @@

    Method List

  • -
  • +
  • url_protected_by_incapsula? Utils::Curl @@ -30604,7 +30612,7 @@

    Method List

  • -
  • +
  • url_to GitHub @@ -30612,7 +30620,7 @@

    Method List

  • -
  • +
  • #usage_banner Homebrew::CLI::Parser @@ -30620,7 +30628,7 @@

    Method List

  • -
  • +
  • #usage_banner_text Homebrew::CLI::Parser @@ -30628,7 +30636,7 @@

    Method List

  • -
  • +
  • use CacheStoreDatabase @@ -30636,7 +30644,7 @@

    Method List

  • -
  • +
  • use_buildpulse? Homebrew @@ -30644,7 +30652,7 @@

    Method List

  • -
  • +
  • use_homebrew_curl? Homebrew::Livecheck @@ -30652,7 +30660,7 @@

    Method List

  • -
  • +
  • #use_macos_install? UsesFromMacOSDependency @@ -30660,7 +30668,7 @@

    Method List

  • -
  • +
  • #use_system_ruby? Homebrew::Cleanup @@ -30668,7 +30676,7 @@

    Method List

  • -
  • +
  • #used_options Tab @@ -30676,7 +30684,7 @@

    Method List

  • -
  • +
  • #user Tap @@ -30684,7 +30692,7 @@

    Method List

  • -
  • +
  • #user TapFormulaUnavailableError @@ -30692,7 +30700,7 @@

    Method List

  • -
  • +
  • user GitHub @@ -30700,7 +30708,7 @@

    Method List

  • -
  • +
  • #user_agent Cask::URL::DSL @@ -30708,7 +30716,7 @@

    Method List

  • -
  • +
  • user_gem_groups Homebrew @@ -30716,7 +30724,7 @@

    Method List

  • -
  • +
  • user_site_packages Language::Python @@ -30724,7 +30732,7 @@

    Method List

  • -
  • +
  • #user_tilde Homebrew::Diagnostic::Checks @@ -30732,7 +30740,7 @@

    Method List

  • -
  • +
  • user_vendor_version Homebrew @@ -30740,7 +30748,7 @@

    Method List

  • -
  • +
  • uses Homebrew @@ -30748,7 +30756,7 @@

    Method List

  • -
  • +
  • uses_args Homebrew @@ -30756,7 +30764,7 @@

    Method List

  • -
  • +
  • uses_from_macos Formula @@ -30764,7 +30772,7 @@

    Method List

  • -
  • +
  • #uses_from_macos SoftwareSpec @@ -30772,7 +30780,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? Dependency @@ -30780,7 +30788,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? UsesFromMacOSDependency @@ -30788,7 +30796,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_elements SoftwareSpec @@ -30796,7 +30804,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_names SoftwareSpec @@ -30804,7 +30812,7 @@

    Method List

  • -
  • +
  • #using URL @@ -30812,7 +30820,7 @@

    Method List

  • -
  • +
  • #using Cask::URL::DSL @@ -30820,7 +30828,7 @@

    Method List

  • -
  • +
  • #using Resource @@ -30828,7 +30836,7 @@

    Method List

  • -
  • +
  • #using Homebrew::ResourceAuditor @@ -30836,7 +30844,7 @@

    Method List

  • -
  • +
  • valid_aliases? Readall @@ -30844,7 +30852,7 @@

    Method List

  • -
  • +
  • valid_casks? Readall @@ -30852,7 +30860,7 @@

    Method List

  • -
  • +
  • #valid_combination? Utils::Bottles::Tag @@ -30860,7 +30868,7 @@

    Method List

  • -
  • +
  • valid_formulae? Readall @@ -30868,7 +30876,7 @@

    Method List

  • -
  • +
  • valid_gem_groups Homebrew @@ -30876,7 +30884,7 @@

    Method List

  • -
  • +
  • valid_internal_cmd? Commands @@ -30884,7 +30892,7 @@

    Method List

  • -
  • +
  • valid_internal_dev_cmd? Commands @@ -30892,7 +30900,7 @@

    Method List

  • -
  • +
  • #valid_library_extension? FormulaCellarChecks @@ -30900,7 +30908,7 @@

    Method List

  • -
  • +
  • valid_license? SPDX @@ -30908,7 +30916,7 @@

    Method List

  • -
  • +
  • valid_license_exception? SPDX @@ -30916,7 +30924,7 @@

    Method List

  • -
  • +
  • #valid_pypi_package? PyPI::Package @@ -30924,7 +30932,7 @@

    Method List

  • -
  • +
  • valid_ruby_syntax? Readall @@ -30932,7 +30940,7 @@

    Method List

  • -
  • +
  • valid_tap? Readall @@ -30940,7 +30948,7 @@

    Method List

  • -
  • +
  • validate_file Utils::Tar @@ -30948,7 +30956,7 @@

    Method List

  • -
  • +
  • #validate_options Homebrew::CLI::Parser @@ -30956,7 +30964,7 @@

    Method List

  • -
  • +
  • #value Version::Token @@ -30964,7 +30972,7 @@

    Method List

  • -
  • +
  • #value Version::StringToken @@ -30972,7 +30980,7 @@

    Method List

  • -
  • +
  • #value Version::NumericToken @@ -30980,7 +30988,7 @@

    Method List

  • -
  • +
  • #value Homebrew::CLI::Args @@ -30988,7 +30996,7 @@

    Method List

  • -
  • +
  • #var Formula @@ -30996,7 +31004,7 @@

    Method List

  • -
  • +
  • vendor_gems Homebrew @@ -31004,7 +31012,7 @@

    Method List

  • -
  • +
  • vendor_gems_args Homebrew @@ -31012,7 +31020,7 @@

    Method List

  • -
  • +
  • #verbose? Context::ContextStruct @@ -31020,7 +31028,7 @@

    Method List

  • -
  • +
  • #verbose? Context @@ -31028,7 +31036,7 @@

    Method List

  • -
  • +
  • verbose? Homebrew @@ -31036,7 +31044,7 @@

    Method List

  • -
  • +
  • #verified Cask::URL::DSL @@ -31044,7 +31052,7 @@

    Method List

  • -
  • +
  • #verify_checksum Pathname @@ -31052,7 +31060,7 @@

    Method List

  • -
  • +
  • #verify_deps_exist FormulaInstaller @@ -31060,7 +31068,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Downloadable @@ -31068,7 +31076,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Cask::Download @@ -31076,7 +31084,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity HeadSoftwareSpec @@ -31084,7 +31092,7 @@

    Method List

  • -
  • +
  • #verify_has_sha Cask::Installer @@ -31092,7 +31100,7 @@

    Method List

  • -
  • +
  • #verify_order_in_source RuboCop::Cop::FormulaAudit::DependencyOrder @@ -31100,7 +31108,7 @@

    Method List

  • -
  • +
  • #version Keg @@ -31108,7 +31116,7 @@

    Method List

  • -
  • +
  • #version URL @@ -31116,7 +31124,7 @@

    Method List

  • -
  • +
  • version OS::Mac @@ -31124,7 +31132,7 @@

    Method List

  • -
  • +
  • #version Formula @@ -31132,7 +31140,7 @@

    Method List

  • -
  • +
  • version Formula @@ -31140,7 +31148,7 @@

    Method List

  • -
  • +
  • #version Cask::DSL @@ -31148,7 +31156,7 @@

    Method List

  • -
  • +
  • version OS::Mac::Xcode @@ -31156,7 +31164,7 @@

    Method List

  • -
  • +
  • version OS::Mac::CLT @@ -31164,7 +31172,7 @@

    Method List

  • -
  • +
  • #version Resource @@ -31172,7 +31180,7 @@

    Method List

  • -
  • +
  • #version CompilerFailure @@ -31180,7 +31188,7 @@

    Method List

  • -
  • +
  • #version CompilerSelector::Compiler @@ -31188,7 +31196,7 @@

    Method List

  • -
  • +
  • version Utils::Git @@ -31196,7 +31204,7 @@

    Method List

  • -
  • +
  • version Utils::Svn @@ -31204,7 +31212,7 @@

    Method List

  • -
  • +
  • #version OS::Mac::SDK @@ -31212,7 +31220,7 @@

    Method List

  • -
  • +
  • #version PyPI::Package @@ -31220,7 +31228,7 @@

    Method List

  • -
  • +
  • #version PkgVersion @@ -31228,7 +31236,7 @@

    Method List

  • -
  • +
  • #version Downloadable @@ -31236,7 +31244,7 @@

    Method List

  • -
  • +
  • #version FormulaInfo @@ -31244,7 +31252,7 @@

    Method List

  • -
  • +
  • #version Cask::Download @@ -31252,7 +31260,7 @@

    Method List

  • -
  • +
  • #version MacOSVersion::Error @@ -31260,7 +31268,7 @@

    Method List

  • -
  • +
  • #version Bottle::Filename @@ -31268,7 +31276,7 @@

    Method List

  • -
  • +
  • #version Homebrew::BundleVersion @@ -31276,7 +31284,7 @@

    Method List

  • -
  • +
  • version OS::Linux::Glibc @@ -31284,7 +31292,7 @@

    Method List

  • -
  • +
  • #version Homebrew::FormulaCreator @@ -31292,7 +31300,7 @@

    Method List

  • -
  • +
  • #version Homebrew::ResourceAuditor @@ -31300,7 +31308,7 @@

    Method List

  • -
  • +
  • #version MacOSRequirement @@ -31308,7 +31316,7 @@

    Method List

  • -
  • +
  • #version XcodeRequirement @@ -31316,7 +31324,7 @@

    Method List

  • -
  • +
  • #version= PyPI::Package @@ -31324,7 +31332,7 @@

    Method List

  • -
  • +
  • #version_name Homebrew::VersionBumpInfo @@ -31332,7 +31340,7 @@

    Method List

  • -
  • +
  • version_rebuild GitHubPackages @@ -31340,7 +31348,7 @@

    Method List

  • -
  • +
  • #version_scheme Tab @@ -31348,7 +31356,7 @@

    Method List

  • -
  • +
  • #version_scheme Formula @@ -31356,7 +31364,7 @@

    Method List

  • -
  • +
  • #version_specified? MacOSRequirement @@ -31364,7 +31372,7 @@

    Method List

  • -
  • +
  • #versioned_formula? Formula @@ -31372,7 +31380,7 @@

    Method List

  • -
  • +
  • #versioned_formula? KegOnlyReason @@ -31380,7 +31388,7 @@

    Method List

  • -
  • +
  • #versioned_formula? RuboCop::Cop::FormulaCop @@ -31388,7 +31396,7 @@

    Method List

  • -
  • +
  • #versioned_formulae Formula @@ -31396,7 +31404,7 @@

    Method List

  • -
  • +
  • #versioned_formulae_names Formula @@ -31404,7 +31412,7 @@

    Method List

  • -
  • +
  • #versioned_macos_requirement TestRunnerFormula @@ -31412,7 +31420,7 @@

    Method List

  • -
  • +
  • #versions Tab @@ -31420,7 +31428,7 @@

    Method List

  • -
  • +
  • #versions CompilerSelector @@ -31428,7 +31436,7 @@

    Method List

  • -
  • +
  • #versions Homebrew::Livecheck::LivecheckVersion @@ -31436,7 +31444,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Xml @@ -31444,7 +31452,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Json @@ -31452,7 +31460,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Yaml @@ -31460,7 +31468,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Sparkle @@ -31468,7 +31476,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::PageMatch @@ -31476,7 +31484,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::GithubReleases @@ -31484,7 +31492,7 @@

    Method List

  • -
  • +
  • versions_from_headers Homebrew::Livecheck::Strategy::HeaderMatch @@ -31492,7 +31500,7 @@

    Method List

  • -
  • +
  • versions_from_items Homebrew::Livecheck::Strategy::ExtractPlist @@ -31500,7 +31508,7 @@

    Method List

  • -
  • +
  • versions_from_tags Homebrew::Livecheck::Strategy::Git @@ -31508,7 +31516,7 @@

    Method List

  • -
  • +
  • #virtualenv_create Language::Python::Virtualenv @@ -31516,7 +31524,7 @@

    Method List

  • -
  • +
  • #virtualenv_install_with_resources Language::Python::Virtualenv @@ -31524,7 +31532,7 @@

    Method List

  • -
  • +
  • warning Formatter @@ -31532,7 +31540,7 @@

    Method List

  • -
  • +
  • watchlist_path Homebrew @@ -31540,7 +31548,7 @@

    Method List

  • -
  • +
  • #which Homebrew::Diagnostic::Volumes @@ -31548,7 +31556,7 @@

    Method List

  • -
  • +
  • #which Kernel @@ -31556,7 +31564,7 @@

    Method List

  • -
  • +
  • #which_all Kernel @@ -31564,7 +31572,7 @@

    Method List

  • -
  • +
  • #which_editor Kernel @@ -31572,7 +31580,7 @@

    Method List

  • -
  • +
  • width Tty @@ -31580,7 +31588,7 @@

    Method List

  • -
  • +
  • with Tty @@ -31588,7 +31596,7 @@

    Method List

  • -
  • +
  • with Homebrew::SimulateSystem @@ -31596,7 +31604,7 @@

    Method List

  • -
  • +
  • #with? Tab @@ -31604,7 +31612,7 @@

    Method List

  • -
  • +
  • #with? BuildOptions @@ -31612,7 +31620,7 @@

    Method List

  • -
  • +
  • #with_build_environment EnvActivation @@ -31620,7 +31628,7 @@

    Method List

  • -
  • +
  • #with_context Context @@ -31628,7 +31636,7 @@

    Method List

  • -
  • +
  • #with_custom_locale Kernel @@ -31636,7 +31644,7 @@

    Method List

  • -
  • +
  • #with_env Kernel @@ -31644,7 +31652,7 @@

    Method List

  • -
  • +
  • #with_homebrew_path Kernel @@ -31652,7 +31660,7 @@

    Method List

  • -
  • +
  • #with_lock LockFile @@ -31660,7 +31668,7 @@

    Method List

  • -
  • +
  • #with_logging Formula @@ -31668,7 +31676,7 @@

    Method List

  • -
  • +
  • #with_monkey_patch Top Level Namespace @@ -31676,7 +31684,7 @@

    Method List

  • -
  • +
  • with_no_api_env Homebrew @@ -31684,7 +31692,7 @@

    Method List

  • -
  • +
  • with_no_api_env_if_needed Homebrew @@ -31692,7 +31700,7 @@

    Method List

  • -
  • +
  • #without? Tab @@ -31700,7 +31708,7 @@

    Method List

  • -
  • +
  • #without? BuildOptions @@ -31708,7 +31716,7 @@

    Method List

  • -
  • +
  • without_clt? OS::Mac::Xcode @@ -31716,7 +31724,7 @@

    Method List

  • -
  • +
  • #without_patch Homebrew::FormulaTextAuditor @@ -31724,7 +31732,7 @@

    Method List

  • -
  • +
  • #workdir LinuxRunnerSpec @@ -31732,7 +31740,7 @@

    Method List

  • -
  • +
  • workflow_dispatch_event GitHub @@ -31740,7 +31748,7 @@

    Method List

  • -
  • +
  • #working_dir Homebrew::Service @@ -31748,7 +31756,7 @@

    Method List

  • -
  • +
  • #write Tab @@ -31756,7 +31764,7 @@

    Method List

  • -
  • +
  • write Homebrew::Settings @@ -31764,7 +31772,7 @@

    Method List

  • -
  • +
  • write_access? GitHub @@ -31772,7 +31780,7 @@

    Method List

  • -
  • +
  • #write_env_script Pathname @@ -31780,7 +31788,7 @@

    Method List

  • -
  • +
  • #write_exec_script Pathname @@ -31788,7 +31796,7 @@

    Method List

  • -
  • +
  • #write_if_dirty! CacheStoreDatabase @@ -31796,7 +31804,7 @@

    Method List

  • -
  • +
  • #write_jar_script Pathname @@ -31804,7 +31812,7 @@

    Method List

  • -
  • +
  • write_names Homebrew::API::Cask @@ -31812,7 +31820,7 @@

    Method List

  • -
  • +
  • write_names_and_aliases Homebrew::API::Formula @@ -31820,7 +31828,7 @@

    Method List

  • -
  • +
  • write_names_file Homebrew::API @@ -31828,7 +31836,7 @@

    Method List

  • -
  • +
  • write_path Homebrew @@ -31836,7 +31844,7 @@

    Method List

  • -
  • +
  • write_user_gem_groups Homebrew @@ -31844,7 +31852,7 @@

    Method List

  • -
  • +
  • wsl? OS::Linux @@ -31852,7 +31860,7 @@

    Method List

  • -
  • +
  • wsl_version OS::Linux @@ -31860,7 +31868,7 @@

    Method List

  • -
  • +
  • #x86_64? MachOShim @@ -31868,7 +31876,7 @@

    Method List

  • -
  • +
  • #x86_64? GitHubRunner @@ -31876,7 +31884,7 @@

    Method List

  • -
  • +
  • #x86_64_compatible? TestRunnerFormula @@ -31884,7 +31892,7 @@

    Method List

  • -
  • +
  • #x86_64_only? TestRunnerFormula @@ -31892,7 +31900,7 @@

    Method List

  • -
  • +
  • xcode SystemConfig @@ -31900,7 +31908,7 @@

    Method List

  • -
  • +
  • #xcode_installed_version XcodeRequirement @@ -31908,7 +31916,7 @@

    Method List

  • -
  • +
  • #xcodebuild Formula @@ -31916,7 +31924,7 @@

    Method List

  • -
  • +
  • #xz_dep_if_needed DependencyCollector @@ -31924,7 +31932,7 @@

    Method List

  • -
  • +
  • #zap Cask::Installer @@ -31932,7 +31940,7 @@

    Method List

  • -
  • +
  • #zap_phase Cask::Artifact::Zap @@ -31940,7 +31948,7 @@

    Method List

  • -
  • +
  • #zipinfo Pathname @@ -31948,7 +31956,7 @@

    Method List

  • -
  • +
  • #zsh_completion Formula @@ -31956,7 +31964,7 @@

    Method List

  • -
  • +
  • #zsh_function Formula @@ -31964,7 +31972,7 @@

    Method List

  • -
  • +
  • #zstd_dep_if_needed DependencyCollector @@ -31972,7 +31980,7 @@

    Method List

  • -
  • +
  • #| Options