From 0ec99de77749786b8bdd0224f3490439866d47cf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:35:47 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/Homebrew.html | 4 +- docs/Homebrew/FormulaCreator.html | 318 +--- docs/method_list.html | 2802 ++++++++++++++--------------- 3 files changed, 1494 insertions(+), 1630 deletions(-) diff --git a/docs/Homebrew.html b/docs/Homebrew.html index 0239229e3..216efada0 100644 --- a/docs/Homebrew.html +++ b/docs/Homebrew.html @@ -17682,7 +17682,7 @@

end end - fc.generate! + path = fc.write_formula! formula = Homebrew.with_no_api_env do Formula[fc.name] @@ -17690,7 +17690,7 @@

PyPI.update_python_resources! formula, ignore_non_pypi_packages: true if args.python? puts "Please run `brew audit --new #{fc.name}` before submitting, thanks." - fc.path + path end diff --git a/docs/Homebrew/FormulaCreator.html b/docs/Homebrew/FormulaCreator.html index 5c6e2da98..171098294 100644 --- a/docs/Homebrew/FormulaCreator.html +++ b/docs/Homebrew/FormulaCreator.html @@ -269,31 +269,6 @@

Instance Attribute Summary collaps - private - -
-
- - - - - -
  • - - - #path ⇒ Object - - - - - - - - - - - - private
    @@ -431,28 +406,6 @@

    - private - -
    -
    - -

  • - - - -
  • - - - #generate! ⇒ Object - - - - - - - - - private
    @@ -533,7 +486,7 @@

  • - #update_path ⇒ Object + #write_formula! ⇒ Object @@ -890,53 +843,6 @@

  • - -
    -

    - - #pathObject - - - - - -

    -
    -

    - This method is part of a private API. - This method may only be used in the Homebrew/brew repository. - Third parties should avoid using this method if possible, as it may be removed or changed without warning. -

    - - - -
    -
    -
    - - -
    - - - - -
    -
    -
    -
    -13
    -14
    -15
    -
    -
    # File 'formula_creator.rb', line 13
    -
    -def path
    -  @path
    -end
    -
    -
    - -

    @@ -1174,12 +1080,12 @@

     
     
    -51
    -52
    -53
    +44 +45 +46 -
    # File 'formula_creator.rb', line 51
    +      
    # File 'formula_creator.rb', line 44
     
     def fetch?
       !args.no_fetch?
    @@ -1187,107 +1093,6 @@ 

    -

    - -
    -

    - - #generate!Object - - - - - -

    -
    -

    - This method is part of a private API. - This method may only be used in the Homebrew/brew repository. - Third parties should avoid using this method if possible, as it may be removed or changed without warning. -

    - - - -
    -
    -
    - - -
    - - - - -
    -
    -
    -
    -59
    -60
    -61
    -62
    -63
    -64
    -65
    -66
    -67
    -68
    -69
    -70
    -71
    -72
    -73
    -74
    -75
    -76
    -77
    -78
    -79
    -80
    -81
    -82
    -83
    -84
    -85
    -86
    -87
    -88
    -89
    -
    -
    # File 'formula_creator.rb', line 59
    -
    -def generate!
    -  raise "#{path} already exists" if path.exist?
    -
    -  if version.nil? || version.null?
    -    odie "Version cannot be determined from URL. Explicitly set the version with `--set-version` instead."
    -  elsif fetch?
    -    unless head?
    -      r = Resource.new
    -      r.url(url)
    -      r.version(version)
    -      r.owner = self
    -      @sha256 = r.fetch.sha256 if r.download_strategy == CurlDownloadStrategy
    -    end
    -
    -    if @user && @name
    -      begin
    -         = GitHub.repository(@user, @name)
    -        @desc = ["description"]
    -        @homepage = ["homepage"]
    -        @license = ["license"]["spdx_id"] if ["license"]
    -      rescue GitHub::API::HTTPNotFoundError
    -        # If there was no repository found assume the network connection is at
    -        # fault rather than the input URL.
    -        nil
    -      end
    -    end
    -  end
    -
    -  path.dirname.mkpath
    -  path.write ERB.new(template, trim_mode: ">").result(binding)
    -end
    -
    @@ -1333,12 +1138,12 @@

     
     
    -55
    -56
    -57
    +48 +49 +50 -
    # File 'formula_creator.rb', line 55
    +      
    # File 'formula_creator.rb', line 48
     
     def head?
       @head || args.HEAD?
    @@ -1391,6 +1196,8 @@ 

     
     
    +90
    +91
     92
     93
     94
    @@ -1523,12 +1330,10 @@ 

    221 222 223 -224 -225 -226

    +224

    -
    # File 'formula_creator.rb', line 92
    +      
    # File 'formula_creator.rb', line 90
     
     def template
       <<~ERB
    @@ -1671,9 +1476,9 @@ 

    -

    +

    - #update_pathObject + #write_formula!Object @@ -1693,6 +1498,19 @@

    +

    Raises:

    +
      + +
    • + + + (ArgumentError) + + + +
    • + +
    @@ -1700,19 +1518,81 @@

     
     
    -45
    -46
    -47
    -48
    -49
    +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87

    diff --git a/docs/method_list.html b/docs/method_list.html index 2a2669e69..b6102b7b9 100644 --- a/docs/method_list.html +++ b/docs/method_list.html @@ -12637,14 +12637,6 @@

    Method List

  • -
    - #generate! - Homebrew::FormulaCreator -
    -
  • - - -
  • generate_bash_completion_file Homebrew::Completions @@ -12652,7 +12644,7 @@

    Method List

  • -
  • +
  • generate_bash_subcommand_completion Homebrew::Completions @@ -12660,7 +12652,7 @@

    Method List

  • -
  • +
  • generate_cask_api Homebrew @@ -12668,7 +12660,7 @@

    Method List

  • -
  • +
  • generate_cask_api_args Homebrew @@ -12676,7 +12668,7 @@

    Method List

  • -
  • +
  • generate_cmd_manpages Homebrew::Manpages @@ -12684,7 +12676,7 @@

    Method List

  • -
  • +
  • #generate_completions_from_executable Formula @@ -12692,7 +12684,7 @@

    Method List

  • -
  • +
  • generate_csv Homebrew @@ -12700,7 +12692,7 @@

    Method List

  • -
  • +
  • generate_fish_completion_file Homebrew::Completions @@ -12708,7 +12700,7 @@

    Method List

  • -
  • +
  • generate_fish_subcommand_completion Homebrew::Completions @@ -12716,7 +12708,7 @@

    Method List

  • -
  • +
  • generate_formula_api Homebrew @@ -12724,7 +12716,7 @@

    Method List

  • -
  • +
  • generate_formula_api_args Homebrew @@ -12732,7 +12724,7 @@

    Method List

  • -
  • +
  • #generate_help_text Homebrew::CLI::Parser @@ -12740,7 +12732,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::GithubLatest @@ -12836,7 +12828,7 @@

    Method List

  • -
  • +
  • generate_input_values Homebrew::Livecheck::Strategy::GithubReleases @@ -12844,7 +12836,7 @@

    Method List

  • -
  • +
  • generate_man_completions Homebrew @@ -12852,7 +12844,7 @@

    Method List

  • -
  • +
  • generate_man_completions_args Homebrew @@ -12860,7 +12852,7 @@

    Method List

  • -
  • +
  • generate_option_doc Homebrew::Manpages @@ -12868,7 +12860,7 @@

    Method List

  • -
  • +
  • generate_release_notes GitHub @@ -12876,7 +12868,7 @@

    Method List

  • -
  • +
  • generate_sha256_line Homebrew @@ -12884,7 +12876,7 @@

    Method List

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

    Method List

  • -
  • +
  • generate_zsh_option_exclusions Homebrew::Completions @@ -12900,7 +12892,7 @@

    Method List

  • -
  • +
  • generate_zsh_subcommand_completion Homebrew::Completions @@ -12908,7 +12900,7 @@

    Method List

  • -
  • +
  • #generated_hash! APIHashable @@ -12916,7 +12908,7 @@

    Method List

  • -
  • +
  • #generating_hash! APIHashable @@ -12924,7 +12916,7 @@

    Method List

  • -
  • +
  • #generating_hash? APIHashable @@ -12932,7 +12924,7 @@

    Method List

  • -
  • +
  • generic_git_tags Homebrew @@ -12940,7 +12932,7 @@

    Method List

  • -
  • +
  • #get CacheStoreDatabase @@ -12948,7 +12940,7 @@

    Method List

  • -
  • +
  • get_artifact_url GitHub @@ -12956,7 +12948,7 @@

    Method List

  • -
  • +
  • #get_checksum_node RuboCop::Cop::FormulaCop @@ -12964,7 +12956,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #get_formula Formulary::TapLoader @@ -12988,7 +12980,7 @@

    Method List

  • -
  • +
  • #get_formula Formulary::NullLoader @@ -12996,7 +12988,7 @@

    Method List

  • -
  • +
  • get_info Cask::Info @@ -13004,7 +12996,7 @@

    Method List

  • -
  • +
  • get_latest_release GitHub @@ -13012,7 +13004,7 @@

    Method List

  • -
  • +
  • #get_make_var StringInreplaceExtension @@ -13020,7 +13012,7 @@

    Method List

  • -
  • +
  • #get_mounts Homebrew::Diagnostic::Volumes @@ -13028,7 +13020,7 @@

    Method List

  • -
  • +
  • get_package Homebrew @@ -13036,7 +13028,7 @@

    Method List

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

    Method List

  • -
  • +
  • #get_pypi_url RuboCop::Cop::FormulaAudit::PyPiUrls @@ -13052,7 +13044,7 @@

    Method List

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

    Method List

  • -
  • +
  • #get_repo_data Homebrew::FormulaAuditor @@ -13068,7 +13060,7 @@

    Method List

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

    Method List

  • -
  • +
  • #get_state RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -13084,7 +13076,7 @@

    Method List

  • -
  • +
  • get_workflow_run GitHub @@ -13092,7 +13084,7 @@

    Method List

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

    Method List

  • -
  • +
  • gist_logs_args Homebrew @@ -13108,7 +13100,7 @@

    Method List

  • -
  • +
  • gistify_logs Homebrew @@ -13116,7 +13108,7 @@

    Method List

  • -
  • +
  • git Utils::Git @@ -13124,7 +13116,7 @@

    Method List

  • -
  • +
  • #git? Tap @@ -13132,7 +13124,7 @@

    Method List

  • -
  • +
  • #git_branch Tap @@ -13140,7 +13132,7 @@

    Method List

  • -
  • +
  • git_branch Utils @@ -13148,7 +13140,7 @@

    Method List

  • -
  • +
  • git_commit_message Utils @@ -13156,7 +13148,7 @@

    Method List

  • -
  • +
  • #git_dep_if_needed DependencyCollector @@ -13164,7 +13156,7 @@

    Method List

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

    Method List

  • -
  • +
  • git_head Utils @@ -13180,7 +13172,7 @@

    Method List

  • -
  • +
  • #git_last_commit Tap @@ -13188,7 +13180,7 @@

    Method List

  • -
  • +
  • git_log Homebrew @@ -13196,7 +13188,7 @@

    Method List

  • -
  • +
  • git_log_trailers_cmd Homebrew @@ -13204,7 +13196,7 @@

    Method List

  • -
  • +
  • #git_repo Tap @@ -13212,7 +13204,7 @@

    Method List

  • -
  • +
  • #git_repo? GitRepository @@ -13220,7 +13212,7 @@

    Method List

  • -
  • +
  • git_short_head Utils @@ -13228,7 +13220,7 @@

    Method List

  • -
  • +
  • git_tags Homebrew @@ -13236,7 +13228,7 @@

    Method List

  • -
  • +
  • github SharedAudits @@ -13244,7 +13236,7 @@

    Method List

  • -
  • +
  • github_cli_token GitHub::API @@ -13252,7 +13244,7 @@

    Method List

  • -
  • +
  • github_info Homebrew @@ -13260,7 +13252,7 @@

    Method List

  • -
  • +
  • #github_message GitHub::API::Error @@ -13268,7 +13260,7 @@

    Method List

  • -
  • +
  • #github_packages Bottle::Filename @@ -13276,7 +13268,7 @@

    Method List

  • -
  • +
  • github_packages? Homebrew @@ -13284,7 +13276,7 @@

    Method List

  • -
  • +
  • github_release SharedAudits @@ -13292,7 +13284,7 @@

    Method List

  • -
  • +
  • github_release_data SharedAudits @@ -13300,7 +13292,7 @@

    Method List

  • -
  • +
  • github_releases? Homebrew @@ -13308,7 +13300,7 @@

    Method List

  • -
  • +
  • github_remote_path Homebrew @@ -13316,7 +13308,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • gitlab_repo_data SharedAudits @@ -13364,7 +13356,7 @@

    Method List

  • -
  • +
  • gitlab_tag_from_url SharedAudits @@ -13372,7 +13364,7 @@

    Method List

  • -
  • +
  • #glibc_dep_if_needed DependencyCollector @@ -13380,7 +13372,7 @@

    Method List

  • -
  • +
  • #global_cask_options Homebrew::Manpages::Variables @@ -13388,7 +13380,7 @@

    Method List

  • -
  • +
  • global_cask_options Homebrew::CLI::Parser @@ -13396,7 +13388,7 @@

    Method List

  • -
  • +
  • global_cask_options_manpage Homebrew::Manpages @@ -13404,7 +13396,7 @@

    Method List

  • -
  • +
  • #global_options Homebrew::Manpages::Variables @@ -13412,7 +13404,7 @@

    Method List

  • -
  • +
  • global_options Homebrew::CLI::Parser @@ -13420,7 +13412,7 @@

    Method List

  • -
  • +
  • global_options_manpage Homebrew::Manpages @@ -13428,7 +13420,7 @@

    Method List

  • -
  • +
  • global_post_install Homebrew::Install @@ -13436,7 +13428,7 @@

    Method List

  • -
  • +
  • gnu_tar Homebrew @@ -13444,7 +13436,7 @@

    Method List

  • -
  • +
  • gnu_tar_formula_ensure_installed_if_needed! Homebrew @@ -13452,7 +13444,7 @@

    Method List

  • -
  • +
  • go_cache_directory? Homebrew::Cleanup @@ -13460,7 +13452,7 @@

    Method List

  • -
  • +
  • go_resource Formula @@ -13468,7 +13460,7 @@

    Method List

  • -
  • +
  • #go_resource SoftwareSpec @@ -13476,7 +13468,7 @@

    Method List

  • -
  • +
  • grand_total_row Homebrew @@ -13484,7 +13476,7 @@

    Method List

  • -
  • +
  • graph_deps Homebrew @@ -13492,7 +13484,7 @@

    Method List

  • -
  • +
  • graph_package_dependencies Utils::TopologicalHash @@ -13500,7 +13492,7 @@

    Method List

  • -
  • +
  • #gsub! StringInreplaceExtension @@ -13508,7 +13500,7 @@

    Method List

  • -
  • +
  • #guess_cask_version Homebrew::UnversionedCaskChecker @@ -13516,7 +13508,7 @@

    Method List

  • -
  • +
  • #gui? User @@ -13524,7 +13516,7 @@

    Method List

  • -
  • +
  • #gzip Kernel @@ -13532,7 +13524,7 @@

    Method List

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

    Method List

  • -
  • +
  • handle_block_return Homebrew::Livecheck::Strategy @@ -13548,7 +13540,7 @@

    Method List

  • -
  • +
  • handle_formula_and_casks Homebrew @@ -13556,7 +13548,7 @@

    Method List

  • -
  • +
  • handle_unsatisfied_dependents Homebrew::Uninstall @@ -13564,7 +13556,7 @@

    Method List

  • -
  • +
  • hardware SystemConfig @@ -13572,7 +13564,7 @@

    Method List

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

    Method List

  • -
  • +
  • #hash Version::Token @@ -13588,7 +13580,7 @@

    Method List

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

    Method List

  • -
  • +
  • #hash Cask::Cask @@ -13604,7 +13596,7 @@

    Method List

  • -
  • +
  • #hash Dependency @@ -13612,7 +13604,7 @@

    Method List

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

    Method List

  • -
  • +
  • #hash PyPI::Package @@ -13628,7 +13620,7 @@

    Method List

  • -
  • +
  • #hash PkgVersion @@ -13636,7 +13628,7 @@

    Method List

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

    Method List

  • -
  • +
  • #hash Utils::Bottles::Tag @@ -13652,7 +13644,7 @@

    Method List

  • -
  • +
  • #hash MacOSRequirement @@ -13660,7 +13652,7 @@

    Method List

  • -
  • +
  • #hash_node RuboCop::Cask::AST::CaskHeader @@ -13668,7 +13660,7 @@

    Method List

  • -
  • +
  • head Formula @@ -13676,7 +13668,7 @@

    Method List

  • -
  • +
  • head SystemConfig @@ -13684,7 +13676,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #head? PkgVersion @@ -13708,7 +13700,7 @@

    Method List

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

    Method List

  • -
  • +
  • #head? Homebrew::FormulaCreator @@ -13724,7 +13716,7 @@

    Method List

  • -
  • +
  • #head? VCSDownloadStrategy @@ -13732,7 +13724,7 @@

    Method List

  • -
  • +
  • #head_ref GitRepository @@ -13740,7 +13732,7 @@

    Method List

  • -
  • +
  • #head_version Tab @@ -13748,7 +13740,7 @@

    Method List

  • -
  • +
  • #head_version_outdated? Formula @@ -13756,7 +13748,7 @@

    Method List

  • -
  • +
  • #header Cask::URL::DSL @@ -13764,7 +13756,7 @@

    Method List

  • -
  • +
  • #header RuboCop::Cask::AST::CaskBlock @@ -13772,7 +13764,7 @@

    Method List

  • -
  • +
  • #header_str RuboCop::Cask::AST::CaskHeader @@ -13780,7 +13772,7 @@

    Method List

  • -
  • +
  • headline Formatter @@ -13788,7 +13780,7 @@

    Method List

  • -
  • +
  • help Homebrew::Help @@ -13796,7 +13788,7 @@

    Method List

  • -
  • +
  • #help Homebrew @@ -13804,7 +13796,7 @@

    Method List

  • -
  • +
  • #heredoc? RuboCop::AST::Node @@ -13812,7 +13804,7 @@

    Method List

  • -
  • +
  • #hexdigest Checksum @@ -13820,7 +13812,7 @@

    Method List

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

    Method List

  • -
  • +
  • #hide_from_man_page! Homebrew::CLI::Parser @@ -13836,7 +13828,7 @@

    Method List

  • -
  • +
  • home Homebrew @@ -13844,7 +13836,7 @@

    Method List

  • -
  • +
  • home_args Homebrew @@ -13852,7 +13844,7 @@

    Method List

  • -
  • +
  • homebrew_config SystemConfig @@ -13860,7 +13852,7 @@

    Method List

  • -
  • +
  • homebrew_env_config SystemConfig @@ -13868,7 +13860,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #homebrew_extra_library_paths Superenv @@ -13908,7 +13900,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_paths Superenv @@ -13916,7 +13908,7 @@

    Method List

  • -
  • +
  • #homebrew_extra_pkg_config_paths Stdenv @@ -13924,7 +13916,7 @@

    Method List

  • -
  • +
  • homebrew_repo SystemConfig @@ -13932,7 +13924,7 @@

    Method List

  • -
  • +
  • homebrew_site_packages Language::Python @@ -13940,7 +13932,7 @@

    Method List

  • -
  • +
  • #homebrew_tap_cask_names Homebrew::CLI::NamedArgs @@ -13948,7 +13940,7 @@

    Method List

  • -
  • +
  • #homebrew_version Tab @@ -13956,7 +13948,7 @@

    Method List

  • -
  • +
  • #homepage Formula @@ -13964,7 +13956,7 @@

    Method List

  • -
  • +
  • #homepage Cask::DSL @@ -13972,7 +13964,7 @@

    Method List

  • -
  • +
  • #homepage Homebrew::FormulaCreator @@ -13980,7 +13972,7 @@

    Method List

  • -
  • +
  • hook_raise Ignorable @@ -13988,7 +13980,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • host_ruby_version SystemConfig @@ -14012,7 +14004,7 @@

    Method List

  • -
  • +
  • host_software_config SystemConfig @@ -14020,7 +14012,7 @@

    Method List

  • -
  • +
  • html_template Homebrew @@ -14028,7 +14020,7 @@

    Method List

  • -
  • +
  • http_status_ok? Utils::Curl @@ -14036,7 +14028,7 @@

    Method List

  • -
  • +
  • #i386? MachOShim @@ -14044,7 +14036,7 @@

    Method List

  • -
  • +
  • identifier Formatter @@ -14052,7 +14044,7 @@

    Method List

  • -
  • +
  • ignore Warnings @@ -14060,7 +14052,7 @@

    Method List

  • -
  • +
  • #ignore Ignorable::ExceptionMixin @@ -14068,7 +14060,7 @@

    Method List

  • -
  • +
  • #ignore_interrupts Kernel @@ -14076,7 +14068,7 @@

    Method List

  • -
  • +
  • ignore_missing_libraries Formula @@ -14084,7 +14076,7 @@

    Method List

  • -
  • +
  • image_formula_name GitHubPackages @@ -14092,7 +14084,7 @@

    Method List

  • -
  • +
  • image_version_rebuild GitHubPackages @@ -14100,7 +14092,7 @@

    Method List

  • -
  • +
  • #implicit? Dependable @@ -14108,7 +14100,7 @@

    Method List

  • -
  • +
  • in_rosetta2? Hardware::CPU @@ -14116,7 +14108,7 @@

    Method List

  • -
  • +
  • in_sys_path? Language::Python @@ -14124,7 +14116,7 @@

    Method List

  • -
  • +
  • #include Formula @@ -14132,7 +14124,7 @@

    Method List

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

    Method List

  • -
  • +
  • #include? Locale @@ -14148,7 +14140,7 @@

    Method List

  • -
  • +
  • #include? Options @@ -14156,7 +14148,7 @@

    Method List

  • -
  • +
  • #include? Homebrew::FormulaTextAuditor @@ -14164,7 +14156,7 @@

    Method List

  • -
  • +
  • #include_test? FormulaInstaller @@ -14172,7 +14164,7 @@

    Method List

  • -
  • +
  • #include_test_formulae Homebrew::CLI::Args @@ -14180,7 +14172,7 @@

    Method List

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

    Method List

  • -
  • +
  • included OnSystem::MacOSAndLinux @@ -14196,7 +14188,7 @@

    Method List

  • -
  • +
  • included OnSystem::MacOSOnly @@ -14204,7 +14196,7 @@

    Method List

  • -
  • +
  • incomplete? Homebrew::Cleanup @@ -14212,7 +14204,7 @@

    Method List

  • -
  • +
  • influx_message_displayed? Utils::Analytics @@ -14220,7 +14212,7 @@

    Method List

  • -
  • +
  • #info Formula @@ -14228,7 +14220,7 @@

    Method List

  • -
  • +
  • #info Cask::Pkg @@ -14236,7 +14228,7 @@

    Method List

  • -
  • +
  • info Homebrew @@ -14244,7 +14236,7 @@

    Method List

  • -
  • +
  • info Cask::Info @@ -14252,7 +14244,7 @@

    Method List

  • -
  • +
  • #info FormulaInfo @@ -14260,7 +14252,7 @@

    Method List

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

    Method List

  • -
  • +
  • info_cask Homebrew @@ -14276,7 +14268,7 @@

    Method List

  • -
  • +
  • info_formula Homebrew @@ -14284,7 +14276,7 @@

    Method List

  • -
  • +
  • inherited Formula @@ -14292,7 +14284,7 @@

    Method List

  • -
  • +
  • #inherited BuildEnvironment::DSL @@ -14300,7 +14292,7 @@

    Method List

  • -
  • +
  • #inherited_options_for FormulaInstaller @@ -14308,7 +14300,7 @@

    Method List

  • -
  • +
  • #init Top Level Namespace @@ -14316,7 +14308,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Diagnostic::Volumes @@ -14324,7 +14316,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Keg::LinkError @@ -14340,7 +14332,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize StringPatch @@ -14412,7 +14404,7 @@

    Method List

  • -
  • +
  • #initialize ExternalPatch @@ -14420,7 +14412,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Style::Offenses @@ -14428,7 +14420,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Style::Offense @@ -14436,7 +14428,7 @@

    Method List

  • -
  • +
  • #initialize Debrew::Menu @@ -14444,7 +14436,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Caveats @@ -14468,7 +14460,7 @@

    Method List

  • -
  • +
  • #initialize Cleaner @@ -14476,7 +14468,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Cleanup @@ -14484,7 +14476,7 @@

    Method List

  • -
  • +
  • #initialize Context::ContextStruct @@ -14492,7 +14484,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Options @@ -14516,7 +14508,7 @@

    Method List

  • -
  • +
  • #initialize Sandbox @@ -14524,7 +14516,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Service @@ -14532,7 +14524,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Version::NumericToken @@ -14556,7 +14548,7 @@

    Method List

  • -
  • +
  • #initialize Version @@ -14564,7 +14556,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Cask::URL @@ -14604,7 +14596,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::Args @@ -14620,7 +14612,7 @@

    Method List

  • -
  • +
  • #initialize PrettyListing @@ -14628,7 +14620,7 @@

    Method List

  • -
  • +
  • #initialize Messages @@ -14636,7 +14628,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Migrator::MigratorDifferentTapsError @@ -14660,7 +14652,7 @@

    Method List

  • -
  • +
  • #initialize Migrator @@ -14668,7 +14660,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Resource::PatchResource @@ -14684,7 +14676,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Cask::Cask @@ -14700,7 +14692,7 @@

    Method List

  • -
  • +
  • #initialize CompilerSelector @@ -14708,7 +14700,7 @@

    Method List

  • -
  • +
  • #initialize CxxStdlib @@ -14716,7 +14708,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Formulary::FormulaAPILoader @@ -14780,7 +14772,7 @@

    Method List

  • -
  • +
  • #initialize Formulary::AliasAPILoader @@ -14788,7 +14780,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize FormulaLock @@ -14812,7 +14804,7 @@

    Method List

  • -
  • +
  • #initialize CaskLock @@ -14820,7 +14812,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Uninstall::DependentsMessage @@ -14828,7 +14820,7 @@

    Method List

  • -
  • +
  • #initialize Utils::AST::FormulaAST @@ -14836,7 +14828,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Audit @@ -14844,7 +14836,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::MinNamedArgumentsError @@ -14892,7 +14884,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::NumberOfNamedArgumentsError @@ -14900,7 +14892,7 @@

    Method List

  • -
  • +
  • #initialize Dependency @@ -14908,7 +14900,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Homebrew::Diagnostic::Checks @@ -14924,7 +14916,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize ShebangDetectionError @@ -15236,7 +15228,7 @@

    Method List

  • -
  • +
  • #initialize CyclicDependencyError @@ -15244,7 +15236,7 @@

    Method List

  • -
  • +
  • #initialize OS::Mac::SDK @@ -15252,7 +15244,7 @@

    Method List

  • -
  • +
  • #initialize PyPI::Package @@ -15260,7 +15252,7 @@

    Method List

  • -
  • +
  • #initialize CacheStoreDatabase @@ -15268,7 +15260,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Cask::Config @@ -15284,7 +15276,7 @@

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize PkgVersion @@ -15308,7 +15300,7 @@

    Method List

  • -
  • +
  • #initialize Requirement @@ -15316,7 +15308,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::TapAuditor @@ -15324,7 +15316,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::API::Download @@ -15332,7 +15324,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Auditor @@ -15340,7 +15332,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Requirements @@ -15356,7 +15348,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Homebrew::VersionBumpInfo @@ -15372,7 +15364,7 @@

    Method List

  • -
  • +
  • #initialize Downloadable @@ -15380,7 +15372,7 @@

    Method List

  • -
  • +
  • #initialize FormulaInfo @@ -15388,7 +15380,7 @@

    Method List

  • -
  • +
  • #initialize Keg::Relocation @@ -15396,7 +15388,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Cask::DSL::Base @@ -15412,7 +15404,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Migrator @@ -15420,7 +15412,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize MacOSVersion::Error @@ -15436,7 +15428,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize SoftwareSpec @@ -15452,7 +15444,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Bottle::Filename @@ -15468,7 +15460,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize BottleSpecification @@ -15484,7 +15476,7 @@

    Method List

  • -
  • +
  • #initialize PourBottleCheck @@ -15492,7 +15484,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Utils::Bottles::TagSpecification @@ -15508,7 +15500,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Bottles::Collector @@ -15516,7 +15508,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Shebang::RewriteInfo @@ -15524,7 +15516,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::BundleVersion @@ -15532,7 +15524,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Installer @@ -15540,7 +15532,7 @@

    Method List

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

    Method List

  • -
  • +
  • #initialize Homebrew::CLI::NamedArgs @@ -15556,7 +15548,7 @@

    Method List

  • -
  • +
  • #initialize GitRepository @@ -15564,7 +15556,7 @@

    Method List

  • -
  • +
  • #initialize SystemCommand @@ -15572,7 +15564,7 @@

    Method List

  • -
  • +
  • #initialize SystemCommand::Result @@ -15580,7 +15572,7 @@

    Method List

  • -
  • +
  • #initialize Version::RegexParser @@ -15588,7 +15580,7 @@

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

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

    Method List

  • -
  • +
  • #initialize Cask::CaskTokenMismatchError @@ -15636,7 +15628,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskQuarantineError @@ -15644,7 +15636,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaAuditor @@ -15652,7 +15644,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaCreator @@ -15660,7 +15652,7 @@

    Method List

  • -
  • +
  • #initialize KegOnlyReason @@ -15668,7 +15660,7 @@

    Method List

  • -
  • +
  • #initialize Language::Python::Virtualenv::Virtualenv @@ -15676,7 +15668,7 @@

    Method List

  • -
  • +
  • #initialize LinkageChecker @@ -15684,7 +15676,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::SourceLocation @@ -15692,7 +15684,7 @@

    Method List

  • -
  • +
  • #initialize UnpackStrategy @@ -15700,7 +15692,7 @@

    Method List

  • -
  • +
  • #initialize Utils::Inreplace::Error @@ -15708,7 +15700,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromContentLoader @@ -15716,7 +15708,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromPathLoader @@ -15724,7 +15716,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromURILoader @@ -15732,7 +15724,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromTapPathLoader @@ -15740,7 +15732,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromTapLoader @@ -15748,7 +15740,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromDefaultTapPathLoader @@ -15756,7 +15748,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromInstanceLoader @@ -15764,7 +15756,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::FromAPILoader @@ -15772,7 +15764,7 @@

    Method List

  • -
  • +
  • #initialize Cask::CaskLoader::NullLoader @@ -15780,7 +15772,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Caveats @@ -15788,7 +15780,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Version @@ -15796,7 +15788,7 @@

    Method List

  • -
  • +
  • #initialize FormulaVersions @@ -15804,7 +15796,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::ResourceAuditor @@ -15812,7 +15804,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::HTTPNotFoundError @@ -15820,7 +15812,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::RateLimitExceededError @@ -15828,7 +15820,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::AuthenticationFailedError @@ -15836,7 +15828,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::MissingAuthenticationError @@ -15844,7 +15836,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::API::ValidationFailedError @@ -15852,7 +15844,7 @@

    Method List

  • -
  • +
  • #initialize BuildEnvironment @@ -15860,7 +15852,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Pkg @@ -15868,7 +15860,7 @@

    Method List

  • -
  • +
  • #initialize Reporter::ReporterRevisionUnsetError @@ -15876,7 +15868,7 @@

    Method List

  • -
  • +
  • #initialize Reporter @@ -15884,7 +15876,7 @@

    Method List

  • -
  • +
  • #initialize ReporterHub @@ -15892,7 +15884,7 @@

    Method List

  • -
  • +
  • #initialize AbstractDownloadStrategy @@ -15900,7 +15892,7 @@

    Method List

  • -
  • +
  • #initialize VCSDownloadStrategy @@ -15908,7 +15900,7 @@

    Method List

  • -
  • +
  • #initialize CurlDownloadStrategy @@ -15916,7 +15908,7 @@

    Method List

  • -
  • +
  • #initialize CurlGitHubPackagesDownloadStrategy @@ -15924,7 +15916,7 @@

    Method List

  • -
  • +
  • #initialize LocalBottleDownloadStrategy @@ -15932,7 +15924,7 @@

    Method List

  • -
  • +
  • #initialize SubversionDownloadStrategy @@ -15940,7 +15932,7 @@

    Method List

  • -
  • +
  • #initialize GitDownloadStrategy @@ -15948,7 +15940,7 @@

    Method List

  • -
  • +
  • #initialize GitHubGitDownloadStrategy @@ -15956,7 +15948,7 @@

    Method List

  • -
  • +
  • #initialize CVSDownloadStrategy @@ -15964,7 +15956,7 @@

    Method List

  • -
  • +
  • #initialize MercurialDownloadStrategy @@ -15972,7 +15964,7 @@

    Method List

  • -
  • +
  • #initialize BazaarDownloadStrategy @@ -15980,7 +15972,7 @@

    Method List

  • -
  • +
  • #initialize FossilDownloadStrategy @@ -15988,7 +15980,7 @@

    Method List

  • -
  • +
  • #initialize FormulaInstaller @@ -15996,7 +15988,7 @@

    Method List

  • -
  • +
  • #initialize LinuxRunnerSpec @@ -16004,7 +15996,7 @@

    Method List

  • -
  • +
  • #initialize MacOSRunnerSpec @@ -16012,7 +16004,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::Container @@ -16020,7 +16012,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::BumpVersionParser @@ -16028,7 +16020,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::DependsOn @@ -16036,7 +16028,7 @@

    Method List

  • -
  • +
  • #initialize LinkageCacheStore @@ -16044,7 +16036,7 @@

    Method List

  • -
  • +
  • #initialize TestRunnerFormula @@ -16052,7 +16044,7 @@

    Method List

  • -
  • +
  • #initialize UnpackStrategy::Dmg::Bom::EmptyError @@ -16060,7 +16052,7 @@

    Method List

  • -
  • +
  • #initialize DependencyCollector @@ -16068,7 +16060,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::FormulaTextAuditor @@ -16076,7 +16068,7 @@

    Method List

  • -
  • +
  • #initialize GitHubRunnerMatrix @@ -16084,7 +16076,7 @@

    Method List

  • -
  • +
  • #initialize GitHub::Actions::Annotation @@ -16092,7 +16084,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Manpage @@ -16100,7 +16092,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Artifact @@ -16108,7 +16100,7 @@

    Method List

  • -
  • +
  • #initialize GitHubArtifactDownloadStrategy @@ -16116,7 +16108,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Installer @@ -16124,7 +16116,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::Relocated @@ -16132,7 +16124,7 @@

    Method List

  • -
  • +
  • #initialize Cask::DSL::ConflictsWith @@ -16140,7 +16132,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::Stanza @@ -16148,7 +16140,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::UnversionedCaskChecker @@ -16156,7 +16148,7 @@

    Method List

  • -
  • +
  • #initialize Homebrew::Livecheck::LivecheckVersion @@ -16164,7 +16156,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::StanzaBlock @@ -16172,7 +16164,7 @@

    Method List

  • -
  • +
  • #initialize ArchRequirement @@ -16180,7 +16172,7 @@

    Method List

  • -
  • +
  • #initialize RuboCop::Cask::AST::CaskHeader @@ -16188,7 +16180,7 @@

    Method List

  • -
  • +
  • #initialize MacOSRequirement @@ -16196,7 +16188,7 @@

    Method List

  • -
  • +
  • #initialize XcodeRequirement @@ -16204,7 +16196,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractArtifact @@ -16212,7 +16204,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractUninstall @@ -16220,7 +16212,7 @@

    Method List

  • -
  • +
  • #initialize StringInreplaceExtension @@ -16228,7 +16220,7 @@

    Method List

  • -
  • +
  • #initialize CodesignRequirement @@ -16236,7 +16228,7 @@

    Method List

  • -
  • +
  • #initialize Cask::Artifact::AbstractFlightBlock @@ -16244,7 +16236,7 @@

    Method List

  • -
  • +
  • #initialize_dup Options @@ -16252,7 +16244,7 @@

    Method List

  • -
  • +
  • #initialize_dup Resource @@ -16260,7 +16252,7 @@

    Method List

  • -
  • +
  • #initialize_dup Downloadable @@ -16268,7 +16260,7 @@

    Method List

  • -
  • +
  • #initialize_dup SoftwareSpec @@ -16276,7 +16268,7 @@

    Method List

  • -
  • +
  • #initialize_dup DependencyCollector @@ -16284,7 +16276,7 @@

    Method List

  • -
  • +
  • inject_dump_stats! Homebrew @@ -16292,7 +16284,7 @@

    Method List

  • -
  • +
  • #inject_file_list Homebrew::Diagnostic::Checks @@ -16300,7 +16292,7 @@

    Method List

  • -
  • +
  • #inner ChildProcessError @@ -16308,7 +16300,7 @@

    Method List

  • -
  • +
  • #inner_class ChildProcessError @@ -16316,7 +16308,7 @@

    Method List

  • -
  • +
  • #inner_stanzas RuboCop::Cop::Cask::CaskHelp @@ -16324,7 +16316,7 @@

    Method List

  • -
  • +
  • #input_path Homebrew::Service @@ -16332,7 +16324,7 @@

    Method List

  • -
  • +
  • #inreplace Formula @@ -16340,7 +16332,7 @@

    Method List

  • -
  • +
  • inreplace Utils::Inreplace @@ -16348,7 +16340,7 @@

    Method List

  • -
  • +
  • inreplace_pairs Utils::Inreplace @@ -16356,7 +16348,7 @@

    Method List

  • -
  • +
  • #inreplace_string StringInreplaceExtension @@ -16364,7 +16356,7 @@

    Method List

  • -
  • +
  • #insert PATH @@ -16372,7 +16364,7 @@

    Method List

  • -
  • +
  • #insert_after! RuboCop::Cop::FormulaAudit::DependencyOrder @@ -16380,7 +16372,7 @@

    Method List

  • -
  • +
  • #inside_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -16388,7 +16380,7 @@

    Method List

  • -
  • +
  • #inspect Keg @@ -16396,7 +16388,7 @@

    Method List

  • -
  • +
  • #inspect EmbeddedPatch @@ -16404,7 +16396,7 @@

    Method List

  • -
  • +
  • #inspect ExternalPatch @@ -16412,7 +16404,7 @@

    Method List

  • -
  • +
  • #inspect Option @@ -16420,7 +16412,7 @@

    Method List

  • -
  • +
  • #inspect Options @@ -16428,7 +16420,7 @@

    Method List

  • -
  • +
  • #inspect Version::Token @@ -16436,7 +16428,7 @@

    Method List

  • -
  • +
  • #inspect Version @@ -16444,7 +16436,7 @@

    Method List

  • -
  • +
  • #inspect Cask::Cask @@ -16452,7 +16444,7 @@

    Method List

  • -
  • +
  • #inspect CompilerFailure @@ -16460,7 +16452,7 @@

    Method List

  • -
  • +
  • #inspect CxxStdlib @@ -16468,7 +16460,7 @@

    Method List

  • -
  • +
  • #inspect Dependency @@ -16476,7 +16468,7 @@

    Method List

  • -
  • +
  • #inspect UsesFromMacOSDependency @@ -16484,7 +16476,7 @@

    Method List

  • -
  • +
  • #inspect Requirement @@ -16492,7 +16484,7 @@

    Method List

  • -
  • +
  • #inspect Dependencies @@ -16500,7 +16492,7 @@

    Method List

  • -
  • +
  • #inspect Requirements @@ -16508,7 +16500,7 @@

    Method List

  • -
  • +
  • #inspect ArchRequirement @@ -16516,7 +16508,7 @@

    Method List

  • -
  • +
  • #inspect MacOSRequirement @@ -16524,7 +16516,7 @@

    Method List

  • -
  • +
  • #inspect XcodeRequirement @@ -16532,7 +16524,7 @@

    Method List

  • -
  • +
  • #install Tap @@ -16540,7 +16532,7 @@

    Method List

  • -
  • +
  • #install CoreTap @@ -16548,7 +16540,7 @@

    Method List

  • -
  • +
  • #install Build @@ -16556,7 +16548,7 @@

    Method List

  • -
  • +
  • #install Debrew::Formula @@ -16564,7 +16556,7 @@

    Method List

  • -
  • +
  • #install Formula @@ -16572,7 +16564,7 @@

    Method List

  • -
  • +
  • install Homebrew @@ -16580,7 +16572,7 @@

    Method List

  • -
  • +
  • #install Cask::Installer @@ -16588,7 +16580,7 @@

    Method List

  • -
  • +
  • #install Pathname @@ -16596,7 +16588,7 @@

    Method List

  • -
  • +
  • #install FormulaInstaller @@ -16604,7 +16596,7 @@

    Method List

  • -
  • +
  • install_args Homebrew @@ -16612,7 +16604,7 @@

    Method List

  • -
  • +
  • #install_artifacts Cask::Installer @@ -16620,7 +16612,7 @@

    Method List

  • -
  • +
  • #install_bottle_for? FormulaInstaller @@ -16628,7 +16620,7 @@

    Method List

  • -
  • +
  • install_bundler! Homebrew @@ -16636,7 +16628,7 @@

    Method List

  • -
  • +
  • install_bundler_gems Homebrew @@ -16644,7 +16636,7 @@

    Method List

  • -
  • +
  • install_bundler_gems! Homebrew @@ -16652,7 +16644,7 @@

    Method List

  • -
  • +
  • install_bundler_gems_args Homebrew @@ -16660,7 +16652,7 @@

    Method List

  • -
  • +
  • install_default_cask_tap_if_necessary Tap @@ -16668,7 +16660,7 @@

    Method List

  • -
  • +
  • #install_dependencies FormulaInstaller @@ -16676,7 +16668,7 @@

    Method List

  • -
  • +
  • #install_dependency FormulaInstaller @@ -16684,7 +16676,7 @@

    Method List

  • -
  • +
  • #install_fetch_deps FormulaInstaller @@ -16692,7 +16684,7 @@

    Method List

  • -
  • +
  • install_formula Homebrew::Upgrade @@ -16700,7 +16692,7 @@

    Method List

  • -
  • +
  • install_formula? Homebrew::Install @@ -16708,7 +16700,7 @@

    Method List

  • -
  • +
  • install_formula_clean! Homebrew::Cleanup @@ -16716,7 +16708,7 @@

    Method List

  • -
  • +
  • install_formulae Homebrew::Install @@ -16724,7 +16716,7 @@

    Method List

  • -
  • +
  • install_from_api_message Homebrew @@ -16732,7 +16724,7 @@

    Method List

  • -
  • +
  • install_gem! Homebrew @@ -16740,7 +16732,7 @@

    Method List

  • -
  • +
  • install_gem_setup_path! Homebrew @@ -16748,7 +16740,7 @@

    Method List

  • -
  • +
  • #install_metafiles Pathname @@ -16756,7 +16748,7 @@

    Method List

  • -
  • +
  • #install_p InstallRenamed @@ -16764,7 +16756,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Pkg @@ -16772,7 +16764,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Moved @@ -16780,7 +16772,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Qlplugin @@ -16788,7 +16780,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Installer::ManualInstaller @@ -16796,7 +16788,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Installer::ScriptInstaller @@ -16804,7 +16796,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Symlinked @@ -16812,7 +16804,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::Mdimporter @@ -16820,7 +16812,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::KeyboardLayout @@ -16828,7 +16820,7 @@

    Method List

  • -
  • +
  • #install_phase Cask::Artifact::AbstractFlightBlock @@ -16836,7 +16828,7 @@

    Method List

  • -
  • +
  • #install_service FormulaInstaller @@ -16844,7 +16836,7 @@

    Method List

  • -
  • +
  • #install_symlink Pathname @@ -16852,7 +16844,7 @@

    Method List

  • -
  • +
  • #install_time Cask::Cask @@ -16860,7 +16852,7 @@

    Method List

  • -
  • +
  • #install_times Messages @@ -16868,7 +16860,7 @@

    Method List

  • -
  • +
  • installation_info Cask::Info @@ -16876,7 +16868,7 @@

    Method List

  • -
  • +
  • installation_instructions OS::Mac::Xcode @@ -16884,7 +16876,7 @@

    Method List

  • -
  • +
  • installation_instructions OS::Mac::CLT @@ -16892,7 +16884,7 @@

    Method List

  • -
  • +
  • installed FormulaInstaller @@ -16900,7 +16892,7 @@

    Method List

  • -
  • +
  • #installed? Tap @@ -16908,7 +16900,7 @@

    Method List

  • -
  • +
  • installed? OS::Mac::Xcode @@ -16916,7 +16908,7 @@

    Method List

  • -
  • +
  • installed? OS::Mac::CLT @@ -16924,7 +16916,7 @@

    Method List

  • -
  • +
  • #installed? Cask::Cask @@ -16932,7 +16924,7 @@

    Method List

  • -
  • +
  • #installed? Dependency @@ -16940,7 +16932,7 @@

    Method List

  • -
  • +
  • #installed? UsesFromMacOSDependency @@ -16948,7 +16940,7 @@

    Method List

  • -
  • +
  • installed? Utils::Service @@ -16956,7 +16948,7 @@

    Method List

  • -
  • +
  • #installed_alias_name Formula @@ -16964,7 +16956,7 @@

    Method List

  • -
  • +
  • #installed_alias_path Formula @@ -16972,7 +16964,7 @@

    Method List

  • -
  • +
  • #installed_alias_target_changed? Formula @@ -16980,7 +16972,7 @@

    Method List

  • -
  • +
  • #installed_as_dependency Tab @@ -16988,7 +16980,7 @@

    Method List

  • -
  • +
  • installed_as_dependency? Homebrew @@ -16996,7 +16988,7 @@

    Method List

  • -
  • +
  • #installed_caskfile Cask::Cask @@ -17004,7 +16996,7 @@

    Method List

  • -
  • +
  • #installed_on_request Tab @@ -17012,7 +17004,7 @@

    Method List

  • -
  • +
  • installed_on_request? Homebrew @@ -17020,7 +17012,7 @@

    Method List

  • -
  • +
  • #installed_specified_name Formula @@ -17028,7 +17020,7 @@

    Method List

  • -
  • +
  • #installed_version Cask::Cask @@ -17036,7 +17028,7 @@

    Method List

  • -
  • +
  • installed_with_alias_path Formula @@ -17044,7 +17036,7 @@

    Method List

  • -
  • +
  • #installer Homebrew::UnversionedCaskChecker @@ -17052,7 +17044,7 @@

    Method List

  • -
  • +
  • #installers Homebrew::UnversionedCaskChecker @@ -17060,7 +17052,7 @@

    Method List

  • -
  • +
  • instance AbstractCoreTap @@ -17068,7 +17060,7 @@

    Method List

  • -
  • +
  • #intel Homebrew::BumpVersionParser @@ -17076,7 +17068,7 @@

    Method List

  • -
  • +
  • intel? Hardware::CPU @@ -17084,7 +17076,7 @@

    Method List

  • -
  • +
  • intel_family Hardware::CPU @@ -17092,7 +17084,7 @@

    Method List

  • -
  • +
  • #interactive_shell Kernel @@ -17100,7 +17092,7 @@

    Method List

  • -
  • +
  • #internal Top Level Namespace @@ -17108,7 +17100,7 @@

    Method List

  • -
  • +
  • internal_cmd_path Commands @@ -17116,7 +17108,7 @@

    Method List

  • -
  • +
  • internal_commands Commands @@ -17124,7 +17116,7 @@

    Method List

  • -
  • +
  • internal_commands_aliases Commands @@ -17132,7 +17124,7 @@

    Method List

  • -
  • +
  • internal_commands_paths Commands @@ -17140,7 +17132,7 @@

    Method List

  • -
  • +
  • internal_dev_cmd_path Commands @@ -17148,7 +17140,7 @@

    Method List

  • -
  • +
  • internal_developer_commands Commands @@ -17156,7 +17148,7 @@

    Method List

  • -
  • +
  • internal_developer_commands_paths Commands @@ -17164,7 +17156,7 @@

    Method List

  • -
  • +
  • #interpreter ELFShim @@ -17172,7 +17164,7 @@

    Method List

  • -
  • +
  • intersection_of_dependents Homebrew @@ -17180,7 +17172,7 @@

    Method List

  • -
  • +
  • #interval Homebrew::Service @@ -17188,7 +17180,7 @@

    Method List

  • -
  • +
  • invalid_cert_flags Utils::Svn @@ -17196,7 +17188,7 @@

    Method List

  • -
  • +
  • #invalid_characters Cask::DSL::Version @@ -17204,7 +17196,7 @@

    Method List

  • -
  • +
  • irb Homebrew @@ -17212,7 +17204,7 @@

    Method List

  • -
  • +
  • irb_args Homebrew @@ -17220,7 +17212,7 @@

    Method List

  • -
  • +
  • is_32_bit? Hardware::CPU @@ -17228,7 +17220,7 @@

    Method List

  • -
  • +
  • is_64_bit? Hardware::CPU @@ -17236,7 +17228,7 @@

    Method List

  • -
  • +
  • #is_a? LazyObject @@ -17244,7 +17236,7 @@

    Method List

  • -
  • +
  • #issues BuildError @@ -17252,7 +17244,7 @@

    Method List

  • -
  • +
  • issues GitHub @@ -17260,7 +17252,7 @@

    Method List

  • -
  • +
  • issues_for_formula GitHub @@ -17268,7 +17260,7 @@

    Method List

  • -
  • +
  • #issues_url Tap @@ -17276,7 +17268,7 @@

    Method List

  • -
  • +
  • #issues_url MethodDeprecatedError @@ -17284,7 +17276,7 @@

    Method List

  • -
  • +
  • items_from_content Homebrew::Livecheck::Strategy::Sparkle @@ -17292,7 +17284,7 @@

    Method List

  • -
  • +
  • java_home Language::Java @@ -17300,7 +17292,7 @@

    Method List

  • -
  • +
  • java_home_env Language::Java @@ -17308,7 +17300,7 @@

    Method List

  • -
  • +
  • #json Bottle::Filename @@ -17316,7 +17308,7 @@

    Method List

  • -
  • +
  • json_info Homebrew @@ -17324,7 +17316,7 @@

    Method List

  • -
  • +
  • json_result! Homebrew::Style @@ -17332,7 +17324,7 @@

    Method List

  • -
  • +
  • json_version Homebrew @@ -17340,7 +17332,7 @@

    Method List

  • -
  • +
  • #keep_alive Homebrew::Service @@ -17348,7 +17340,7 @@

    Method List

  • -
  • +
  • #keep_alive? Homebrew::Service @@ -17356,7 +17348,7 @@

    Method List

  • -
  • +
  • keep_but_prune_recursive_deps Dependency @@ -17364,7 +17356,7 @@

    Method List

  • -
  • +
  • #keg Keg::LinkError @@ -17372,7 +17364,7 @@

    Method List

  • -
  • +
  • #keg LinkageChecker @@ -17380,7 +17372,7 @@

    Method List

  • -
  • +
  • keg_contain? Homebrew @@ -17388,7 +17380,7 @@

    Method List

  • -
  • +
  • keg_contain_absolute_symlink_starting_with? Homebrew @@ -17396,7 +17388,7 @@

    Method List

  • -
  • +
  • #keg_exists? LinkageCacheStore @@ -17404,7 +17396,7 @@

    Method List

  • -
  • +
  • keg_only Formula @@ -17412,7 +17404,7 @@

    Method List

  • -
  • +
  • #keg_only? Formula @@ -17420,7 +17412,7 @@

    Method List

  • -
  • +
  • keg_only? Formulary @@ -17428,7 +17420,7 @@

    Method List

  • -
  • +
  • #keg_only_text Caveats @@ -17436,7 +17428,7 @@

    Method List

  • -
  • +
  • kernel SystemConfig @@ -17444,7 +17436,7 @@

    Method List

  • -
  • +
  • kernel_name OS @@ -17452,7 +17444,7 @@

    Method List

  • -
  • +
  • kernel_version OS @@ -17460,7 +17452,7 @@

    Method List

  • -
  • +
  • #kext_prefix Formula @@ -17468,7 +17460,7 @@

    Method List

  • -
  • +
  • #keyboard_layouts Homebrew::UnversionedCaskChecker @@ -17476,7 +17468,7 @@

    Method List

  • -
  • +
  • keychain_username_password GitHub::API @@ -17484,7 +17476,7 @@

    Method List

  • -
  • +
  • keys BuildEnvironment @@ -17492,7 +17484,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaLoader @@ -17500,7 +17492,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaContentsLoader @@ -17508,7 +17500,7 @@

    Method List

  • -
  • +
  • #klass Formulary::FormulaAPILoader @@ -17516,7 +17508,7 @@

    Method List

  • -
  • +
  • #language Locale @@ -17524,7 +17516,7 @@

    Method List

  • -
  • +
  • language OS::Mac @@ -17532,7 +17524,7 @@

    Method List

  • -
  • +
  • #language Cask::DSL @@ -17540,7 +17532,7 @@

    Method List

  • -
  • +
  • #language Cask::Auditor @@ -17548,7 +17540,7 @@

    Method List

  • -
  • +
  • #language_eval Cask::DSL @@ -17556,7 +17548,7 @@

    Method List

  • -
  • +
  • language_info Cask::Info @@ -17564,7 +17556,7 @@

    Method List

  • -
  • +
  • languages OS::Mac @@ -17572,7 +17564,7 @@

    Method List

  • -
  • +
  • #languages Cask::DSL @@ -17580,7 +17572,7 @@

    Method List

  • -
  • +
  • #languages Cask::Cask @@ -17588,7 +17580,7 @@

    Method List

  • -
  • +
  • #languages Cask::Config @@ -17596,7 +17588,7 @@

    Method List

  • -
  • +
  • #languages= Cask::Config @@ -17604,7 +17596,7 @@

    Method List

  • -
  • +
  • last_commit GitHub @@ -17612,7 +17604,7 @@

    Method List

  • -
  • +
  • last_commit SystemConfig @@ -17620,7 +17612,7 @@

    Method List

  • -
  • +
  • #last_commit VCSDownloadStrategy @@ -17628,7 +17620,7 @@

    Method List

  • -
  • +
  • #last_commit SubversionDownloadStrategy @@ -17636,7 +17628,7 @@

    Method List

  • -
  • +
  • #last_commit GitDownloadStrategy @@ -17644,7 +17636,7 @@

    Method List

  • -
  • +
  • #last_commit MercurialDownloadStrategy @@ -17652,7 +17644,7 @@

    Method List

  • -
  • +
  • #last_commit BazaarDownloadStrategy @@ -17660,7 +17652,7 @@

    Method List

  • -
  • +
  • #last_commit FossilDownloadStrategy @@ -17668,7 +17660,7 @@

    Method List

  • -
  • +
  • #last_commit_date GitRepository @@ -17676,7 +17668,7 @@

    Method List

  • -
  • +
  • #last_committed GitRepository @@ -17684,7 +17676,7 @@

    Method List

  • -
  • +
  • last_revision_commit_of_file Utils::Git @@ -17692,7 +17684,7 @@

    Method List

  • -
  • +
  • last_revision_commit_of_files Utils::Git @@ -17700,7 +17692,7 @@

    Method List

  • -
  • +
  • last_revision_of_file Utils::Git @@ -17708,7 +17700,7 @@

    Method List

  • -
  • +
  • #latest? Cask::DSL::Version @@ -17716,7 +17708,7 @@

    Method List

  • -
  • +
  • latest_clang_version OS::Mac::CLT @@ -17724,7 +17716,7 @@

    Method List

  • -
  • +
  • #latest_formula Formula @@ -17732,7 +17724,7 @@

    Method List

  • -
  • +
  • #latest_head_prefix Formula @@ -17740,7 +17732,7 @@

    Method List

  • -
  • +
  • #latest_head_version Formula @@ -17748,7 +17740,7 @@

    Method List

  • -
  • +
  • latest_sdk_version OS::Mac @@ -17756,7 +17748,7 @@

    Method List

  • -
  • +
  • latest_sdk_version? OS::Mac::Xcode @@ -17764,7 +17756,7 @@

    Method List

  • -
  • +
  • latest_tag SPDX @@ -17772,7 +17764,7 @@

    Method List

  • -
  • +
  • latest_version OS::Mac::Xcode @@ -17780,7 +17772,7 @@

    Method List

  • -
  • +
  • latest_version Repology @@ -17788,7 +17780,7 @@

    Method List

  • -
  • +
  • latest_version Homebrew::Livecheck @@ -17796,7 +17788,7 @@

    Method List

  • -
  • +
  • #launch_only_once Homebrew::Service @@ -17804,7 +17796,7 @@

    Method List

  • -
  • +
  • launchctl Utils::Service @@ -17812,7 +17804,7 @@

    Method List

  • -
  • +
  • launchctl? Utils::Service @@ -17820,7 +17812,7 @@

    Method List

  • -
  • +
  • #launchd_service_path Formula @@ -17828,7 +17820,7 @@

    Method List

  • -
  • +
  • #ldflags SharedEnvExtension @@ -17836,7 +17828,7 @@

    Method List

  • -
  • +
  • #lead Homebrew::Manpages::Variables @@ -17844,7 +17836,7 @@

    Method List

  • -
  • +
  • leaves Homebrew @@ -17852,7 +17844,7 @@

    Method List

  • -
  • +
  • leaves_args Homebrew @@ -17860,7 +17852,7 @@

    Method List

  • -
  • +
  • #lib Formula @@ -17868,7 +17860,7 @@

    Method List

  • -
  • +
  • #lib Keg @@ -17876,7 +17868,7 @@

    Method List

  • -
  • +
  • #libcxx Stdenv @@ -17884,7 +17876,7 @@

    Method List

  • -
  • +
  • #libcxx Superenv @@ -17892,7 +17884,7 @@

    Method List

  • -
  • +
  • #libexec Formula @@ -17900,7 +17892,7 @@

    Method List

  • -
  • +
  • #libexec Keg @@ -17908,7 +17900,7 @@

    Method List

  • -
  • +
  • #libtool_files Keg @@ -17916,7 +17908,7 @@

    Method List

  • -
  • +
  • #libxml2 Stdenv @@ -17924,7 +17916,7 @@

    Method List

  • -
  • +
  • #license Formula @@ -17932,7 +17924,7 @@

    Method List

  • -
  • +
  • license Formula @@ -17940,7 +17932,7 @@

    Method List

  • -
  • +
  • #license Homebrew::FormulaCreator @@ -17948,7 +17940,7 @@

    Method List

  • -
  • +
  • license_data SPDX @@ -17956,7 +17948,7 @@

    Method List

  • -
  • +
  • license_expression_to_string SPDX @@ -17964,7 +17956,7 @@

    Method List

  • -
  • +
  • license_version_info SPDX @@ -17972,7 +17964,7 @@

    Method List

  • -
  • +
  • licenses_forbid_installation? SPDX @@ -17980,7 +17972,7 @@

    Method List

  • -
  • +
  • #line Homebrew::SourceLocation @@ -17988,7 +17980,7 @@

    Method List

  • -
  • +
  • #line_number Homebrew::FormulaTextAuditor @@ -17996,7 +17988,7 @@

    Method List

  • -
  • +
  • #line_number RuboCop::Cop::HelperFunctions @@ -18004,7 +17996,7 @@

    Method List

  • -
  • +
  • #line_start_column RuboCop::Cop::HelperFunctions @@ -18012,7 +18004,7 @@

    Method List

  • -
  • +
  • #link Keg @@ -18020,7 +18012,7 @@

    Method List

  • -
  • +
  • link Homebrew @@ -18028,7 +18020,7 @@

    Method List

  • -
  • +
  • #link FormulaInstaller @@ -18036,7 +18028,7 @@

    Method List

  • -
  • +
  • #link Cask::Artifact::Binary @@ -18044,7 +18036,7 @@

    Method List

  • -
  • +
  • #link Homebrew::Livecheck::Strategy::Sparkle::Item @@ -18052,7 +18044,7 @@

    Method List

  • -
  • +
  • link! Homebrew::Completions @@ -18060,7 +18052,7 @@

    Method List

  • -
  • +
  • link_args Homebrew @@ -18068,7 +18060,7 @@

    Method List

  • -
  • +
  • link_completions Utils::Link @@ -18076,7 +18068,7 @@

    Method List

  • -
  • +
  • link_completions? Homebrew::Completions @@ -18084,7 +18076,7 @@

    Method List

  • -
  • +
  • #link_completions_and_manpages Tap @@ -18092,7 +18084,7 @@

    Method List

  • -
  • +
  • link_completions_manpages_and_docs Homebrew @@ -18100,7 +18092,7 @@

    Method List

  • -
  • +
  • link_docs Utils::Link @@ -18108,7 +18100,7 @@

    Method List

  • -
  • +
  • #link_keg FormulaInstaller @@ -18116,7 +18108,7 @@

    Method List

  • -
  • +
  • link_manpages Utils::Link @@ -18124,7 +18116,7 @@

    Method List

  • -
  • +
  • #link_newname Migrator @@ -18132,7 +18124,7 @@

    Method List

  • -
  • +
  • link_nodenv_versions Homebrew @@ -18140,7 +18132,7 @@

    Method List

  • -
  • +
  • #link_oldname_cellar Migrator @@ -18148,7 +18140,7 @@

    Method List

  • -
  • +
  • #link_oldname_opt Migrator @@ -18156,7 +18148,7 @@

    Method List

  • -
  • +
  • link_overwrite Formula @@ -18164,7 +18156,7 @@

    Method List

  • -
  • +
  • link_pyenv_versions Homebrew @@ -18172,7 +18164,7 @@

    Method List

  • -
  • +
  • link_rbenv_versions Homebrew @@ -18180,7 +18172,7 @@

    Method List

  • -
  • +
  • link_type_english_name Cask::Artifact::Symlinked @@ -18188,7 +18180,7 @@

    Method List

  • -
  • +
  • linkage Homebrew @@ -18196,7 +18188,7 @@

    Method List

  • -
  • +
  • linkage_args Homebrew @@ -18204,7 +18196,7 @@

    Method List

  • -
  • +
  • #linked? Keg @@ -18212,7 +18204,7 @@

    Method List

  • -
  • +
  • #linked? Formula @@ -18220,7 +18212,7 @@

    Method List

  • -
  • +
  • #linked_keg_record Keg @@ -18228,7 +18220,7 @@

    Method List

  • -
  • +
  • #linked_old_linked_kegs Migrator @@ -18236,7 +18228,7 @@

    Method List

  • -
  • +
  • #linked_version Formula @@ -18244,7 +18236,7 @@

    Method List

  • -
  • +
  • linux? OS @@ -18252,7 +18244,7 @@

    Method List

  • -
  • +
  • #linux? GitHubRunner @@ -18260,7 +18252,7 @@

    Method List

  • -
  • +
  • #linux? Utils::Bottles::Tag @@ -18268,7 +18260,7 @@

    Method List

  • -
  • +
  • #linux_compatible? TestRunnerFormula @@ -18276,7 +18268,7 @@

    Method List

  • -
  • +
  • #linux_only? TestRunnerFormula @@ -18284,7 +18276,7 @@

    Method List

  • -
  • +
  • list Homebrew @@ -18292,7 +18284,7 @@

    Method List

  • -
  • +
  • list? Metafiles @@ -18300,7 +18292,7 @@

    Method List

  • -
  • +
  • list_args Homebrew @@ -18308,7 +18300,7 @@

    Method List

  • -
  • +
  • list_artifacts Cask::List @@ -18316,7 +18308,7 @@

    Method List

  • -
  • +
  • list_casks Homebrew @@ -18324,7 +18316,7 @@

    Method List

  • -
  • +
  • list_casks Cask::List @@ -18332,7 +18324,7 @@

    Method List

  • -
  • +
  • list_unbrewed Homebrew @@ -18340,7 +18332,7 @@

    Method List

  • -
  • +
  • little_endian? Hardware::CPU @@ -18348,7 +18340,7 @@

    Method List

  • -
  • +
  • #livecheck Formula @@ -18356,7 +18348,7 @@

    Method List

  • -
  • +
  • livecheck Formula @@ -18364,7 +18356,7 @@

    Method List

  • -
  • +
  • #livecheck Cask::DSL @@ -18372,7 +18364,7 @@

    Method List

  • -
  • +
  • #livecheck Resource @@ -18380,7 +18372,7 @@

    Method List

  • -
  • +
  • livecheck Homebrew @@ -18388,7 +18380,7 @@

    Method List

  • -
  • +
  • livecheck_args Homebrew @@ -18396,7 +18388,7 @@

    Method List

  • -
  • +
  • livecheck_result Homebrew @@ -18404,7 +18396,7 @@

    Method List

  • -
  • +
  • livecheck_strategy_names Homebrew::Livecheck @@ -18412,7 +18404,7 @@

    Method List

  • -
  • +
  • livecheck_url_to_string Homebrew::Livecheck @@ -18420,7 +18412,7 @@

    Method List

  • -
  • +
  • #livecheckable? Formula @@ -18428,7 +18420,7 @@

    Method List

  • -
  • +
  • livecheckable? Formula @@ -18436,7 +18428,7 @@

    Method List

  • -
  • +
  • #livecheckable? Cask::DSL @@ -18444,7 +18436,7 @@

    Method List

  • -
  • +
  • #livecheckable? Resource @@ -18452,7 +18444,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::ILoader @@ -18460,7 +18452,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromContentLoader @@ -18468,7 +18460,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromPathLoader @@ -18476,7 +18468,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromURILoader @@ -18484,7 +18476,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromTapLoader @@ -18492,7 +18484,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromInstanceLoader @@ -18500,7 +18492,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::FromAPILoader @@ -18508,7 +18500,7 @@

    Method List

  • -
  • +
  • #load Cask::CaskLoader::NullLoader @@ -18516,7 +18508,7 @@

    Method List

  • -
  • +
  • load Cask::CaskLoader @@ -18524,7 +18516,7 @@

    Method List

  • -
  • +
  • #load Cask::DSL::DependsOn @@ -18532,7 +18524,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::FromUrlLoader @@ -18540,7 +18532,7 @@

    Method List

  • -
  • +
  • #load_file Formulary::TapLoader @@ -18548,7 +18540,7 @@

    Method List

  • -
  • +
  • load_formula Formulary @@ -18556,7 +18548,7 @@

    Method List

  • -
  • +
  • load_formula_from_api Formulary @@ -18564,7 +18556,7 @@

    Method List

  • -
  • +
  • load_formula_from_path Formulary @@ -18572,7 +18564,7 @@

    Method List

  • -
  • +
  • load_logs Homebrew @@ -18580,7 +18572,7 @@

    Method List

  • -
  • +
  • load_other_tap_strategies Homebrew::Livecheck @@ -18588,7 +18580,7 @@

    Method List

  • -
  • +
  • load_tab Utils::Bottles @@ -18596,7 +18588,7 @@

    Method List

  • -
  • +
  • #loaded_from_api Tab @@ -18604,7 +18596,7 @@

    Method List

  • -
  • +
  • #loader Cask::Cask @@ -18612,7 +18604,7 @@

    Method List

  • -
  • +
  • loader_for Formulary @@ -18620,7 +18612,7 @@

    Method List

  • -
  • +
  • #loader_name_for Keg @@ -18628,7 +18620,7 @@

    Method List

  • -
  • +
  • #loader_path Formula @@ -18636,7 +18628,7 @@

    Method List

  • -
  • +
  • local_npm_install_args Language::Node @@ -18644,7 +18636,7 @@

    Method List

  • -
  • +
  • #location Homebrew::Style::Offense @@ -18652,7 +18644,7 @@

    Method List

  • -
  • +
  • #location Cask::URL @@ -18660,7 +18652,7 @@

    Method List

  • -
  • +
  • #location_expression RuboCop::AST::Node @@ -18668,7 +18660,7 @@

    Method List

  • -
  • +
  • #lock Keg @@ -18676,7 +18668,7 @@

    Method List

  • -
  • +
  • #lock Migrator @@ -18684,7 +18676,7 @@

    Method List

  • -
  • +
  • #lock LockFile @@ -18692,7 +18684,7 @@

    Method List

  • -
  • +
  • locked FormulaInstaller @@ -18700,7 +18692,7 @@

    Method List

  • -
  • +
  • log Homebrew @@ -18708,7 +18700,7 @@

    Method List

  • -
  • +
  • log_args Homebrew @@ -18716,7 +18708,7 @@

    Method List

  • -
  • +
  • #log_path Homebrew::Service @@ -18724,7 +18716,7 @@

    Method List

  • -
  • +
  • lookup FormulaInfo @@ -18732,7 +18724,7 @@

    Method List

  • -
  • +
  • mac? OS @@ -18740,7 +18732,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? MachOShim @@ -18748,7 +18740,7 @@

    Method List

  • -
  • +
  • #mach_o_bundle? Pathname @@ -18756,7 +18748,7 @@

    Method List

  • -
  • +
  • #mach_o_executable? MachOShim @@ -18764,7 +18756,7 @@

    Method List

  • -
  • +
  • #mach_o_files Keg @@ -18772,7 +18764,7 @@

    Method List

  • -
  • +
  • #macos Cask::DSL::DependsOn @@ -18780,7 +18772,7 @@

    Method List

  • -
  • +
  • #macos? GitHubRunner @@ -18788,7 +18780,7 @@

    Method List

  • -
  • +
  • #macos? Utils::Bottles::Tag @@ -18796,7 +18788,7 @@

    Method List

  • -
  • +
  • #macos_compatible? TestRunnerFormula @@ -18804,7 +18796,7 @@

    Method List

  • -
  • +
  • #macos_legacy_timers Homebrew::Service @@ -18812,7 +18804,7 @@

    Method List

  • -
  • +
  • #macos_only? TestRunnerFormula @@ -18820,7 +18812,7 @@

    Method List

  • -
  • +
  • #macos_version GitHubRunner @@ -18828,7 +18820,7 @@

    Method List

  • -
  • +
  • #macosxsdk Stdenv @@ -18836,7 +18828,7 @@

    Method List

  • -
  • +
  • macports_or_fink OS::Mac @@ -18844,7 +18836,7 @@

    Method List

  • -
  • +
  • #magic_number Pathname @@ -18852,7 +18844,7 @@

    Method List

  • -
  • +
  • #maintainers Homebrew::Manpages::Variables @@ -18860,7 +18852,7 @@

    Method List

  • -
  • +
  • #major Version @@ -18868,7 +18860,7 @@

    Method List

  • -
  • +
  • #major Cask::DSL::Version @@ -18876,7 +18868,7 @@

    Method List

  • -
  • +
  • #major_minor Version @@ -18884,7 +18876,7 @@

    Method List

  • -
  • +
  • #major_minor Cask::DSL::Version @@ -18892,7 +18884,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Version @@ -18900,7 +18892,7 @@

    Method List

  • -
  • +
  • #major_minor_patch Cask::DSL::Version @@ -18908,7 +18900,7 @@

    Method List

  • -
  • +
  • major_minor_version Language::Python @@ -18916,7 +18908,7 @@

    Method List

  • -
  • +
  • make_jobs Homebrew::EnvConfig @@ -18924,7 +18916,7 @@

    Method List

  • -
  • +
  • #make_jobs Stdenv @@ -18932,7 +18924,7 @@

    Method List

  • -
  • +
  • #make_jobs Superenv @@ -18940,7 +18932,7 @@

    Method List

  • -
  • +
  • #man Formula @@ -18948,7 +18940,7 @@

    Method List

  • -
  • +
  • #man1 Formula @@ -18956,7 +18948,7 @@

    Method List

  • -
  • +
  • #man2 Formula @@ -18964,7 +18956,7 @@

    Method List

  • -
  • +
  • #man3 Formula @@ -18972,7 +18964,7 @@

    Method List

  • -
  • +
  • #man4 Formula @@ -18980,7 +18972,7 @@

    Method List

  • -
  • +
  • #man5 Formula @@ -18988,7 +18980,7 @@

    Method List

  • -
  • +
  • #man6 Formula @@ -18996,7 +18988,7 @@

    Method List

  • -
  • +
  • #man7 Formula @@ -19004,7 +18996,7 @@

    Method List

  • -
  • +
  • #man8 Formula @@ -19012,7 +19004,7 @@

    Method List

  • -
  • +
  • #manpagedir Cask::Config @@ -19020,7 +19012,7 @@

    Method List

  • -
  • +
  • #manual_command Homebrew::Service @@ -19028,7 +19020,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Git @@ -19036,7 +19028,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnu @@ -19044,7 +19036,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Npm @@ -19052,7 +19044,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xml @@ -19060,7 +19052,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Cpan @@ -19068,7 +19060,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Json @@ -19076,7 +19068,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Pypi @@ -19084,7 +19076,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Xorg @@ -19092,7 +19084,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Yaml @@ -19100,7 +19092,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Gnome @@ -19108,7 +19100,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Apache @@ -19116,7 +19108,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Hackage @@ -19124,7 +19116,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sparkle @@ -19132,7 +19124,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Bitbucket @@ -19140,7 +19132,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Launchpad @@ -19148,7 +19140,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::PageMatch @@ -19156,7 +19148,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::Sourceforge @@ -19164,7 +19156,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::HeaderMatch @@ -19172,7 +19164,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ExtractPlist @@ -19180,7 +19172,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubLatest @@ -19188,7 +19180,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::GithubReleases @@ -19196,7 +19188,7 @@

    Method List

  • -
  • +
  • match? Homebrew::Livecheck::Strategy::ElectronBuilder @@ -19204,7 +19196,7 @@

    Method List

  • -
  • +
  • #max_length Utils::Shebang::RewriteInfo @@ -19212,7 +19204,7 @@

    Method List

  • -
  • +
  • mdfind OS::Mac @@ -19220,7 +19212,7 @@

    Method List

  • -
  • +
  • mdfind_query OS::Mac @@ -19228,7 +19220,7 @@

    Method List

  • -
  • +
  • #mdimporters Homebrew::UnversionedCaskChecker @@ -19236,7 +19228,7 @@

    Method List

  • -
  • +
  • members_by_team GitHub @@ -19244,7 +19236,7 @@

    Method List

  • -
  • +
  • #merge Cask::Config @@ -19252,7 +19244,7 @@

    Method List

  • -
  • +
  • merge Homebrew @@ -19260,7 +19252,7 @@

    Method List

  • -
  • +
  • #merge BuildEnvironment @@ -19268,7 +19260,7 @@

    Method List

  • -
  • +
  • merge_bottle_spec Homebrew @@ -19276,7 +19268,7 @@

    Method List

  • -
  • +
  • #merge_directory Migrator @@ -19284,7 +19276,7 @@

    Method List

  • -
  • +
  • merge_json_files Homebrew @@ -19292,7 +19284,7 @@

    Method List

  • -
  • +
  • merge_pull_request GitHub @@ -19300,7 +19292,7 @@

    Method List

  • -
  • +
  • merge_repeats Dependency @@ -19308,7 +19300,7 @@

    Method List

  • -
  • +
  • merge_variations Homebrew::API @@ -19316,7 +19308,7 @@

    Method List

  • -
  • +
  • #merge_xattrs UnpackStrategy @@ -19324,7 +19316,7 @@

    Method List

  • -
  • +
  • #merged_output SystemCommand::Result @@ -19332,7 +19324,7 @@

    Method List

  • -
  • +
  • #message Homebrew::Style::Offense @@ -19340,7 +19332,7 @@

    Method List

  • -
  • +
  • #message TapRemoteMismatchError @@ -19348,7 +19340,7 @@

    Method List

  • -
  • +
  • #message TapCoreRemoteMismatchError @@ -19356,7 +19348,7 @@

    Method List

  • -
  • +
  • #message FormulaConflictError @@ -19364,7 +19356,7 @@

    Method List

  • -
  • +
  • #message Requirement @@ -19372,7 +19364,7 @@

    Method List

  • -
  • +
  • #message ArchRequirement @@ -19380,7 +19372,7 @@

    Method List

  • -
  • +
  • #message LinuxRequirement @@ -19388,7 +19380,7 @@

    Method List

  • -
  • +
  • #message MacOSRequirement @@ -19396,7 +19388,7 @@

    Method List

  • -
  • +
  • #message XcodeRequirement @@ -19404,7 +19396,7 @@

    Method List

  • -
  • +
  • #message CodesignRequirement @@ -19412,7 +19404,7 @@

    Method List

  • -
  • +
  • messages Homebrew @@ -19420,7 +19412,7 @@

    Method List

  • -
  • +
  • messages_displayed! Utils::Analytics @@ -19428,7 +19420,7 @@

    Method List

  • -
  • +
  • messages_displayed? Utils::Analytics @@ -19436,7 +19428,7 @@

    Method List

  • -
  • +
  • #metadata_main_container_path Cask::Metadata @@ -19444,7 +19436,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Metadata @@ -19452,7 +19444,7 @@

    Method List

  • -
  • +
  • #metadata_subdir Cask::Installer @@ -19460,7 +19452,7 @@

    Method List

  • -
  • +
  • #metadata_timestamped_path Cask::Metadata @@ -19468,7 +19460,7 @@

    Method List

  • -
  • +
  • #metadata_versioned_path Cask::Metadata @@ -19476,7 +19468,7 @@

    Method List

  • -
  • +
  • #method_called? RuboCop::Cop::HelperFunctions @@ -19484,7 +19476,7 @@

    Method List

  • -
  • +
  • #method_called_ever? RuboCop::Cop::HelperFunctions @@ -19492,7 +19484,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL @@ -19500,7 +19492,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::URL::BlockDSL @@ -19508,7 +19500,7 @@

    Method List

  • -
  • +
  • #method_missing Cask::DSL::Base @@ -19516,7 +19508,7 @@

    Method List

  • -
  • +
  • method_missing_message Cask::Utils @@ -19524,7 +19516,7 @@

    Method List

  • -
  • +
  • method_name Commands @@ -19532,7 +19524,7 @@

    Method List

  • -
  • +
  • #method_name RuboCop::Cop::HelperFunctions @@ -19540,7 +19532,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::Stanza @@ -19548,7 +19540,7 @@

    Method List

  • -
  • +
  • #method_node RuboCop::Cask::AST::CaskHeader @@ -19556,7 +19548,7 @@

    Method List

  • -
  • +
  • #migrate Migrator @@ -19564,7 +19556,7 @@

    Method List

  • -
  • +
  • migrate Homebrew @@ -19572,7 +19564,7 @@

    Method List

  • -
  • +
  • #migrate Cask::Migrator @@ -19580,7 +19572,7 @@

    Method List

  • -
  • +
  • migrate_args Homebrew @@ -19588,7 +19580,7 @@

    Method List

  • -
  • +
  • #migrate_cask_rename Reporter @@ -19596,7 +19588,7 @@

    Method List

  • -
  • +
  • #migrate_formula_rename Reporter @@ -19604,7 +19596,7 @@

    Method List

  • -
  • +
  • migrate_gcc_dependents_if_needed Homebrew @@ -19612,7 +19604,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Migrator @@ -19620,7 +19612,7 @@

    Method List

  • -
  • +
  • migrate_if_needed Cask::Migrator @@ -19628,7 +19620,7 @@

    Method List

  • -
  • +
  • #migrate_tap_migration Reporter @@ -19636,7 +19628,7 @@

    Method List

  • -
  • +
  • #migration_needed? Formula @@ -19644,7 +19636,7 @@

    Method List

  • -
  • +
  • #minimum_system_version Homebrew::Livecheck::Strategy::Sparkle::Item @@ -19652,7 +19644,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::Xcode @@ -19660,7 +19652,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Mac::CLT @@ -19668,7 +19660,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Glibc @@ -19676,7 +19668,7 @@

    Method List

  • -
  • +
  • minimum_version OS::Linux::Kernel @@ -19684,7 +19676,7 @@

    Method List

  • -
  • +
  • #minor Version @@ -19692,7 +19684,7 @@

    Method List

  • -
  • +
  • #minor Cask::DSL::Version @@ -19700,7 +19692,7 @@

    Method List

  • -
  • +
  • #minor_patch Cask::DSL::Version @@ -19708,7 +19700,7 @@

    Method List

  • -
  • +
  • mirror Formula @@ -19716,7 +19708,7 @@

    Method List

  • -
  • +
  • #mirror Resource @@ -19724,7 +19716,7 @@

    Method List

  • -
  • +
  • #mirrors Downloadable @@ -19732,7 +19724,7 @@

    Method List

  • -
  • +
  • #mirrors Homebrew::ResourceAuditor @@ -19740,7 +19732,7 @@

    Method List

  • -
  • +
  • #mirrors CurlDownloadStrategy @@ -19748,7 +19740,7 @@

    Method List

  • -
  • +
  • #mirrors CurlApacheMirrorDownloadStrategy @@ -19756,7 +19748,7 @@

    Method List

  • -
  • +
  • missing Homebrew @@ -19764,7 +19756,7 @@

    Method List

  • -
  • +
  • missing_args Homebrew @@ -19772,7 +19764,7 @@

    Method List

  • -
  • +
  • #missing_cask_and_formula_dependencies Cask::Installer @@ -19780,7 +19772,7 @@

    Method List

  • -
  • +
  • #missing_dependencies Formula @@ -19788,7 +19780,7 @@

    Method List

  • -
  • +
  • missing_deps Homebrew::Diagnostic @@ -19796,7 +19788,7 @@

    Method List

  • -
  • +
  • #missing_options Dependency @@ -19804,7 +19796,7 @@

    Method List

  • -
  • +
  • #mkdir Formula @@ -19812,7 +19804,7 @@

    Method List

  • -
  • +
  • #mktemp Formula @@ -19820,7 +19812,7 @@

    Method List

  • -
  • +
  • #mktemp Requirement @@ -19828,7 +19820,7 @@

    Method List

  • -
  • +
  • #mode Homebrew::FormulaCreator @@ -19836,7 +19828,7 @@

    Method List

  • -
  • +
  • #modifier? RuboCop::Cop::FormulaAudit::Miscellaneous @@ -19844,7 +19836,7 @@

    Method List

  • -
  • +
  • #modify_build_environment Dependency @@ -19852,7 +19844,7 @@

    Method List

  • -
  • +
  • #modify_build_environment Requirement @@ -19860,7 +19852,7 @@

    Method List

  • -
  • +
  • #move_to_new_directory Migrator @@ -19868,7 +19860,7 @@

    Method List

  • -
  • +
  • #mtime CacheStoreDatabase @@ -19876,7 +19868,7 @@

    Method List

  • -
  • +
  • #multi_stanza_livecheck_block? RuboCop::Cop::Cask::NoOverrides @@ -19884,7 +19876,7 @@

    Method List

  • -
  • +
  • multiple_short_commits_exist? GitHub @@ -19892,7 +19884,7 @@

    Method List

  • -
  • +
  • #multiple_versions Homebrew::VersionBumpInfo @@ -19900,7 +19892,7 @@

    Method List

  • -
  • +
  • #name Keg @@ -19908,7 +19900,7 @@

    Method List

  • -
  • +
  • #name Tap @@ -19916,7 +19908,7 @@

    Method List

  • -
  • +
  • #name Debrew::Menu::Entry @@ -19924,7 +19916,7 @@

    Method List

  • -
  • +
  • #name Formula @@ -19932,7 +19924,7 @@

    Method List

  • -
  • +
  • #name Option @@ -19940,7 +19932,7 @@

    Method List

  • -
  • +
  • #name Homebrew::Service @@ -19948,7 +19940,7 @@

    Method List

  • -
  • +
  • #name Cask::DSL @@ -19956,7 +19948,7 @@

    Method List

  • -
  • +
  • #name Resource @@ -19964,7 +19956,7 @@

    Method List

  • -
  • +
  • #name CompilerSelector::Compiler @@ -19972,7 +19964,7 @@

    Method List

  • -
  • +
  • #name Formulary::FormulaLoader @@ -19980,7 +19972,7 @@

    Method List

  • -
  • +
  • #name Dependency @@ -19988,7 +19980,7 @@

    Method List

  • -
  • +
  • #name NoSuchKegError @@ -19996,7 +19988,7 @@

    Method List

  • -
  • +
  • #name FormulaOrCaskUnavailableError @@ -20004,7 +19996,7 @@

    Method List

  • -
  • +
  • #name TapFormulaAmbiguityError @@ -20012,7 +20004,7 @@

    Method List

  • -
  • +
  • #name TapFormulaWithOldnameAmbiguityError @@ -20020,7 +20012,7 @@

    Method List

  • -
  • +
  • #name TapUnavailableError @@ -20028,7 +20020,7 @@

    Method List

  • -
  • +
  • #name TapRemoteMismatchError @@ -20036,7 +20028,7 @@

    Method List

  • -
  • +
  • #name TapAlreadyTappedError @@ -20044,7 +20036,7 @@

    Method List

  • -
  • +
  • #name TapNoCustomRemoteError @@ -20052,7 +20044,7 @@

    Method List

  • -
  • +
  • #name PyPI::Package @@ -20060,7 +20052,7 @@

    Method List

  • -
  • +
  • #name Requirement @@ -20068,7 +20060,7 @@

    Method List

  • -
  • +
  • #name Homebrew::TapAuditor @@ -20076,7 +20068,7 @@

    Method List

  • -
  • +
  • #name SoftwareSpec @@ -20084,7 +20076,7 @@

    Method List

  • -
  • +
  • #name Bottle::Filename @@ -20092,7 +20084,7 @@

    Method List

  • -
  • +
  • #name Bottle @@ -20100,7 +20092,7 @@

    Method List

  • -
  • +
  • #name CaskDependent @@ -20108,7 +20100,7 @@

    Method List

  • -
  • +
  • #name Homebrew::FormulaCreator @@ -20116,7 +20108,7 @@

    Method List

  • -
  • +
  • #name FormulaConflict @@ -20124,7 +20116,7 @@

    Method List

  • -
  • +
  • #name Homebrew::ResourceAuditor @@ -20132,7 +20124,7 @@

    Method List

  • -
  • +
  • #name LinuxRunnerSpec @@ -20140,7 +20132,7 @@

    Method List

  • -
  • +
  • #name MacOSRunnerSpec @@ -20148,7 +20140,7 @@

    Method List

  • -
  • +
  • #name TestRunnerFormula @@ -20156,7 +20148,7 @@

    Method List

  • -
  • +
  • name_info Cask::Info @@ -20164,7 +20156,7 @@

    Method List

  • -
  • +
  • name_of Homebrew @@ -20172,7 +20164,7 @@

    Method List

  • -
  • +
  • #name_to_option Homebrew::CLI::Parser @@ -20180,7 +20172,7 @@

    Method List

  • -
  • +
  • #named Homebrew::CLI::Args @@ -20188,7 +20180,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::Uninstall::DependentsMessage @@ -20196,7 +20188,7 @@

    Method List

  • -
  • +
  • #named_args Homebrew::CLI::Parser @@ -20204,7 +20196,7 @@

    Method List

  • -
  • +
  • named_args_type Commands @@ -20212,7 +20204,7 @@

    Method List

  • -
  • +
  • #named_args_type Homebrew::CLI::Parser @@ -20220,7 +20212,7 @@

    Method List

  • -
  • +
  • names Tap @@ -20228,7 +20220,7 @@

    Method List

  • -
  • +
  • needs Formula @@ -20236,7 +20228,7 @@

    Method List

  • -
  • +
  • #needs SoftwareSpec @@ -20244,7 +20236,7 @@

    Method List

  • -
  • +
  • needs_clt_installed? OS::Mac::Xcode @@ -20252,7 +20244,7 @@

    Method List

  • -
  • +
  • needs_migration? Migrator @@ -20260,7 +20252,7 @@

    Method List

  • -
  • +
  • #needs_python? Language::Python::Virtualenv @@ -20268,7 +20260,7 @@

    Method List

  • -
  • +
  • #nested Cask::DSL::Container @@ -20276,7 +20268,7 @@

    Method List

  • -
  • +
  • nested_cache? Homebrew::Cleanup @@ -20284,7 +20276,7 @@

    Method List

  • -
  • +
  • #new_cask Cask::Migrator @@ -20292,7 +20284,7 @@

    Method List

  • -
  • +
  • #new_cask_path Tap @@ -20300,7 +20292,7 @@

    Method List

  • -
  • +
  • #new_cask_path CoreCaskTap @@ -20308,7 +20300,7 @@

    Method List

  • -
  • +
  • #new_cellar Migrator @@ -20316,7 +20308,7 @@

    Method List

  • -
  • +
  • #new_cellar_existed Migrator @@ -20324,7 +20316,7 @@

    Method List

  • -
  • +
  • #new_download_sha Cask::Cask @@ -20332,7 +20324,7 @@

    Method List

  • -
  • +
  • #new_formula_available? Formula @@ -20340,7 +20332,7 @@

    Method List

  • -
  • +
  • #new_formula_path Tap @@ -20348,7 +20340,7 @@

    Method List

  • -
  • +
  • #new_formula_path CoreTap @@ -20356,7 +20348,7 @@

    Method List

  • -
  • +
  • #new_formula_problems Homebrew::FormulaAuditor @@ -20364,7 +20356,7 @@

    Method List

  • -
  • +
  • #new_linked_keg_record Migrator @@ -20372,7 +20364,7 @@

    Method List

  • -
  • +
  • #new_pin_record Migrator @@ -20380,7 +20372,7 @@

    Method List

  • -
  • +
  • #new_version Homebrew::VersionBumpInfo @@ -20388,7 +20380,7 @@

    Method List

  • -
  • +
  • #newname Migrator @@ -20396,7 +20388,7 @@

    Method List

  • -
  • +
  • #nice_version Homebrew::BundleVersion @@ -20404,7 +20396,7 @@

    Method List

  • -
  • +
  • no_changes_message Homebrew @@ -20412,7 +20404,7 @@

    Method List

  • -
  • +
  • #no_dividers Cask::DSL::Version @@ -20420,7 +20412,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Stdenv @@ -20428,7 +20420,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains Superenv @@ -20436,7 +20428,7 @@

    Method List

  • -
  • +
  • #no_fixup_chains_support? SharedEnvExtension @@ -20444,7 +20436,7 @@

    Method List

  • -
  • +
  • no_message_output? Utils::Analytics @@ -20452,7 +20444,7 @@

    Method List

  • -
  • +
  • #no_named? Homebrew::CLI::Args @@ -20460,7 +20452,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Stdenv @@ -20468,7 +20460,7 @@

    Method List

  • -
  • +
  • #no_weak_imports Superenv @@ -20476,7 +20468,7 @@

    Method List

  • -
  • +
  • #no_weak_imports_support? SharedEnvExtension @@ -20484,7 +20476,7 @@

    Method List

  • -
  • +
  • #node_equals? RuboCop::Cop::HelperFunctions @@ -20492,7 +20484,7 @@

    Method List

  • -
  • +
  • nodenv_sync Homebrew @@ -20500,7 +20492,7 @@

    Method List

  • -
  • +
  • nodenv_sync_args Homebrew @@ -20508,7 +20500,7 @@

    Method List

  • -
  • +
  • noecho_gets Homebrew @@ -20516,7 +20508,7 @@

    Method List

  • -
  • +
  • #none_string Homebrew::Diagnostic::Checks @@ -20524,7 +20516,7 @@

    Method List

  • -
  • +
  • normalize_python_package PyPI @@ -20532,7 +20524,7 @@

    Method List

  • -
  • +
  • not_this_run? Utils::Analytics @@ -20540,7 +20532,7 @@

    Method List

  • -
  • +
  • npm_cache_config Language::Node @@ -20548,7 +20540,7 @@

    Method List

  • -
  • +
  • #null? Version::Token @@ -20556,7 +20548,7 @@

    Method List

  • -
  • +
  • #null? Version @@ -20564,7 +20556,7 @@

    Method List

  • -
  • +
  • #number_readable Kernel @@ -20572,7 +20564,7 @@

    Method List

  • -
  • +
  • #numeric? Version::Token @@ -20580,7 +20572,7 @@

    Method List

  • -
  • +
  • #numeric? Version::NumericToken @@ -20588,7 +20580,7 @@

    Method List

  • -
  • +
  • #odebug Kernel @@ -20596,7 +20588,7 @@

    Method List

  • -
  • +
  • #odeprecated Kernel @@ -20604,7 +20596,7 @@

    Method List

  • -
  • +
  • #odie Kernel @@ -20612,7 +20604,7 @@

    Method List

  • -
  • +
  • odie_if_defined Homebrew @@ -20620,7 +20612,7 @@

    Method List

  • -
  • +
  • #odisabled Kernel @@ -20628,7 +20620,7 @@

    Method List

  • -
  • +
  • #ofail Kernel @@ -20636,7 +20628,7 @@

    Method List

  • -
  • +
  • #offending_node RuboCop::Cop::HelperFunctions @@ -20644,7 +20636,7 @@

    Method List

  • -
  • +
  • #official? Tap @@ -20652,7 +20644,7 @@

    Method List

  • -
  • +
  • #official_external_commands Homebrew::Manpages::Variables @@ -20660,7 +20652,7 @@

    Method List

  • -
  • +
  • official_external_commands_paths Commands @@ -20668,7 +20660,7 @@

    Method List

  • -
  • +
  • #oh1 Kernel @@ -20676,7 +20668,7 @@

    Method List

  • -
  • +
  • #oh1_title Kernel @@ -20684,7 +20676,7 @@

    Method List

  • -
  • +
  • #ohai Kernel @@ -20692,7 +20684,7 @@

    Method List

  • -
  • +
  • ohai_if_defined Homebrew @@ -20700,7 +20692,7 @@

    Method List

  • -
  • +
  • #ohai_title Kernel @@ -20708,7 +20700,7 @@

    Method List

  • -
  • +
  • #old DeprecatedOption @@ -20716,7 +20708,7 @@

    Method List

  • -
  • +
  • #old_cask Cask::Migrator @@ -20724,7 +20716,7 @@

    Method List

  • -
  • +
  • #old_cellar Migrator @@ -20732,7 +20724,7 @@

    Method List

  • -
  • +
  • old_checksums Homebrew @@ -20740,7 +20732,7 @@

    Method List

  • -
  • +
  • #old_flag DeprecatedOption @@ -20748,7 +20740,7 @@

    Method List

  • -
  • +
  • #old_full_linked_kegs Migrator @@ -20756,7 +20748,7 @@

    Method List

  • -
  • +
  • #old_installed_formulae Formula @@ -20764,7 +20756,7 @@

    Method List

  • -
  • +
  • #old_linked_kegs Migrator @@ -20772,7 +20764,7 @@

    Method List

  • -
  • +
  • #old_opt_records Migrator @@ -20780,7 +20772,7 @@

    Method List

  • -
  • +
  • #old_pin_link_record Migrator @@ -20788,7 +20780,7 @@

    Method List

  • -
  • +
  • #old_pin_record Migrator @@ -20796,7 +20788,7 @@

    Method List

  • -
  • +
  • #old_tabs Migrator @@ -20804,7 +20796,7 @@

    Method List

  • -
  • +
  • #old_tap Migrator @@ -20812,7 +20804,7 @@

    Method List

  • -
  • +
  • #old_tokens Cask::Cask @@ -20820,7 +20812,7 @@

    Method List

  • -
  • +
  • oldest_cpu Hardware @@ -20828,7 +20820,7 @@

    Method List

  • -
  • +
  • #oldname Formula @@ -20836,7 +20828,7 @@

    Method List

  • -
  • +
  • #oldname Migrator @@ -20844,7 +20836,7 @@

    Method List

  • -
  • +
  • #oldname_opt_records Keg @@ -20852,7 +20844,7 @@

    Method List

  • -
  • +
  • #oldnames Formula @@ -20860,7 +20852,7 @@

    Method List

  • -
  • +
  • oldnames_needing_migration Migrator @@ -20868,7 +20860,7 @@

    Method List

  • -
  • +
  • #on_block RuboCop::Cop::Cask::CaskHelp @@ -20876,7 +20868,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::Variables @@ -20884,7 +20876,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::NoOverrides @@ -20892,7 +20884,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::CaskHelp @@ -20900,7 +20892,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::StanzaGrouping @@ -20908,7 +20900,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnUrlStanza @@ -20916,7 +20908,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnDescStanza @@ -20924,7 +20916,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnSystemConditionals @@ -20932,7 +20924,7 @@

    Method List

  • -
  • +
  • #on_cask RuboCop::Cop::Cask::OnHomepageStanza @@ -20940,7 +20932,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::StanzaOrder @@ -20948,7 +20940,7 @@

    Method List

  • -
  • +
  • #on_cask_stanza_block RuboCop::Cop::Cask::CaskHelp @@ -20956,7 +20948,7 @@

    Method List

  • -
  • +
  • #on_class RuboCop::Cop::FormulaCop @@ -20964,7 +20956,7 @@

    Method List

  • -
  • +
  • #on_desc_stanza RuboCop::Cop::Cask::Desc @@ -20972,7 +20964,7 @@

    Method List

  • -
  • +
  • #on_homepage_stanza RuboCop::Cop::Cask::HomepageUrlTrailingSlash @@ -20980,7 +20972,7 @@

    Method List

  • -
  • +
  • #on_new_investigation RuboCop::Cop::Cask::StanzaOrder @@ -20988,7 +20980,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::IORead @@ -20996,7 +20988,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ShellCommands @@ -21004,7 +20996,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::ExecShellMetacharacters @@ -21012,7 +21004,7 @@

    Method List

  • -
  • +
  • #on_send RuboCop::Cop::Homebrew::MoveToExtendOS @@ -21020,7 +21012,7 @@

    Method List

  • -
  • +
  • #on_system_methods RuboCop::Cop::Cask::CaskHelp @@ -21028,7 +21020,7 @@

    Method List

  • -
  • +
  • #on_system_stanzas RuboCop::Cop::Cask::NoOverrides @@ -21036,7 +21028,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::Url @@ -21044,7 +21036,7 @@

    Method List

  • -
  • +
  • #on_url_stanza RuboCop::Cop::Cask::UrlLegacyCommaSeparators @@ -21052,7 +21044,7 @@

    Method List

  • -
  • +
  • #only_formula_or_cask Homebrew::CLI::Args @@ -21060,7 +21052,7 @@

    Method List

  • -
  • +
  • #only_path Cask::URL::DSL @@ -21068,7 +21060,7 @@

    Method List

  • -
  • +
  • #onoe Kernel @@ -21076,7 +21068,7 @@

    Method List

  • -
  • +
  • open_graphql GitHub::API @@ -21084,7 +21076,7 @@

    Method List

  • -
  • +
  • #open_pull_requests Homebrew::VersionBumpInfo @@ -21092,7 +21084,7 @@

    Method List

  • -
  • +
  • open_rest GitHub::API @@ -21100,7 +21092,7 @@

    Method List

  • -
  • +
  • #openjdk_dep_name_if_applicable Keg @@ -21108,7 +21100,7 @@

    Method List

  • -
  • +
  • #opoo Kernel @@ -21116,7 +21108,7 @@

    Method List

  • -
  • +
  • opoo_if_defined Homebrew @@ -21124,7 +21116,7 @@

    Method List

  • -
  • +
  • #opt_bin Formula @@ -21132,7 +21124,7 @@

    Method List

  • -
  • +
  • #opt_elisp Formula @@ -21140,7 +21132,7 @@

    Method List

  • -
  • +
  • #opt_frameworks Formula @@ -21148,7 +21140,7 @@

    Method List

  • -
  • +
  • #opt_include Formula @@ -21156,7 +21148,7 @@

    Method List

  • -
  • +
  • #opt_lib Formula @@ -21164,7 +21156,7 @@

    Method List

  • -
  • +
  • #opt_libexec Formula @@ -21172,7 +21164,7 @@

    Method List

  • -
  • +
  • #opt_pkgshare Formula @@ -21180,7 +21172,7 @@

    Method List

  • -
  • +
  • #opt_prefix Formula @@ -21188,7 +21180,7 @@

    Method List

  • -
  • +
  • #opt_record Keg @@ -21196,7 +21188,7 @@

    Method List

  • -
  • +
  • #opt_sbin Formula @@ -21204,7 +21196,7 @@

    Method List

  • -
  • +
  • #opt_share Formula @@ -21212,7 +21204,7 @@

    Method List

  • -
  • +
  • optimization_flags Hardware::CPU @@ -21220,7 +21212,7 @@

    Method List

  • -
  • +
  • option Formula @@ -21228,7 +21220,7 @@

    Method List

  • -
  • +
  • #option SoftwareSpec @@ -21236,7 +21228,7 @@

    Method List

  • -
  • +
  • option Formatter @@ -21244,7 +21236,7 @@

    Method List

  • -
  • +
  • option_conflicts Commands @@ -21252,7 +21244,7 @@

    Method List

  • -
  • +
  • #option_defined? Formula @@ -21260,7 +21252,7 @@

    Method List

  • -
  • +
  • #option_defined? SoftwareSpec @@ -21268,7 +21260,7 @@

    Method List

  • -
  • +
  • #option_description Homebrew::CLI::Parser @@ -21276,7 +21268,7 @@

    Method List

  • -
  • +
  • #option_names Dependency @@ -21284,7 +21276,7 @@

    Method List

  • -
  • +
  • #option_names Requirement @@ -21292,7 +21284,7 @@

    Method List

  • -
  • +
  • #option_tags Dependable @@ -21300,7 +21292,7 @@

    Method List

  • -
  • +
  • #option_to_description Homebrew::CLI::Parser @@ -21308,7 +21300,7 @@

    Method List

  • -
  • +
  • #option_to_name Homebrew::CLI::Parser @@ -21316,7 +21308,7 @@

    Method List

  • -
  • +
  • #optional Dependencies @@ -21324,7 +21316,7 @@

    Method List

  • -
  • +
  • #optional? Dependable @@ -21332,7 +21324,7 @@

    Method List

  • -
  • +
  • #options Dependable @@ -21340,7 +21332,7 @@

    Method List

  • -
  • +
  • #options BuildError @@ -21348,7 +21340,7 @@

    Method List

  • -
  • +
  • options Homebrew @@ -21356,7 +21348,7 @@

    Method List

  • -
  • +
  • #options SoftwareSpec @@ -21364,7 +21356,7 @@

    Method List

  • -
  • +
  • #options FormulaInstaller @@ -21372,7 +21364,7 @@

    Method List

  • -
  • +
  • options_args Homebrew @@ -21380,7 +21372,7 @@

    Method List

  • -
  • +
  • #options_only Homebrew::CLI::Args @@ -21388,7 +21380,7 @@

    Method List

  • -
  • +
  • #optlink Keg @@ -21396,7 +21388,7 @@

    Method List

  • -
  • +
  • #optlinked? Keg @@ -21404,7 +21396,7 @@

    Method List

  • -
  • +
  • #optlinked? Formula @@ -21412,7 +21404,7 @@

    Method List

  • -
  • +
  • origin SystemConfig @@ -21420,7 +21412,7 @@

    Method List

  • -
  • +
  • #origin_branch_name GitRepository @@ -21428,7 +21420,7 @@

    Method List

  • -
  • +
  • #origin_has_branch? GitRepository @@ -21436,7 +21428,7 @@

    Method List

  • -
  • +
  • #origin_url GitRepository @@ -21444,7 +21436,7 @@

    Method List

  • -
  • +
  • #origin_url= GitRepository @@ -21452,7 +21444,7 @@

    Method List

  • -
  • +
  • os Homebrew::SimulateSystem @@ -21460,7 +21452,7 @@

    Method List

  • -
  • +
  • #os Homebrew::Livecheck::Strategy::Sparkle::Item @@ -21468,7 +21460,7 @@

    Method List

  • -
  • +
  • #os_arch_combinations Homebrew::CLI::Args @@ -21476,7 +21468,7 @@

    Method List

  • -
  • +
  • os_condition_met? OnSystem @@ -21484,7 +21476,7 @@

    Method List

  • -
  • +
  • os_version OS::Linux @@ -21492,7 +21484,7 @@

    Method List

  • -
  • +
  • outdated Homebrew @@ -21500,7 +21492,7 @@

    Method List

  • -
  • +
  • #outdated? Cask::Cask @@ -21508,7 +21500,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::Xcode @@ -21516,7 +21508,7 @@

    Method List

  • -
  • +
  • outdated? OS::Mac::CLT @@ -21524,7 +21516,7 @@

    Method List

  • -
  • +
  • outdated_args Homebrew @@ -21532,7 +21524,7 @@

    Method List

  • -
  • +
  • outdated_casks Homebrew @@ -21540,7 +21532,7 @@

    Method List

  • -
  • +
  • #outdated_download_sha? Cask::Cask @@ -21548,7 +21540,7 @@

    Method List

  • -
  • +
  • outdated_formulae Homebrew @@ -21556,7 +21548,7 @@

    Method List

  • -
  • +
  • outdated_formulae_casks Homebrew @@ -21564,7 +21556,7 @@

    Method List

  • -
  • +
  • #outdated_info Cask::Cask @@ -21572,7 +21564,7 @@

    Method List

  • -
  • +
  • outdated_kegs Homebrew::Upgrade @@ -21580,7 +21572,7 @@

    Method List

  • -
  • +
  • #outdated_release? MacOSVersion @@ -21588,7 +21580,7 @@

    Method List

  • -
  • +
  • #outdated_version Cask::Cask @@ -21596,7 +21588,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::DeveloperDependentsMessage @@ -21604,7 +21596,7 @@

    Method List

  • -
  • +
  • #output Homebrew::Uninstall::NondeveloperDependentsMessage @@ -21612,7 +21604,7 @@

    Method List

  • -
  • +
  • #output ErrorDuringExecution @@ -21620,7 +21612,7 @@

    Method List

  • -
  • +
  • output Utils::Analytics @@ -21628,7 +21620,7 @@

    Method List

  • -
  • +
  • output_analytics Utils::Analytics @@ -21636,7 +21628,7 @@

    Method List

  • -
  • +
  • output_github_packages_downloads Utils::Analytics @@ -21644,7 +21636,7 @@

    Method List

  • -
  • +
  • output_lost_bottles Homebrew @@ -21652,7 +21644,7 @@

    Method List

  • -
  • +
  • output_total Homebrew @@ -21660,7 +21652,7 @@

    Method List

  • -
  • +
  • output_unbottled Homebrew @@ -21668,7 +21660,7 @@

    Method List

  • -
  • +
  • output_update_report Homebrew @@ -21676,7 +21668,7 @@

    Method List

  • -
  • +
  • overridable_java_home_env Language::Java @@ -21684,7 +21676,7 @@

    Method List

  • -
  • +
  • #owner Resource @@ -21692,7 +21684,7 @@

    Method List

  • -
  • +
  • #owner SoftwareSpec @@ -21700,7 +21692,7 @@

    Method List

  • -
  • +
  • #owner Homebrew::ResourceAuditor @@ -21708,7 +21700,7 @@

    Method List

  • -
  • +
  • #owner= ExternalPatch @@ -21716,7 +21708,7 @@

    Method List

  • -
  • +
  • owner_uid Homebrew @@ -21724,7 +21716,7 @@

    Method List

  • -
  • +
  • pack_for_installation Language::Node @@ -21732,7 +21724,7 @@

    Method List

  • -
  • +
  • #package_count Messages @@ -21740,7 +21732,7 @@

    Method List

  • -
  • +
  • #package_id Cask::Pkg @@ -21748,7 +21740,7 @@

    Method List

  • -
  • +
  • #package_installed Messages @@ -21756,7 +21748,7 @@

    Method List

  • -
  • +
  • package_or_resource_name Homebrew::Livecheck @@ -21764,7 +21756,7 @@

    Method List

  • -
  • +
  • package_or_resource_skip Homebrew::Livecheck::SkipConditions @@ -21772,7 +21764,7 @@

    Method List

  • -
  • +
  • page_content Homebrew::Livecheck::Strategy @@ -21780,7 +21772,7 @@

    Method List

  • -
  • +
  • page_headers Homebrew::Livecheck::Strategy @@ -21788,7 +21780,7 @@

    Method List

  • -
  • +
  • paginate_rest GitHub::API @@ -21796,7 +21788,7 @@

    Method List

  • -
  • +
  • #pair_node RuboCop::Cask::AST::CaskHeader @@ -21804,7 +21796,7 @@

    Method List

  • -
  • +
  • #pairs Cask::DSL::Container @@ -21812,7 +21804,7 @@

    Method List

  • -
  • +
  • #parameters RuboCop::Cop::HelperFunctions @@ -21820,7 +21812,7 @@

    Method List

  • -
  • +
  • #parameters_passed? RuboCop::Cop::HelperFunctions @@ -21828,7 +21820,7 @@

    Method List

  • -
  • +
  • parent Utils::Shell @@ -21836,7 +21828,7 @@

    Method List

  • -
  • +
  • #parent Homebrew::CLI::NamedArgs @@ -21844,7 +21836,7 @@

    Method List

  • -
  • +
  • parse Locale @@ -21852,7 +21844,7 @@

    Method List

  • -
  • +
  • parse Version @@ -21860,7 +21852,7 @@

    Method List

  • -
  • +
  • #parse Homebrew::CLI::Parser @@ -21868,7 +21860,7 @@

    Method List

  • -
  • +
  • parse PkgVersion @@ -21876,7 +21868,7 @@

    Method List

  • -
  • +
  • #parse Version::Parser @@ -21884,7 +21876,7 @@

    Method List

  • -
  • +
  • #parse Version::RegexParser @@ -21892,7 +21884,7 @@

    Method List

  • -
  • +
  • parse_api_response Repology @@ -21900,7 +21892,7 @@

    Method List

  • -
  • +
  • parse_author! Utils @@ -21908,7 +21900,7 @@

    Method List

  • -
  • +
  • #parse_cask_version Homebrew::BumpVersionParser @@ -21916,7 +21908,7 @@

    Method List

  • -
  • +
  • #parse_content IgnoreDirectiveDocstringParser @@ -21924,7 +21916,7 @@

    Method List

  • -
  • +
  • #parse_cron Homebrew::Service @@ -21932,7 +21924,7 @@

    Method List

  • -
  • +
  • parse_curl_output Utils::Curl @@ -21940,7 +21932,7 @@

    Method List

  • -
  • +
  • parse_json Homebrew::Livecheck::Strategy::Json @@ -21948,7 +21940,7 @@

    Method List

  • -
  • +
  • parse_json_files Homebrew @@ -21956,7 +21948,7 @@

    Method List

  • -
  • +
  • parse_license_expression SPDX @@ -21964,7 +21956,7 @@

    Method List

  • -
  • +
  • #parse_remaining Homebrew::CLI::Parser @@ -21972,7 +21964,7 @@

    Method List

  • -
  • +
  • #parse_version Homebrew::BumpVersionParser @@ -21980,7 +21972,7 @@

    Method List

  • -
  • +
  • parse_xml Homebrew::Livecheck::Strategy::Xml @@ -21988,7 +21980,7 @@

    Method List

  • -
  • +
  • parse_yaml Homebrew::Livecheck::Strategy::Yaml @@ -21996,7 +21988,7 @@

    Method List

  • -
  • +
  • #parsed_homebrew_version Tab @@ -22004,7 +21996,7 @@

    Method List

  • -
  • +
  • pat_blurb GitHub @@ -22012,7 +22004,7 @@

    Method List

  • -
  • +
  • #patch Debrew::Formula @@ -22020,7 +22012,7 @@

    Method List

  • -
  • +
  • patch Formula @@ -22028,7 +22020,7 @@

    Method List

  • -
  • +
  • #patch Version @@ -22036,7 +22028,7 @@

    Method List

  • -
  • +
  • #patch Resource @@ -22044,7 +22036,7 @@

    Method List

  • -
  • +
  • #patch SoftwareSpec @@ -22052,7 +22044,7 @@

    Method List

  • -
  • +
  • #patch Cask::DSL::Version @@ -22060,7 +22052,7 @@

    Method List

  • -
  • +
  • #patch! ELFShim @@ -22068,7 +22060,7 @@

    Method List

  • -
  • +
  • #patch_files Resource::PatchResource @@ -22076,7 +22068,7 @@

    Method List

  • -
  • +
  • #patchelf_patcher ELFShim @@ -22084,7 +22076,7 @@

    Method List

  • -
  • +
  • #patches Resource @@ -22092,7 +22084,7 @@

    Method List

  • -
  • +
  • #patches SoftwareSpec @@ -22100,7 +22092,7 @@

    Method List

  • -
  • +
  • #path Tap @@ -22108,7 +22100,7 @@

    Method List

  • -
  • +
  • #path DATAPatch @@ -22116,7 +22108,7 @@

    Method List

  • -
  • +
  • #path Formula @@ -22124,7 +22116,7 @@

    Method List

  • -
  • +
  • path Commands @@ -22132,7 +22124,7 @@

    Method List

  • -
  • +
  • #path Formulary::FormulaLoader @@ -22140,7 +22132,7 @@

    Method List

  • -
  • +
  • path Formulary @@ -22148,7 +22140,7 @@

    Method List

  • -
  • +
  • #path LockFile @@ -22156,7 +22148,7 @@

    Method List

  • -
  • +
  • path Utils::Git @@ -22164,7 +22156,7 @@

    Method List

  • -
  • +
  • path Cask::Cache @@ -22172,7 +22164,7 @@

    Method List

  • -
  • +
  • #path FormulaClassUnavailableErrorModule @@ -22180,7 +22172,7 @@

    Method List

  • -
  • +
  • #path OS::Mac::SDK @@ -22188,7 +22180,7 @@

    Method List

  • -
  • +
  • #path FormulaPin @@ -22196,7 +22188,7 @@

    Method List

  • -
  • +
  • #path Homebrew::TapAuditor @@ -22204,7 +22196,7 @@

    Method List

  • -
  • +
  • path Cask::Caskroom @@ -22212,7 +22204,7 @@

    Method List

  • -
  • +
  • #path Cask::CaskQuarantineError @@ -22220,14 +22212,6 @@

    Method List

  • -
  • -
    - #path - Homebrew::FormulaCreator -
    -
  • - -
  • #path @@ -30285,14 +30269,6 @@

    Method List

  • -
    - #update_path - Homebrew::FormulaCreator -
    -
  • - - -
  • update_pypi_url PyPI @@ -30300,7 +30276,7 @@

    Method List

  • -
  • +
  • update_python_resources Homebrew @@ -30308,7 +30284,7 @@

    Method List

  • -
  • +
  • update_python_resources! PyPI @@ -30316,7 +30292,7 @@

    Method List

  • -
  • +
  • update_python_resources_args Homebrew @@ -30324,7 +30300,7 @@

    Method List

  • -
  • +
  • update_report Homebrew @@ -30332,7 +30308,7 @@

    Method List

  • -
  • +
  • update_report_args Homebrew @@ -30340,7 +30316,7 @@

    Method List

  • -
  • +
  • update_shell_completions! Homebrew::Completions @@ -30348,7 +30324,7 @@

    Method List

  • -
  • +
  • update_sponsors Homebrew @@ -30356,7 +30332,7 @@

    Method List

  • -
  • +
  • update_sponsors_args Homebrew @@ -30364,7 +30340,7 @@

    Method List

  • -
  • +
  • #update_tabs Migrator @@ -30372,7 +30348,7 @@

    Method List

  • -
  • +
  • update_test Homebrew @@ -30380,7 +30356,7 @@

    Method List

  • -
  • +
  • update_test_args Homebrew @@ -30388,7 +30364,7 @@

    Method List

  • -
  • +
  • #updated? Reporter @@ -30396,7 +30372,7 @@

    Method List

  • -
  • +
  • upgrade Homebrew @@ -30404,7 +30380,7 @@

    Method List

  • -
  • +
  • upgrade_args Homebrew @@ -30412,7 +30388,7 @@

    Method List

  • -
  • +
  • upgrade_cask Cask::Upgrade @@ -30420,7 +30396,7 @@

    Method List

  • -
  • +
  • upgrade_casks Cask::Upgrade @@ -30428,7 +30404,7 @@

    Method List

  • -
  • +
  • upgrade_formulae Homebrew::Upgrade @@ -30436,7 +30412,7 @@

    Method List

  • -
  • +
  • upgrade_outdated_casks Homebrew @@ -30444,7 +30420,7 @@

    Method List

  • -
  • +
  • upgrade_outdated_formulae Homebrew @@ -30452,7 +30428,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubPackages @@ -30460,7 +30436,7 @@

    Method List

  • -
  • +
  • #upload_bottles GitHubReleases @@ -30468,7 +30444,7 @@

    Method List

  • -
  • +
  • upload_release_asset GitHub @@ -30476,7 +30452,7 @@

    Method List

  • -
  • +
  • #uri Cask::URL::DSL @@ -30484,7 +30460,7 @@

    Method List

  • -
  • +
  • url Formula @@ -30492,7 +30468,7 @@

    Method List

  • -
  • +
  • #url Cask::DSL @@ -30500,7 +30476,7 @@

    Method List

  • -
  • +
  • #url Cask::URL::BlockDSL::PageWithURL @@ -30508,7 +30484,7 @@

    Method List

  • -
  • +
  • #url Resource @@ -30516,7 +30492,7 @@

    Method List

  • -
  • +
  • #url Formulary::FromUrlLoader @@ -30524,7 +30500,7 @@

    Method List

  • -
  • +
  • #url Livecheck @@ -30532,7 +30508,7 @@

    Method List

  • -
  • +
  • #url Downloadable @@ -30540,7 +30516,7 @@

    Method List

  • -
  • +
  • #url Cask::Download @@ -30548,7 +30524,7 @@

    Method List

  • -
  • +
  • #url SoftwareSpec @@ -30556,7 +30532,7 @@

    Method List

  • -
  • +
  • #url Homebrew::FormulaCreator @@ -30564,7 +30540,7 @@

    Method List

  • -
  • +
  • url Formatter @@ -30572,7 +30548,7 @@

    Method List

  • -
  • +
  • #url Cask::CaskLoader::FromURILoader @@ -30580,7 +30556,7 @@

    Method List

  • -
  • +
  • #url Homebrew::ResourceAuditor @@ -30588,7 +30564,7 @@

    Method List

  • -
  • +
  • #url AbstractDownloadStrategy @@ -30596,7 +30572,7 @@

    Method List

  • -
  • +
  • #url Homebrew::Livecheck::Strategy::Sparkle::Item @@ -30604,7 +30580,7 @@

    Method List

  • -
  • +
  • #url_encode Bottle::Filename @@ -30612,7 +30588,7 @@

    Method List

  • -
  • +
  • url_protected_by_cloudflare? Utils::Curl @@ -30620,7 +30596,7 @@

    Method List

  • -
  • +
  • url_protected_by_incapsula? Utils::Curl @@ -30628,7 +30604,7 @@

    Method List

  • -
  • +
  • url_to GitHub @@ -30636,7 +30612,7 @@

    Method List

  • -
  • +
  • #usage_banner Homebrew::CLI::Parser @@ -30644,7 +30620,7 @@

    Method List

  • -
  • +
  • #usage_banner_text Homebrew::CLI::Parser @@ -30652,7 +30628,7 @@

    Method List

  • -
  • +
  • use CacheStoreDatabase @@ -30660,7 +30636,7 @@

    Method List

  • -
  • +
  • use_buildpulse? Homebrew @@ -30668,7 +30644,7 @@

    Method List

  • -
  • +
  • use_homebrew_curl? Homebrew::Livecheck @@ -30676,7 +30652,7 @@

    Method List

  • -
  • +
  • #use_macos_install? UsesFromMacOSDependency @@ -30684,7 +30660,7 @@

    Method List

  • -
  • +
  • #use_system_ruby? Homebrew::Cleanup @@ -30692,7 +30668,7 @@

    Method List

  • -
  • +
  • #used_options Tab @@ -30700,7 +30676,7 @@

    Method List

  • -
  • +
  • #user Tap @@ -30708,7 +30684,7 @@

    Method List

  • -
  • +
  • #user TapFormulaUnavailableError @@ -30716,7 +30692,7 @@

    Method List

  • -
  • +
  • user GitHub @@ -30724,7 +30700,7 @@

    Method List

  • -
  • +
  • #user_agent Cask::URL::DSL @@ -30732,7 +30708,7 @@

    Method List

  • -
  • +
  • user_gem_groups Homebrew @@ -30740,7 +30716,7 @@

    Method List

  • -
  • +
  • user_site_packages Language::Python @@ -30748,7 +30724,7 @@

    Method List

  • -
  • +
  • #user_tilde Homebrew::Diagnostic::Checks @@ -30756,7 +30732,7 @@

    Method List

  • -
  • +
  • user_vendor_version Homebrew @@ -30764,7 +30740,7 @@

    Method List

  • -
  • +
  • uses Homebrew @@ -30772,7 +30748,7 @@

    Method List

  • -
  • +
  • uses_args Homebrew @@ -30780,7 +30756,7 @@

    Method List

  • -
  • +
  • uses_from_macos Formula @@ -30788,7 +30764,7 @@

    Method List

  • -
  • +
  • #uses_from_macos SoftwareSpec @@ -30796,7 +30772,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? Dependency @@ -30804,7 +30780,7 @@

    Method List

  • -
  • +
  • #uses_from_macos? UsesFromMacOSDependency @@ -30812,7 +30788,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_elements SoftwareSpec @@ -30820,7 +30796,7 @@

    Method List

  • -
  • +
  • #uses_from_macos_names SoftwareSpec @@ -30828,7 +30804,7 @@

    Method List

  • -
  • +
  • #using URL @@ -30836,7 +30812,7 @@

    Method List

  • -
  • +
  • #using Cask::URL::DSL @@ -30844,7 +30820,7 @@

    Method List

  • -
  • +
  • #using Resource @@ -30852,7 +30828,7 @@

    Method List

  • -
  • +
  • #using Homebrew::ResourceAuditor @@ -30860,7 +30836,7 @@

    Method List

  • -
  • +
  • valid_aliases? Readall @@ -30868,7 +30844,7 @@

    Method List

  • -
  • +
  • valid_casks? Readall @@ -30876,7 +30852,7 @@

    Method List

  • -
  • +
  • #valid_combination? Utils::Bottles::Tag @@ -30884,7 +30860,7 @@

    Method List

  • -
  • +
  • valid_formulae? Readall @@ -30892,7 +30868,7 @@

    Method List

  • -
  • +
  • valid_gem_groups Homebrew @@ -30900,7 +30876,7 @@

    Method List

  • -
  • +
  • valid_internal_cmd? Commands @@ -30908,7 +30884,7 @@

    Method List

  • -
  • +
  • valid_internal_dev_cmd? Commands @@ -30916,7 +30892,7 @@

    Method List

  • -
  • +
  • #valid_library_extension? FormulaCellarChecks @@ -30924,7 +30900,7 @@

    Method List

  • -
  • +
  • valid_license? SPDX @@ -30932,7 +30908,7 @@

    Method List

  • -
  • +
  • valid_license_exception? SPDX @@ -30940,7 +30916,7 @@

    Method List

  • -
  • +
  • #valid_pypi_package? PyPI::Package @@ -30948,7 +30924,7 @@

    Method List

  • -
  • +
  • valid_ruby_syntax? Readall @@ -30956,7 +30932,7 @@

    Method List

  • -
  • +
  • valid_tap? Readall @@ -30964,7 +30940,7 @@

    Method List

  • -
  • +
  • validate_file Utils::Tar @@ -30972,7 +30948,7 @@

    Method List

  • -
  • +
  • #validate_options Homebrew::CLI::Parser @@ -30980,7 +30956,7 @@

    Method List

  • -
  • +
  • #value Version::Token @@ -30988,7 +30964,7 @@

    Method List

  • -
  • +
  • #value Version::StringToken @@ -30996,7 +30972,7 @@

    Method List

  • -
  • +
  • #value Version::NumericToken @@ -31004,7 +30980,7 @@

    Method List

  • -
  • +
  • #value Homebrew::CLI::Args @@ -31012,7 +30988,7 @@

    Method List

  • -
  • +
  • #var Formula @@ -31020,7 +30996,7 @@

    Method List

  • -
  • +
  • vendor_gems Homebrew @@ -31028,7 +31004,7 @@

    Method List

  • -
  • +
  • vendor_gems_args Homebrew @@ -31036,7 +31012,7 @@

    Method List

  • -
  • +
  • #verbose? Context::ContextStruct @@ -31044,7 +31020,7 @@

    Method List

  • -
  • +
  • #verbose? Context @@ -31052,7 +31028,7 @@

    Method List

  • -
  • +
  • verbose? Homebrew @@ -31060,7 +31036,7 @@

    Method List

  • -
  • +
  • #verified Cask::URL::DSL @@ -31068,7 +31044,7 @@

    Method List

  • -
  • +
  • #verify_checksum Pathname @@ -31076,7 +31052,7 @@

    Method List

  • -
  • +
  • #verify_deps_exist FormulaInstaller @@ -31084,7 +31060,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Downloadable @@ -31092,7 +31068,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity Cask::Download @@ -31100,7 +31076,7 @@

    Method List

  • -
  • +
  • #verify_download_integrity HeadSoftwareSpec @@ -31108,7 +31084,7 @@

    Method List

  • -
  • +
  • #verify_has_sha Cask::Installer @@ -31116,7 +31092,7 @@

    Method List

  • -
  • +
  • #verify_order_in_source RuboCop::Cop::FormulaAudit::DependencyOrder @@ -31124,7 +31100,7 @@

    Method List

  • -
  • +
  • #version Keg @@ -31132,7 +31108,7 @@

    Method List

  • -
  • +
  • #version URL @@ -31140,7 +31116,7 @@

    Method List

  • -
  • +
  • version OS::Mac @@ -31148,7 +31124,7 @@

    Method List

  • -
  • +
  • #version Formula @@ -31156,7 +31132,7 @@

    Method List

  • -
  • +
  • version Formula @@ -31164,7 +31140,7 @@

    Method List

  • -
  • +
  • #version Cask::DSL @@ -31172,7 +31148,7 @@

    Method List

  • -
  • +
  • version OS::Mac::Xcode @@ -31180,7 +31156,7 @@

    Method List

  • -
  • +
  • version OS::Mac::CLT @@ -31188,7 +31164,7 @@

    Method List

  • -
  • +
  • #version Resource @@ -31196,7 +31172,7 @@

    Method List

  • -
  • +
  • #version CompilerFailure @@ -31204,7 +31180,7 @@

    Method List

  • -
  • +
  • #version CompilerSelector::Compiler @@ -31212,7 +31188,7 @@

    Method List

  • -
  • +
  • version Utils::Git @@ -31220,7 +31196,7 @@

    Method List

  • -
  • +
  • version Utils::Svn @@ -31228,7 +31204,7 @@

    Method List

  • -
  • +
  • #version OS::Mac::SDK @@ -31236,7 +31212,7 @@

    Method List

  • -
  • +
  • #version PyPI::Package @@ -31244,7 +31220,7 @@

    Method List

  • -
  • +
  • #version PkgVersion @@ -31252,7 +31228,7 @@

    Method List

  • -
  • +
  • #version Downloadable @@ -31260,7 +31236,7 @@

    Method List

  • -
  • +
  • #version FormulaInfo @@ -31268,7 +31244,7 @@

    Method List

  • -
  • +
  • #version Cask::Download @@ -31276,7 +31252,7 @@

    Method List

  • -
  • +
  • #version MacOSVersion::Error @@ -31284,7 +31260,7 @@

    Method List

  • -
  • +
  • #version Bottle::Filename @@ -31292,7 +31268,7 @@

    Method List

  • -
  • +
  • #version Homebrew::BundleVersion @@ -31300,7 +31276,7 @@

    Method List

  • -
  • +
  • version OS::Linux::Glibc @@ -31308,7 +31284,7 @@

    Method List

  • -
  • +
  • #version Homebrew::FormulaCreator @@ -31316,7 +31292,7 @@

    Method List

  • -
  • +
  • #version Homebrew::ResourceAuditor @@ -31324,7 +31300,7 @@

    Method List

  • -
  • +
  • #version MacOSRequirement @@ -31332,7 +31308,7 @@

    Method List

  • -
  • +
  • #version XcodeRequirement @@ -31340,7 +31316,7 @@

    Method List

  • -
  • +
  • #version= PyPI::Package @@ -31348,7 +31324,7 @@

    Method List

  • -
  • +
  • #version_name Homebrew::VersionBumpInfo @@ -31356,7 +31332,7 @@

    Method List

  • -
  • +
  • version_rebuild GitHubPackages @@ -31364,7 +31340,7 @@

    Method List

  • -
  • +
  • #version_scheme Tab @@ -31372,7 +31348,7 @@

    Method List

  • -
  • +
  • #version_scheme Formula @@ -31380,7 +31356,7 @@

    Method List

  • -
  • +
  • #version_specified? MacOSRequirement @@ -31388,7 +31364,7 @@

    Method List

  • -
  • +
  • #versioned_formula? Formula @@ -31396,7 +31372,7 @@

    Method List

  • -
  • +
  • #versioned_formula? KegOnlyReason @@ -31404,7 +31380,7 @@

    Method List

  • -
  • +
  • #versioned_formula? RuboCop::Cop::FormulaCop @@ -31412,7 +31388,7 @@

    Method List

  • -
  • +
  • #versioned_formulae Formula @@ -31420,7 +31396,7 @@

    Method List

  • -
  • +
  • #versioned_formulae_names Formula @@ -31428,7 +31404,7 @@

    Method List

  • -
  • +
  • #versioned_macos_requirement TestRunnerFormula @@ -31436,7 +31412,7 @@

    Method List

  • -
  • +
  • #versions Tab @@ -31444,7 +31420,7 @@

    Method List

  • -
  • +
  • #versions CompilerSelector @@ -31452,7 +31428,7 @@

    Method List

  • -
  • +
  • #versions Homebrew::Livecheck::LivecheckVersion @@ -31460,7 +31436,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Xml @@ -31468,7 +31444,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Json @@ -31476,7 +31452,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Yaml @@ -31484,7 +31460,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::Sparkle @@ -31492,7 +31468,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::PageMatch @@ -31500,7 +31476,7 @@

    Method List

  • -
  • +
  • versions_from_content Homebrew::Livecheck::Strategy::GithubReleases @@ -31508,7 +31484,7 @@

    Method List

  • -
  • +
  • versions_from_headers Homebrew::Livecheck::Strategy::HeaderMatch @@ -31516,7 +31492,7 @@

    Method List

  • -
  • +
  • versions_from_items Homebrew::Livecheck::Strategy::ExtractPlist @@ -31524,7 +31500,7 @@

    Method List

  • -
  • +
  • versions_from_tags Homebrew::Livecheck::Strategy::Git @@ -31532,7 +31508,7 @@

    Method List

  • -
  • +
  • #virtualenv_create Language::Python::Virtualenv @@ -31540,7 +31516,7 @@

    Method List

  • -
  • +
  • #virtualenv_install_with_resources Language::Python::Virtualenv @@ -31548,7 +31524,7 @@

    Method List

  • -
  • +
  • warning Formatter @@ -31556,7 +31532,7 @@

    Method List

  • -
  • +
  • watchlist_path Homebrew @@ -31564,7 +31540,7 @@

    Method List

  • -
  • +
  • #which Homebrew::Diagnostic::Volumes @@ -31572,7 +31548,7 @@

    Method List

  • -
  • +
  • #which Kernel @@ -31580,7 +31556,7 @@

    Method List

  • -
  • +
  • #which_all Kernel @@ -31588,7 +31564,7 @@

    Method List

  • -
  • +
  • #which_editor Kernel @@ -31596,7 +31572,7 @@

    Method List

  • -
  • +
  • width Tty @@ -31604,7 +31580,7 @@

    Method List

  • -
  • +
  • with Tty @@ -31612,7 +31588,7 @@

    Method List

  • -
  • +
  • with Homebrew::SimulateSystem @@ -31620,7 +31596,7 @@

    Method List

  • -
  • +
  • #with? Tab @@ -31628,7 +31604,7 @@

    Method List

  • -
  • +
  • #with? BuildOptions @@ -31636,7 +31612,7 @@

    Method List

  • -
  • +
  • #with_build_environment EnvActivation @@ -31644,7 +31620,7 @@

    Method List

  • -
  • +
  • #with_context Context @@ -31652,7 +31628,7 @@

    Method List

  • -
  • +
  • #with_custom_locale Kernel @@ -31660,7 +31636,7 @@

    Method List

  • -
  • +
  • #with_env Kernel @@ -31668,7 +31644,7 @@

    Method List

  • -
  • +
  • #with_homebrew_path Kernel @@ -31676,7 +31652,7 @@

    Method List

  • -
  • +
  • #with_lock LockFile @@ -31684,7 +31660,7 @@

    Method List

  • -
  • +
  • #with_logging Formula @@ -31692,7 +31668,7 @@

    Method List

  • -
  • +
  • #with_monkey_patch Top Level Namespace @@ -31700,7 +31676,7 @@

    Method List

  • -
  • +
  • with_no_api_env Homebrew @@ -31708,7 +31684,7 @@

    Method List

  • -
  • +
  • with_no_api_env_if_needed Homebrew @@ -31716,7 +31692,7 @@

    Method List

  • -
  • +
  • #without? Tab @@ -31724,7 +31700,7 @@

    Method List

  • -
  • +
  • #without? BuildOptions @@ -31732,7 +31708,7 @@

    Method List

  • -
  • +
  • without_clt? OS::Mac::Xcode @@ -31740,7 +31716,7 @@

    Method List

  • -
  • +
  • #without_patch Homebrew::FormulaTextAuditor @@ -31748,7 +31724,7 @@

    Method List

  • -
  • +
  • #workdir LinuxRunnerSpec @@ -31756,7 +31732,7 @@

    Method List

  • -
  • +
  • workflow_dispatch_event GitHub @@ -31764,7 +31740,7 @@

    Method List

  • -
  • +
  • #working_dir Homebrew::Service @@ -31772,7 +31748,7 @@

    Method List

  • -
  • +
  • #write Tab @@ -31780,7 +31756,7 @@

    Method List

  • -
  • +
  • write Homebrew::Settings @@ -31788,7 +31764,7 @@

    Method List

  • -
  • +
  • write_access? GitHub @@ -31796,7 +31772,7 @@

    Method List

  • -
  • +
  • #write_env_script Pathname @@ -31804,7 +31780,7 @@

    Method List

  • -
  • +
  • #write_exec_script Pathname @@ -31812,6 +31788,14 @@

    Method List

  • +
  • +
    + #write_formula! + Homebrew::FormulaCreator +
    +
  • + +
  • -
    # File 'formula_creator.rb', line 45
    +      
    # File 'formula_creator.rb', line 52
    +
    +def write_formula!
    +  raise ArgumentError, "name is blank!" if @name.blank?
    +  raise ArgumentError, "tap is blank!" if @tap.blank?
    +
    +  path = @tap.new_formula_path(@name)
    +  raise "#{path} already exists" if path.exist?
    +
    +  if version.nil? || version.null?
    +    odie "Version cannot be determined from URL. Explicitly set the version with `--set-version` instead."
    +  elsif fetch?
    +    unless head?
    +      r = Resource.new
    +      r.url(url)
    +      r.version(version)
    +      r.owner = self
    +      @sha256 = r.fetch.sha256 if r.download_strategy == CurlDownloadStrategy
    +    end
     
    -def update_path
    -  return if @name.nil? || @tap.nil?
    +    if @user && @name
    +      begin
    +         = GitHub.repository(@user, @name)
    +        @desc = ["description"]
    +        @homepage = ["homepage"]
    +        @license = ["license"]["spdx_id"] if ["license"]
    +      rescue GitHub::API::HTTPNotFoundError
    +        # If there was no repository found assume the network connection is at
    +        # fault rather than the input URL.
    +        nil
    +      end
    +    end
    +  end
     
    -  @path = @tap.new_formula_path(@name)
    +  path.dirname.mkpath
    +  path.write ERB.new(template, trim_mode: ">").result(binding)
    +  path
     end