Class: Homebrew::Services::FormulaWrapper::StatusOutputSuccessType Private
- Defined in:
- services/formula_wrapper.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 collapse
- #output ⇒ String readonly private
- #success ⇒ Boolean readonly private
- #type ⇒ Symbol readonly private
Instance Method Summary collapse
- #initialize(output, success, type) ⇒ void constructor private
Constructor Details
#initialize(output, success, type) ⇒ 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.
404 405 406 407 408 |
# File 'services/formula_wrapper.rb', line 404 def initialize(output, success, type) @output = output @success = success @type = type end |
Instance Attribute Details
#output ⇒ 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.
395 396 397 |
# File 'services/formula_wrapper.rb', line 395 def output @output end |
#success ⇒ Boolean (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.
398 399 400 |
# File 'services/formula_wrapper.rb', line 398 def success @success end |
#type ⇒ Symbol (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.
401 402 403 |
# File 'services/formula_wrapper.rb', line 401 def type @type end |