Sha256: 7584715219868968659c6136f15d0111171d8583fe0d2617ba2ced83fff809b8
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
module Middleman module Deploy module Methods class Rsync < Base attr_reader :clean, :flags, :host, :path, :port, :user def initialize(server_instance, options={}) super(server_instance, options) @clean = self.options.clean @flags = self.options.flags @host = self.options.host @path = self.options.path @port = self.options.port @user = self.options.user end def process # Append "@" to user if provided. user = "#{self.user}@" if self.user && !self.user.empty? dest_url = "#{user}#{self.host}:#{self.path}" flags = self.flags || '-avz' command = "rsync #{flags} '-e ssh -p #{self.port}' #{self.server_instance.build_dir}/ #{dest_url}" if self.clean command += " --delete" end puts "## Deploying via rsync to #{dest_url} port=#{self.port}" run command end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
middleman-deploy-0.2.2 | lib/middleman-deploy/methods/rsync.rb |
middleman-deploy-0.2.1 | lib/middleman-deploy/methods/rsync.rb |
middleman-deploy-0.2.0 | lib/middleman-deploy/methods/rsync.rb |