Class: Moromi::Apns::Environment::Base
- Inherits:
-
Object
- Object
- Moromi::Apns::Environment::Base
show all
- Defined in:
- lib/moromi/apns/environment/base.rb
Instance Method Summary
collapse
Instance Method Details
#identifier ⇒ Object
3
4
5
|
# File 'lib/moromi/apns/environment/base.rb', line 3
def identifier
@identifier ||= Moromi::Apns.config.identifiers[key]
end
|
#key ⇒ Object
7
8
9
|
# File 'lib/moromi/apns/environment/base.rb', line 7
def key
raise NotImplementedError
end
|
#sandbox? ⇒ Boolean
11
12
13
|
# File 'lib/moromi/apns/environment/base.rb', line 11
def sandbox?
true
end
|