Class: Formulary::NullLoader Private
- Inherits:
-
FormulaLoader
- Object
- FormulaLoader
- Formulary::NullLoader
- Defined in:
- formulary.rb
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.
Pseudo-loader which will raise a FormulaUnavailableError when trying to load the corresponding formula.
Instance Attribute Summary
Attributes inherited from FormulaLoader
#alias_path, #name, #path, #tap
Instance Method Summary collapse
-
#get_formula ⇒ Object
private
-
#initialize(name) ⇒ NullLoader
constructor
private
A new instance of NullLoader.
Methods inherited from FormulaLoader
Methods included from Context
current, current=, #debug?, #quiet?, #verbose?, #with_context
Constructor Details
#initialize(name) ⇒ NullLoader
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 a new instance of NullLoader.
622 623 624 |
# File 'formulary.rb', line 622 def initialize(name) super name, Formulary.core_path(name) end |
Instance Method Details
#get_formula ⇒ Object
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.
626 627 628 |
# File 'formulary.rb', line 626 def get_formula(*) raise FormulaUnavailableError, name end |