Sha256: 304cd9e557af031ded8f9cfc5c0deeaa4415a4a5ac95ece51253f22eefa3e587

Contents?: true

Size: 506 Bytes

Versions: 7

Compression:

Stored size: 506 Bytes

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Storage
      class FTP < Base
        class << self

          ##
          # Server credentials
          attr_accessor :username, :password

          ##
          # Server IP Address and FTP port
          attr_accessor :ip, :port

          ##
          # Path to store backups to
          attr_accessor :path

          ##
          # use passive mode?
          attr_accessor :passive_mode

        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
backup_checksum-3.0.23 lib/backup/configuration/storage/ftp.rb
backup-3.0.23 lib/backup/configuration/storage/ftp.rb
backup-3.0.22 lib/backup/configuration/storage/ftp.rb
backup-3.0.21 lib/backup/configuration/storage/ftp.rb
backup-3.0.20 lib/backup/configuration/storage/ftp.rb
backup-3.0.19 lib/backup/configuration/storage/ftp.rb
backup-3.0.18 lib/backup/configuration/storage/ftp.rb