# encoding: utf-8 module Backup module Configuration module Storage class Dropbox < Base class << self ## # Dropbox user credentials attr_accessor :email, :password ## # Dropbox API credentials attr_accessor :api_key, :api_secret ## # Path to where the backups will be stored attr_accessor :path ## # Dropbox connection timeout attr_accessor :timeout end end end end end