Exception: Homebrew::CLI::MaxNamedArgumentsError Private
- Inherits:
-
UsageError
- Object
- RuntimeError
- UsageError
- Homebrew::CLI::MaxNamedArgumentsError
- 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(maximum, types: []) ⇒ void constructor private
Constructor Details
#initialize(maximum, 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.
769 770 771 772 773 774 775 776 777 778 779 780 |
# File 'cli/parser.rb', line 769 def initialize(maximum, types: []) super case maximum when 0 "This command does not take named arguments." else types << :named if types.empty? arg_types = types.map { |type| type.to_s.tr("_", " ") } .to_sentence two_words_connector: " or ", last_word_connector: " or " "This command does not take more than #{maximum} #{arg_types} #{Utils.pluralize("argument", maximum)}." end end |