Class: Backup::Configuration::Storage::Dropbox
- Defined in:
- lib/backup/configuration/storage/dropbox.rb
Class Attribute Summary collapse
-
.api_key ⇒ Object
Dropbox API credentials.
-
.api_secret ⇒ Object
Dropbox API credentials.
-
.email ⇒ Object
Dropbox user credentials.
-
.password ⇒ Object
Dropbox user credentials.
-
.path ⇒ Object
Path to where the backups will be stored.
-
.timeout ⇒ Object
Dropbox connection timeout.
Method Summary
Methods inherited from Base
Methods included from Helpers
#clear_defaults!, #getter_methods, #load_defaults!, #setter_methods
Class Attribute Details
.api_key ⇒ Object
Dropbox API credentials
15 16 17 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 15 def api_key @api_key end |
.api_secret ⇒ Object
Dropbox API credentials
15 16 17 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 15 def api_secret @api_secret end |
.email ⇒ Object
Dropbox user credentials
11 12 13 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 11 def email @email end |
.password ⇒ Object
Dropbox user credentials
11 12 13 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 11 def password @password end |
.path ⇒ Object
Path to where the backups will be stored
19 20 21 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 19 def path @path end |
.timeout ⇒ Object
Dropbox connection timeout
23 24 25 |
# File 'lib/backup/configuration/storage/dropbox.rb', line 23 def timeout @timeout end |