Class: Urbanairship::Base

Inherits:
Object
  • Object
show all
Includes:
Service
Defined in:
lib/urbanairship/base.rb

Instance Attribute Summary

Attributes included from Service

#application_key, #application_secret, #logger, #master_secret

Instance Method Summary collapse

Methods included from Service

#batch_push, #broadcast_push, #delete_scheduled_push, #feedback, #push, #register_device, #unregister_device

Constructor Details

#initialize(application_key, application_secret, master_secret) ⇒ Base

Returns a new instance of Base.



7
8
9
10
11
# File 'lib/urbanairship/base.rb', line 7

def initialize(application_key, application_secret, master_secret)
  self.application_key = application_key
  self.application_secret = application_secret
  self.master_secret = master_secret
end