Sha256: 4efeb89f82ded1fd8efb3cbb3cf303476a257e296dba0eec9315c95c3702edd4

Contents?: true

Size: 1.09 KB

Versions: 39

Compression:

Stored size: 1.09 KB

Contents

module Rake

  # Publish an entire directory to an existing remote directory using
  # SSH.
  class SshDirPublisher
    def initialize(host, remote_dir, local_dir)
      @host = host
      @remote_dir = remote_dir
      @local_dir = local_dir
    end
    
    def upload
      sh %{scp -rq #{@local_dir}/* #{@host}:#{@remote_dir}}
    end
  end
  
  # Publish an entire directory to a fresh remote directory using SSH.
  class SshFreshDirPublisher < SshDirPublisher
    def upload
      sh %{ssh #{@host} rm -rf #{@remote_dir}} rescue nil
      sh %{ssh #{@host} mkdir #{@remote_dir}}
      super
    end
  end
  
  # Publish a list of files to an existing remote directory.
  class SshFilePublisher
    # Create a publisher using the give host information.
    def initialize(host, remote_dir, local_dir, *files)
      @host = host
      @remote_dir = remote_dir
      @local_dir = local_dir
      @files = files
    end
    
    # Upload the local directory to the remote directory.
    def upload
      @files.each do |fn|
        sh %{scp -q #{@local_dir}/#{fn} #{@host}:#{@remote_dir}}
      end
    end
  end
end

Version data entries

39 entries across 30 versions & 5 rubygems

Version Path
horseman-0.0.3 vendor/ruby/1.9.1/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/sshpublisher.rb
horseman-0.0.2 vendor/ruby/1.9.1/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.6.3 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.6.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.6.0 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.5.6 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.5.5 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.5.2 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.5.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.5 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.4.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.4 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.3.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.3 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.2 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-4.0 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-3.2 vendor/rake/lib/rake/contrib/sshpublisher.rb
echoe-3.1.1 vendor/rake/lib/rake/contrib/sshpublisher.rb