>SvnSource

SvnSource

Provides support for fetching a specification file from a SVN 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

219 def fetch(sandbox)
220   pre_download(sandbox)
221 end

Source Files

lib/cocoapods/external_sources.rb:219

spec/unit/external_sources_spec.rb

description

Signature

description #=> undefined

Source

225 def description
226   "from `#{params[:svn]}`".tap do |description|
227     description << ", folder `#{params[:folder]}`" if params[:folder]
228     description << ", tag `#{params[:tag]}`" if params[:tag]
229     description << ", revision `#{params[:revision]}`" if params[:revision]
230   end
231 end

Source Files

lib/cocoapods/external_sources.rb:225

spec/unit/external_sources_spec.rb