Class: Cask::CaskLoader::AbstractContentLoader Abstract Private
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.
It cannot be directly instantiated. Subclasses must implement the abstract
methods below.
Loads a cask from a string.
Direct Known Subclasses
Instance Attribute Summary collapse
- #content ⇒ String readonly private
- #tap ⇒ Tap? readonly private
Method Summary
Methods included from ILoader
Instance Attribute Details
#content ⇒ 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.
33 34 35 |
# File 'cask/cask_loader.rb', line 33 def content @content 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.
36 37 38 |
# File 'cask/cask_loader.rb', line 36 def tap @tap end |