Class: Formulary::FromTapLoader Private
- Inherits:
-
FormulaLoader
- Object
- FormulaLoader
- Formulary::FromTapLoader
- 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.
Loads tapped formulae.
Direct Known Subclasses
Instance Attribute Summary collapse
- #path ⇒ Pathname readonly private
- #tap ⇒ Tap readonly private
Attributes inherited from FormulaLoader
Class Method Summary collapse
Instance Method Summary collapse
- #get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) ⇒ Object private
- #initialize(name, path, tap:, alias_name: T.unsafe(nil)) ⇒ void constructor private
- #load_file(flags:, ignore_errors:) ⇒ Object private
Methods inherited from FormulaLoader
Methods included from Context
current, current=, #debug?, #quiet?, #verbose?, #with_context
Constructor Details
#initialize(name, path, tap:, alias_name: T.unsafe(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.
792 793 794 795 796 797 798 799 |
# File 'formulary.rb', line 792 def initialize(name, path, tap:, alias_name: T.unsafe(nil)) = { alias_path: (tap.alias_dir/alias_name if alias_name), tap:, }.compact super(name, path, **) end |
Instance Attribute Details
#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.
763 764 765 |
# File 'formulary.rb', line 763 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.
760 761 762 |
# File 'formulary.rb', line 760 def tap @tap end |
Class Method Details
.try_new(ref, from: T.unsafe(nil), warn: false) ⇒ FormulaLoader?
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.
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 |
# File 'formulary.rb', line 769 def self.try_new(ref, from: T.unsafe(nil), warn: false) ref = ref.to_s return unless (name_tap_type = Formulary.tap_formula_name_type(ref, warn:)) name, tap, type = name_tap_type path = Formulary.find_formula_in_tap(name, tap) = if type == :alias # TODO: Simplify this by making `tap_formula_name_type` return the alias name. { alias_name: T.must(ref[HOMEBREW_TAP_FORMULA_REGEX, :name]).downcase } else {} end if type == :migration && tap.core_tap? && (loader = FromAPILoader.try_new(name)) loader else new(name, path, tap:, **) end end |
Instance Method Details
#get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) ⇒ 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.
801 802 803 804 805 806 807 808 809 |
# File 'formulary.rb', line 801 def get_formula(spec, alias_path: nil, force_bottle: false, flags: [], ignore_errors: false) super rescue FormulaUnreadableError => e raise TapFormulaUnreadableError.new(tap, name, e.formula_error), "", e.backtrace rescue FormulaClassUnavailableError => e raise TapFormulaClassUnavailableError.new(tap, name, e.path, e.class_name, e.class_list), "", e.backtrace rescue FormulaUnavailableError => e raise TapFormulaUnavailableError.new(tap, name), "", e.backtrace end |
#load_file(flags:, ignore_errors:) ⇒ 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.
811 812 813 814 815 816 |
# File 'formulary.rb', line 811 def load_file(flags:, ignore_errors:) super rescue MethodDeprecatedError => e e.issues_url = tap.issues_url || tap.to_s raise end |