Class: SshDirPublisher

Inherits:
Object
  • Object
show all
Defined in:
lib/rake/contrib/publisher.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

Returns a new instance of SshDirPublisher.



33
34
35
36
37
# File 'lib/rake/contrib/publisher.rb', line 33

def initialize(host, remote_dir, local_dir)
  @host = host
  @remote_dir = remote_dir
  @local_dir = local_dir
end

Instance Method Details

#uploadObject



39
40
41
# File 'lib/rake/contrib/publisher.rb', line 39

def upload
  run %{scp -rq #{@local_dir}/* #{@host}:#{@remote_dir}}
end