Sha256: f53d42c2792fb666de614dd4d52f66e417a88607c4e935734a2331342fd9d760

Contents?: true

Size: 596 Bytes

Versions: 4

Compression:

Stored size: 596 Bytes

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Syncer
      module RSync
        class Push < Base
          class << self

            ##
            # Server credentials
            attr_accessor :username, :password

            ##
            # Server IP Address and SSH port
            attr_accessor :ip

            ##
            # The SSH port to connect to
            attr_accessor :port

            ##
            # Flag for compressing (only compresses for the transfer)
            attr_accessor :compress

          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
backup_checksum-3.0.23 lib/backup/configuration/syncer/rsync/push.rb
backup-3.0.23 lib/backup/configuration/syncer/rsync/push.rb
backup-3.0.22 lib/backup/configuration/syncer/rsync/push.rb
backup-3.0.21 lib/backup/configuration/syncer/rsync/push.rb