Class: Backup::Configuration::Storage::Dropbox

Inherits:
Base
  • Object
show all
Defined in:
lib/backup/configuration/storage/dropbox.rb

Class Attribute Summary collapse

Method Summary

Methods inherited from Base

defaults

Methods included from Helpers

#clear_defaults!, #getter_methods, #load_defaults!, #setter_methods

Class Attribute Details

.api_keyObject

Dropbox API credentials



15
16
17
# File 'lib/backup/configuration/storage/dropbox.rb', line 15

def api_key
  @api_key
end

.api_secretObject

Dropbox API credentials



15
16
17
# File 'lib/backup/configuration/storage/dropbox.rb', line 15

def api_secret
  @api_secret
end

.emailObject

Dropbox user credentials



11
12
13
# File 'lib/backup/configuration/storage/dropbox.rb', line 11

def email
  @email
end

.passwordObject

Dropbox user credentials



11
12
13
# File 'lib/backup/configuration/storage/dropbox.rb', line 11

def password
  @password
end

.pathObject

Path to where the backups will be stored



19
20
21
# File 'lib/backup/configuration/storage/dropbox.rb', line 19

def path
  @path
end

.timeoutObject

Dropbox connection timeout



23
24
25
# File 'lib/backup/configuration/storage/dropbox.rb', line 23

def timeout
  @timeout
end