Class: Formulary::NullLoader Private

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from FormulaLoader

#klass

Methods included from Context

current, current=, #debug?, #quiet?, #verbose?, #with_context

Constructor Details

#initialize(ref) ⇒ 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:



869
870
871
872
# File 'formulary.rb', line 869

def initialize(ref)
  name = File.basename(ref, ".rb")
  super name, Formulary.core_path(name)
end

Class Method Details

.try_new(ref, from: nil, warn: false) ⇒ T.attached_class?

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:

  • ref (String, Pathname, URI::Generic)
  • from (Symbol, nil) (defaults to: nil)
  • warn (Boolean) (defaults to: false)

Returns:

  • (T.attached_class, nil)


862
863
864
865
866
# File 'formulary.rb', line 862

def self.try_new(ref, from: nil, warn: false)
  return if ref.is_a?(URI::Generic)

  new(ref)
end

Instance Method Details

#get_formulaObject

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.



874
875
876
# File 'formulary.rb', line 874

def get_formula(*)
  raise FormulaUnavailableError, name
end