Support for the Ruby 2.2 series has ended. See here for reference.
Object
Publish an entire directory to an existing remote directory using SSH.
Creates an SSH publisher which will scp all files in local_dir to remote_dir on host
local_dir
remote_dir
host
# File rake/contrib/sshpublisher.rb, line 14 def initialize(host, remote_dir, local_dir) @host = host @remote_dir = remote_dir @local_dir = local_dir end
Uploads the files
# File rake/contrib/sshpublisher.rb, line 22 def upload sh "scp", "-rq", "#{@local_dir}/*", "#{@host}:#{@remote_dir}" end
This page was generated for Ruby 2.2.4
Ruby-doc.org is a service of James Britt and Neurogami, purveyors of fine dance noise.
Generated with Ruby-doc Rdoc Generator 0.44.0.