Sha256: bcd19db9b4a88b17268b6426e02a50b928aaefe3107e78ab41934bc82ec615ed

Contents?: true

Size: 1.16 KB

Versions: 171

Compression:

Stored size: 1.16 KB

Contents

#!/usr/bin/env ruby

require 'rake/contrib/compositepublisher'

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

171 entries across 125 versions & 12 rubygems

Version Path
craigmarksmith-rake-0.8.3.100 lib/rake/contrib/sshpublisher.rb
craigmarksmith-rake-0.8.4.101 lib/rake/contrib/sshpublisher.rb
craigmarksmith-rake-0.8.4.102 lib/rake/contrib/sshpublisher.rb
craigmarksmith-rake-0.8.4.103 lib/rake/contrib/sshpublisher.rb
elliottcable-echoe-3.1.1 vendor/rake/lib/rake/contrib/sshpublisher.rb
elliottcable-echoe-3.1.2 vendor/rake/lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.10 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.11 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.5 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.6 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.7 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.8 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.1.9 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.2.99 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.2 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.3.1 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.3.100 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.3.99 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.3 lib/rake/contrib/sshpublisher.rb
jimweirich-rake-0.8.4.99 lib/rake/contrib/sshpublisher.rb