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

Methods
N
U
Class Public methods
new(host, remote_dir, local_dir)
# File lib/rake/contrib/publisher.rb, line 37
def initialize(host, remote_dir, local_dir)
  @host = host
  @remote_dir = remote_dir
  @local_dir = local_dir
end
Instance Public methods
upload()
# File lib/rake/contrib/publisher.rb, line 43
def upload
  run %Q{scp -rq #{@local_dir}/* #{@host}:#{@remote_dir}}
end