Class: Homebrew::Services::FormulaWrapper::StatusOutputSuccessType Private

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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.

Parameters:



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

#outputString (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.

Returns:



377
378
379
# File 'services/formula_wrapper.rb', line 377

def output
  @output
end

#successBoolean (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.

Returns:

  • (Boolean)


380
381
382
# File 'services/formula_wrapper.rb', line 380

def success
  @success
end

#typeSymbol (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.

Returns:



383
384
385
# File 'services/formula_wrapper.rb', line 383

def type
  @type
end