Sha256: 269e69fd6bbfa598f0d519d75de488647d3875efd16379ac7df1c2ad03950325
Contents?: true
Size: 381 Bytes
Versions: 11
Compression:
Stored size: 381 Bytes
Contents
module DanarchyDeploy class Archiver class Svn def initialize(options) @options = options end def co(repo, path) puts "Checking out '#{repo}' to '#{path}'" cmd = 'svn --non-interactive --trust-server-cert ' + "co #{repo} #{path}" DanarchyDeploy::Helpers.run_command(cmd, @options) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems