Class: Backup::Notifier::Campfire
- Defined in:
- lib/backup/notifier/campfire.rb
Instance Attribute Summary collapse
-
#api_token ⇒ Object
Campfire api authentication token.
-
#room_id ⇒ Object
Campfire account’s room id.
-
#subdomain ⇒ Object
Campfire account’s subdomain.
Attributes inherited from Base
#max_retries, #message, #model, #on_failure, #on_success, #on_warning, #retry_waitsec
Instance Method Summary collapse
-
#initialize(model, &block) ⇒ Campfire
constructor
A new instance of Campfire.
Methods inherited from Base
Methods included from Config::Helpers
Methods included from Utilities::Helpers
Constructor Details
#initialize(model, &block) ⇒ Campfire
Returns a new instance of Campfire.
20 21 22 23 |
# File 'lib/backup/notifier/campfire.rb', line 20 def initialize(model, &block) super instance_eval(&block) if block_given? end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Backup::Config::Helpers
Instance Attribute Details
#api_token ⇒ Object
Campfire api authentication token
10 11 12 |
# File 'lib/backup/notifier/campfire.rb', line 10 def api_token @api_token end |
#room_id ⇒ Object
Campfire account’s room id
18 19 20 |
# File 'lib/backup/notifier/campfire.rb', line 18 def room_id @room_id end |
#subdomain ⇒ Object
Campfire account’s subdomain
14 15 16 |
# File 'lib/backup/notifier/campfire.rb', line 14 def subdomain @subdomain end |