Class: Homebrew::Cmd::Bundle::ListSubcommand Private

Inherits:
AbstractSubcommand show all
Defined in:
bundle/subcommand/list.rb

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.

Instance Attribute Summary

Attributes inherited from AbstractSubcommand

#args, #cleanup, #context, #quiet, #targets

Instance Method Summary collapse

Methods inherited from AbstractSubcommand

define, define_all, #initialize, subcommand_name, subcommands_for

Methods included from Utils::Output::Mixin

#issue_reporting_message, #odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_install_status, #pretty_installed, #pretty_outdated, #pretty_uninstalled, #pretty_upgradable

Constructor Details

This class inherits a constructor from Homebrew::AbstractSubcommand

Instance Method Details

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



38
39
40
41
42
43
44
45
46
47
48
# File 'bundle/subcommand/list.rb', line 38

def run
  Homebrew::Bundle::Lister.list(
    Homebrew::Bundle::Brewfile.read(global: context.global, file: context.file).entries,
    formulae:        args.formulae? || args.all? || context.no_type_args,
    casks:           args.casks? || args.all?,
    taps:            args.taps? || args.all?,
    extension_types: context.extensions.to_h do |extension|
      [extension.type, context.extension_selected?(args, extension) || args.all?]
    end,
  )
end