Class: Formulary::FormulaLoader Private
- Includes:
- Context, Utils::Output::Mixin
- 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.
A FormulaLoader returns instances of formulae. Subclasses implement loaders for particular sources of formulae.
Direct Known Subclasses
FormulaContentsLoader, FromAPILoader, FromBottleLoader, FromCacheLoader, FromKegLoader, FromPathLoader, FromTapLoader, FromURILoader, NullLoader
Instance Attribute Summary collapse
-
#alias_path ⇒ Pathname, ...
readonly
private
The name used to install the formula.
-
#name ⇒ String
readonly
private
The formula's name.
-
#path ⇒ Pathname
readonly
private
The formula file's path.
-
#tap ⇒ Tap?
readonly
private
The formula's tap (
nil
if it should be implicitly determined).
Instance Method Summary collapse
-
#get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) ⇒ Formula
private
Gets the formula instance.
- #initialize(name, path, alias_path: nil, tap: nil) ⇒ void constructor private
- #klass(flags:, ignore_errors:) ⇒ T.class_of(Formula) private
Methods included from Utils::Output::Mixin
#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Methods included from Context
current, current=, #debug?, #quiet?, #verbose?, #with_context
Constructor Details
#initialize(name, path, alias_path: nil, tap: nil) ⇒ 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.
602 603 604 605 606 607 |
# File 'formulary.rb', line 602 def initialize(name, path, alias_path: nil, tap: nil) @name = name @path = path @alias_path = alias_path @tap = tap end |
Instance Attribute Details
#alias_path ⇒ Pathname, ... (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.
The name used to install the formula.
593 594 595 |
# File 'formulary.rb', line 593 def alias_path @alias_path end |
#name ⇒ 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.
The formula's name.
585 586 587 |
# File 'formulary.rb', line 585 def name @name end |
#path ⇒ Pathname (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.
The formula file's path.
589 590 591 |
# File 'formulary.rb', line 589 def path @path end |
#tap ⇒ Tap? (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.
The formula's tap (nil
if it should be implicitly determined).
597 598 599 |
# File 'formulary.rb', line 597 def tap @tap end |
Instance Method Details
#get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) ⇒ Formula
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.
Gets the formula instance.
alias_path
can be overridden here in case an alias was used to refer to
a formula that was loaded in another way.
621 622 623 624 625 626 |
# File 'formulary.rb', line 621 def get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) alias_path ||= self.alias_path alias_path = Pathname(alias_path) if alias_path.is_a?(String) klass(flags:, ignore_errors:) .new(name, path, spec, alias_path:, tap:, force_bottle:) end |
#klass(flags:, ignore_errors:) ⇒ T.class_of(Formula)
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.
629 630 631 632 |
# File 'formulary.rb', line 629 def klass(flags:, ignore_errors:) load_file(flags:, ignore_errors:) unless Formulary.formula_class_defined_from_path?(path) Formulary.formula_class_get_from_path(path) end |