class Rake::SshDirPublisher
Publish an entire directory to an existing remote directory using SSH.
Public Class Methods
Source
# File lib/rake/contrib/sshpublisher.rb, line 13 def initialize(host, remote_dir, local_dir) @host = host @remote_dir = remote_dir @local_dir = local_dir end
Creates an SSH publisher which will scp all files in local_dir
to remote_dir
on host
Public Instance Methods
Source
# File lib/rake/contrib/sshpublisher.rb, line 21 def upload sh "scp", "-rq", "#{@local_dir}/*", "#{@host}:#{@remote_dir}" end
Uploads the files