Class: Checksum Private

Inherits:
Object show all
Extended by:
Forwardable
Defined in:
checksum.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.

A formula’s checksum.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#hexdigestObject (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