Class: Utils::Bottles::TagSpecification Private
- Inherits:
-
Object
- Object
- Utils::Bottles::TagSpecification
- Extended by:
- T::Sig
- Defined in:
- utils/bottles.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.
The specification for a specific tag
Instance Attribute Summary collapse
-
#cellar ⇒ Symbol, String
readonly
private
-
#checksum ⇒ Checksum
readonly
private
-
#tag ⇒ Utils::Bottles::Tag
readonly
private
Instance Method Summary collapse
-
#initialize(tag:, checksum:, cellar:) ⇒ TagSpecification
constructor
private
A new instance of TagSpecification.
Constructor Details
#initialize(tag:, checksum:, cellar:) ⇒ TagSpecification
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.
Returns a new instance of TagSpecification.
242 243 244 245 246 |
# File 'utils/bottles.rb', line 242 def initialize(tag:, checksum:, cellar:) @tag = tag @checksum = checksum @cellar = cellar end |
Instance Attribute Details
#cellar ⇒ Symbol, 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.
240 241 242 |
# File 'utils/bottles.rb', line 240 def cellar @cellar end |
#checksum ⇒ Checksum (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.
237 238 239 |
# File 'utils/bottles.rb', line 237 def checksum @checksum end |
#tag ⇒ Utils::Bottles::Tag (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.
234 235 236 |
# File 'utils/bottles.rb', line 234 def tag @tag end |