Class: Rake::SshDirPublisher

Inherits:
Object
  • Object
show all
Includes:
DSL
Defined in:
lib/rake/contrib/sshpublisher.rb

Overview

Publish an entire directory to an existing remote directory using SSH.

Direct Known Subclasses

SshFreshDirPublisher

Instance Method Summary collapse

Constructor Details

#initialize(host, remote_dir, local_dir) ⇒ SshDirPublisher

Creates an SSH publisher which will scp all files in local_dir to remote_dir on host



13
14
15
16
17
# 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

Instance Method Details

#uploadObject

Uploads the files



21
22
23
# File 'lib/rake/contrib/sshpublisher.rb', line 21

def upload
  sh "scp", "-rq", "#{@local_dir}/*", "#{@host}:#{@remote_dir}"
end