Sha256: 3c290854bdf4e5d741e3ee57ac79a8148baf093826440a541a006678aa5ba33b

Contents?: true

Size: 1.05 KB

Versions: 8

Compression:

Stored size: 1.05 KB

Contents

module SupplyDrop
  class Rsync
    class << self
      def command(from, to, options={})
        flags = ['-az']
        flags << '--delete' if options[:delete]
        flags << excludes(options[:excludes]) if options.has_key?(:excludes)
        flags << ssh_options(options[:ssh]) if options.has_key?(:ssh)

        "rsync #{flags.compact.join(' ')} #{from} #{to}"
      end

      def remote_address(user, host, path)
        user_with_host = [user, host].compact.join('@')
        [user_with_host, path].join(':')
      end

      def excludes(patterns)
        [patterns].flatten.map { |p| "--exclude=#{p}" }
      end

      def ssh_options(options)
        mapped_options = options.map do |key, value|
          next unless value

          case key
          when :keys then [value].flatten.select { |k| File.exist?(k) }.map { |k| "-i #{k}" }
          when :config then "-F #{value}"
          when :port then "-p #{value}"
          end
        end.compact

        %[-e "ssh #{mapped_options.join(' ')}"] unless mapped_options.empty?
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
supply_drop-0.12.0 lib/supply_drop/rsync.rb
supply_drop-0.11.1 lib/supply_drop/rsync.rb
supply_drop-0.9.0 lib/supply_drop/rsync.rb
supply_drop-0.8.1 lib/supply_drop/rsync.rb
supply_drop-0.8.0 lib/supply_drop/rsync.rb
supply_drop-0.7.0 lib/supply_drop/rsync.rb
supply_drop-0.6.1 lib/supply_drop/rsync.rb
supply_drop-0.6.0 lib/supply_drop/rsync.rb