Class: SMS::Thing
- Inherits:
-
Object
- Object
- SMS::Thing
- Defined in:
- lib/rubysms/thing.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#label ⇒ Object
Returns the value of attribute label.
-
#router ⇒ Object
Returns the value of attribute router.
Instance Method Summary collapse
-
#incoming(*args) ⇒ Object
stubs to avoid respond_to? or NoMethodError on subclasses.
- #outgoing(*args) ⇒ Object
- #start(*args) ⇒ Object
- #stop(*args) ⇒ Object
Instance Attribute Details
#label ⇒ Object
Returns the value of attribute label.
6 7 8 |
# File 'lib/rubysms/thing.rb', line 6 def label @label end |
#router ⇒ Object
Returns the value of attribute router.
6 7 8 |
# File 'lib/rubysms/thing.rb', line 6 def router @router end |
Instance Method Details
#incoming(*args) ⇒ Object
stubs to avoid respond_to? or NoMethodError on subclasses
11 |
# File 'lib/rubysms/thing.rb', line 11 def incoming(*args); end |
#outgoing(*args) ⇒ Object
12 |
# File 'lib/rubysms/thing.rb', line 12 def outgoing(*args); end |
#start(*args) ⇒ Object
13 |
# File 'lib/rubysms/thing.rb', line 13 def start(*args); end |
#stop(*args) ⇒ Object
14 |
# File 'lib/rubysms/thing.rb', line 14 def stop(*args); end |