>MercurialSource

MercurialSource

Provides support for fetching a specification file from a Mercurial source remote.

Supports all the options of the downloader (is similar to the git key of source attribute of a specification).

Inherits from:

Pod::ExternalSources::AbstractExternalSource

Subclasses hooks

fetch

description

fetch

Signature

fetch(sandbox) #=> undefined

Source

249 def fetch(sandbox)
250   pre_download(sandbox)
251 end

Source Files

lib/cocoapods/external_sources.rb:249

spec/unit/external_sources_spec.rb

description

Signature

description #=> undefined

Source

255 def description
256   "from `#{params[:hg]}`".tap do |description|
257     description << ", revision `#{params[:revision]}`" if params[:revision]
258   end
259 end

Source Files

lib/cocoapods/external_sources.rb:255

spec/unit/external_sources_spec.rb