Method: Pod::Lockfile#checksum

Defined in:
lib/cocoapods-core/lockfile.rb

#checksum(name) ⇒ String, Nil

Returns the checksum for the given Pod.

Parameters:

  • name (String)

    The name of the Pod (root name of the specification).

Returns:

  • (String)

    The checksum of the specification for the given Pod.

  • (Nil)

    If there is no checksum stored for the given name.

[View source]

115
116
117
# File 'lib/cocoapods-core/lockfile.rb', line 115

def checksum(name)
  checksum_data[name]
end