Exception: TapAlreadyTappedError Private
Overview
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.
Raised when a tap is already installed.
Instance Attribute Summary collapse
- #name ⇒ String readonly private
Instance Method Summary collapse
- #initialize(name) ⇒ void constructor private
Constructor Details
#initialize(name) ⇒ 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.
464 465 466 467 468 469 470 |
# File 'exceptions.rb', line 464 def initialize(name) @name = name super <<~EOS Tap #{name} already tapped. EOS end |
Instance Attribute Details
#name ⇒ String (readonly)
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.
461 462 463 |
# File 'exceptions.rb', line 461 def name @name end |