In Files

  • rake/contrib/sshpublisher.rb

Parent

Methods

Included Modules

Rake::SshFilePublisher

Publish a list of files to an existing remote directory.

Public Class Methods

new(host, remote_dir, local_dir, *files) click to toggle source

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

 
               # File rake/contrib/sshpublisher.rb, line 46
def initialize(host, remote_dir, local_dir, *files)
  @host = host
  @remote_dir = remote_dir
  @local_dir = local_dir
  @files = files
end
            

Public Instance Methods

upload() click to toggle source

Uploads the files

 
               # File rake/contrib/sshpublisher.rb, line 55
def upload
  @files.each do |fn|
    sh "scp", "-q", "#{@local_dir}/#{fn}", "#{@host}:#{@remote_dir}"
  end
end