Exception: Homebrew::CLI::MinNamedArgumentsError Private
- Inherits:
-
UsageError
- Object
- RuntimeError
- UsageError
- Homebrew::CLI::MinNamedArgumentsError
- Defined in:
- cli/parser.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 UsageError
Instance Method Summary collapse
- #initialize(minimum, types: []) ⇒ void constructor private
Constructor Details
#initialize(minimum, 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.
785 786 787 788 789 790 791 |
# File 'cli/parser.rb', line 785 def initialize(minimum, types: []) types << :named if types.empty? arg_types = types.map { |type| type.to_s.tr("_", " ") } .to_sentence two_words_connector: " or ", last_word_connector: " or " super "This command requires at least #{minimum} #{arg_types} #{Utils.pluralize("argument", minimum)}." end |