Module: Homebrew::Bundle::Lister Private

Defined in:
bundle/lister.rb

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

Class Method Summary collapse

Class Method Details

.list(entries, formulae:, casks:, taps:, extension_types: {}) ⇒ void

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.

Parameters:



14
15
16
17
18
# File 'bundle/lister.rb', line 14

def self.list(entries, formulae:, casks:, taps:, extension_types: {})
  entries.each do |entry|
    puts entry.name if show?(entry.type, formulae:, casks:, taps:, extension_types:)
  end
end