Class: Rake::SshFilePublisher

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

Overview

Publish a list of files to an existing remote directory.

Instance Method Summary collapse

Constructor Details

#initialize(host, remote_dir, local_dir, *files) ⇒ SshFilePublisher

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



45
46
47
48
49
50
# File 'lib/rake/contrib/sshpublisher.rb', line 45

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

Instance Method Details

#uploadObject

Uploads the files



54
55
56
57
58
# File 'lib/rake/contrib/sshpublisher.rb', line 54

def upload
  @files.each do |fn|
    sh "scp", "-q", "#{@local_dir}/#{fn}", "#{@host}:#{@remote_dir}"
  end
end