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.
386 387 388 389 390 |
# File 'services/formula_wrapper.rb', line 386 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.
377 378 379 |
# File 'services/formula_wrapper.rb', line 377 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.
380 381 382 |
# File 'services/formula_wrapper.rb', line 380 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.
383 384 385 |
# File 'services/formula_wrapper.rb', line 383 def type @type end |