Class: NotificationHub::Channels::Sms::Base
- Inherits:
-
Object
- Object
- NotificationHub::Channels::Sms::Base
- Defined in:
- lib/notification_hub/channels/sms/base.rb
Direct Known Subclasses
Class Attribute Summary collapse
-
.gateway_code ⇒ Object
Returns the value of attribute gateway_code.
-
.gateway_options ⇒ Object
Returns the value of attribute gateway_options.
Instance Method Summary collapse
-
#initialize(options) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(options) ⇒ Base
Returns a new instance of Base.
5 6 7 8 9 |
# File 'lib/notification_hub/channels/sms/base.rb', line 5 def initialize() Sms.default_gateway = self.class.gateway_code [:template_path] ||= "notification_hub/sms" self.class. = end |
Class Attribute Details
.gateway_code ⇒ Object
Returns the value of attribute gateway_code.
13 14 15 |
# File 'lib/notification_hub/channels/sms/base.rb', line 13 def gateway_code @gateway_code end |
.gateway_options ⇒ Object
Returns the value of attribute gateway_options.
12 13 14 |
# File 'lib/notification_hub/channels/sms/base.rb', line 12 def @gateway_options end |