Class: Homebrew::Cmd::Source Private

Inherits:
AbstractCommand show all
Defined in:
cmd/source.rb,
sorbet/rbi/dsl/homebrew/cmd/source.rbi

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

Defined Under Namespace

Classes: Args

Instance Method Summary collapse

Methods inherited from AbstractCommand

command, command_name, dev_cmd?, #initialize, parser, ruby_cmd?

Methods included from Utils::Output::Mixin

#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled

Constructor Details

This class inherits a constructor from Homebrew::AbstractCommand

Instance Method Details

#argsHomebrew::Cmd::Source::Args

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.



10
# File 'sorbet/rbi/dsl/homebrew/cmd/source.rbi', line 10

def args; end

#runvoid

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.

This method returns an undefined value.



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'cmd/source.rb', line 24

def run
  if args.no_named?
    exec_browser "https://github.com/Homebrew/brew"
    return
  end

  formulae = args.named.to_formulae
  repo_urls = formulae.filter_map do |formula|
    repo_url = extract_repo_url(formula)
    if repo_url
      puts "Opening repository for #{formula.name}"
      repo_url
    else
      opoo "Could not determine repository URL for #{formula.name}"
      nil
    end
  end

  return if repo_urls.empty?

  exec_browser(*repo_urls)
end