Returns the command that will check out revision from the repository into directory destination
# File lib/vlad/subversion.rb, line 10 def checkout(revision, destination) "#{svn_cmd} co -r #{revision} #{repository} #{destination}" end
Returns the command that will export revision from the repository into the directory destination.
# File lib/vlad/subversion.rb, line 18 def export(revision_or_source, destination) "#{svn_cmd} #{deploy_via} " + if revision_or_source =~ /^(\d+|head)$/ then "-r #{revision_or_source} #{repository} #{destination}" else "#{revision_or_source} #{destination}" end end
Generated with the Darkfish Rdoc Generator 2.