Sha256: e3249837d236288b7c27eebaf0abf70cb932336e897f35204d1dd3019031625f
Contents?: true
Size: 260 Bytes
Versions: 3
Compression:
Stored size: 260 Bytes
Contents
require "caravan/deploy" module Caravan module DeployMethods class RsyncLocal < Deploy::Base def run(src, dst) super(src, dst) do |s, d| Caravan::Command.run("rsync -rv #{s} #{d}", @debug) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
caravan-0.4.0 | lib/caravan/deploy_methods/rsync_local.rb |
caravan-0.4.0.beta | lib/caravan/deploy_methods/rsync_local.rb |
caravan-0.3.1 | lib/caravan/deploy_methods/rsync_local.rb |