Method: Pod::Lockfile#checkout_options_for_pod_named

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

#checkout_options_for_pod_named(name) ⇒ Hash

Returns the specific checkout options for the external source of the pod with the given name.

Examples:

Output

{:commit => "919903db28535c3f387c4bbaa6a3feae4428e993"
 :git => "https://github.com/luisdelarosa/AFRaptureXMLRequestOperation.git"}

Parameters:

  • name (String)

    the name of the Pod.

Returns:

  • (Hash)

    a hash of the checkout options for the external source of the pod with the given name.



188
189
190
# File 'lib/cocoapods-core/lockfile.rb', line 188

def checkout_options_for_pod_named(name)
  checkout_options_data[name]
end