Exception: TapFormulaClassUnavailableError 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 formula in a specific tap does not contain a formula class.

Instance Attribute Summary collapse

Attributes inherited from TapFormulaUnavailableError

#repository, #tap, #user

Attributes inherited from FormulaUnavailableError

#dependent

Attributes inherited from FormulaOrCaskUnavailableError

#name

Instance Method Summary collapse

Methods inherited from FormulaUnavailableError

#dependent_s

Methods inherited from FormulaOrCaskUnavailableError

#did_you_mean

Constructor Details

#initialize(tap, name, path, class_name, class_list) ⇒ 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:



341
342
343
344
345
346
# File 'exceptions.rb', line 341

def initialize(tap, name, path, class_name, class_list)
  @path = path
  @class_name = class_name
  @class_list = class_list
  super tap, name
end

Instance Attribute Details

#class_listArray<T::Class[T.anything]> (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:

  • (Array<T::Class[T.anything]>)


335
336
337
# File 'exceptions.rb', line 335

def class_list
  @class_list
end

#class_nameString (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:



332
333
334
# File 'exceptions.rb', line 332

def class_name
  @class_name
end

#pathPathname, 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.

Returns:



329
330
331
# File 'exceptions.rb', line 329

def path
  @path
end