Class: Formulary::FormulaJSONContentsLoader Private

Inherits:
FromAPILoader 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.

Load formulae directly from their JSON contents.

Instance Attribute Summary

Attributes inherited from FormulaLoader

#alias_path, #name, #path, #tap

Instance Method Summary collapse

Methods inherited from FromAPILoader

#klass, try_new

Methods inherited from FormulaLoader

#get_formula, #klass

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, contents, tap: nil, alias_name: 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.

Parameters:

  • name (String)
  • contents (Hash{String => T.untyped})
  • tap (Tap, nil) (defaults to: nil)
  • alias_name (String, nil) (defaults to: nil)


1066
1067
1068
1069
# File 'formulary.rb', line 1066

def initialize(name, contents, tap: nil, alias_name: nil)
  @contents = contents
  super(name, tap: tap, alias_name: alias_name)
end