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).
fetch
description
fetch(sandbox) #=> undefined
219 def fetch(sandbox)
220 pre_download(sandbox)
221 end
description #=> undefined
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