Class: Checksum 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.
A formula’s checksum.
Instance Attribute Summary collapse
-
#hexdigest ⇒ Object
readonly
private
Instance Method Summary collapse
-
#==(other) ⇒ Object
private
-
#initialize(hexdigest) ⇒ Checksum
constructor
private
A new instance of Checksum.
Constructor Details
#initialize(hexdigest) ⇒ Checksum
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 Checksum.
12 13 14 |
# File 'checksum.rb', line 12 def initialize(hexdigest) @hexdigest = hexdigest.downcase end |
Instance Attribute Details
#hexdigest ⇒ Object (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.
10 11 12 |
# File 'checksum.rb', line 10 def hexdigest @hexdigest end |
Instance Method Details
#==(other) ⇒ 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.
18 19 20 21 22 23 24 25 26 27 |
# File 'checksum.rb', line 18 def ==(other) case other when String to_s == other.downcase when Checksum hexdigest == other.hexdigest else false end end |