Sha256: f30756634826e9babffc86d1191e4410a6140aba56c72e41aca5ad840368d928

Contents?: true

Size: 2 KB

Versions: 262

Compression:

Stored size: 2 KB

Contents

# Copyright 2003-2010 by Jim Weirich (jim.weirich@gmail.com)
# All rights reserved.

# :stopdoc:

# Configuration information about an upload host system.
# name   :: Name of host system.
# webdir :: Base directory for the web information for the
#           application.  The application name (APP) is appended to
#           this directory before using.
# pkgdir :: Directory on the host system where packages can be
#           placed.
HostInfo = Struct.new(:name, :webdir, :pkgdir)

# :startdoc:

# TODO: Move to contrib/sshpublisher
#--
# Manage several publishers as a single entity.
class CompositePublisher # :nodoc:
  def initialize
    @publishers = []
  end

  # Add a publisher to the composite.
  def add(pub)
    @publishers << pub
  end

  # Upload all the individual publishers.
  def upload
    @publishers.each { |p| p.upload }
  end
end

# TODO: Remove in Rake 11, duplicated
#--
# Publish an entire directory to an existing remote directory using
# SSH.
class SshDirPublisher # :nodoc: all
  def initialize(host, remote_dir, local_dir)
    @host = host
    @remote_dir = remote_dir
    @local_dir = local_dir
  end

  def upload
    run %{scp -rq #{@local_dir}/* #{@host}:#{@remote_dir}}
  end
end

# TODO: Remove in Rake 11, duplicated
#--
# Publish an entire directory to a fresh remote directory using SSH.
class SshFreshDirPublisher < SshDirPublisher # :nodoc: all
  def upload
    run %{ssh #{@host} rm -rf #{@remote_dir}} rescue nil
    run %{ssh #{@host} mkdir #{@remote_dir}}
    super
  end
end

# TODO: Remove in Rake 11, duplicated
#--
# Publish a list of files to an existing remote directory.
class SshFilePublisher # :nodoc: all
  # 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|
      run %{scp -q #{@local_dir}/#{fn} #{@host}:#{@remote_dir}}
    end
  end
end

Version data entries

262 entries across 211 versions & 64 rubygems

Version Path
mercadopago-custom-checkout-0.1.2 .gs/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
sb_prime_table-0.1.1 vendor/bundle/ruby/2.4.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
sb_prime_table-0.1.0 vendor/bundle/ruby/2.4.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
mercadopago-custom-checkout-0.1.1 .gs/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
docker-gem-store-0.2.4 vendor/cache/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
docker-gem-store-0.2.3 vendor/cache/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
docker-gem-store-0.2.2 vendor/cache/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
docker-gem-store-0.2.1 vendor/cache/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
docker-gem-store-0.2.0 vendor/cache/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.10.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.9.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.8.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.7.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.6.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.5.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
daslabs-0.4.0 vendor/cache/ruby/2.5.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
comiditaULL-0.1.1 vendor/bundle/ruby/2.3.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
comidita_ull-0.1.1 vendor/bundle/ruby/2.3.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb
comidita_ull-0.1.0 vendor/bundle/ruby/2.3.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb