Class: Event
- Inherits:
-
Object
show all
- Includes:
- SlackRubyBot::Loggable
- Defined in:
- src/events/event.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Instance Attribute Details
#app ⇒ Object
Returns the value of attribute app
4
5
6
|
# File 'src/events/event.rb', line 4
def app
@app
end
|
Instance Method Details
#message? ⇒ Boolean
11
12
13
|
# File 'src/events/event.rb', line 11
def message?
false
end
|
#mqtt_message? ⇒ Boolean
19
20
21
|
# File 'src/events/event.rb', line 19
def mqtt_message?
false
end
|
#reaction? ⇒ Boolean
15
16
17
|
# File 'src/events/event.rb', line 15
def reaction?
false
end
|