Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rake/contrib/sshpublisher.rb

Parent

Methods

Included Modules

Rake::SshDirPublisher

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

Public Class Methods

new(host, remote_dir, local_dir) click to toggle source
 
               # File rake/contrib/sshpublisher.rb, line 11
def initialize(host, remote_dir, local_dir)
  @host = host
  @remote_dir = remote_dir
  @local_dir = local_dir
end
            

Public Instance Methods

upload() click to toggle source
 
               # File rake/contrib/sshpublisher.rb, line 17
def upload
  sh %{scp -rq #{@local_dir}/* #{@host}:#{@remote_dir}}
end