Module: MiniBot::Events
- Includes:
- Constants
- Included in:
- Daemon
- Defined in:
- lib/minibot/events.rb,
lib/minibot/constants.rb
Defined Under Namespace
Modules: Constants
Constant Summary
Constants included
from Constants
Constants::ERR_NICKNAMEINUSE, Constants::EXPECTED_REPLIES_TOPIC, Constants::RPL_NOTOPIC, Constants::RPL_TOPIC, Constants::RPL_TOPIC_META, Constants::RPL_WELCOME
Instance Method Summary
collapse
-
#default(message_str) ⇒ Object
-
#error(num, message) ⇒ Object
-
#invited(channel, nick) ⇒ Object
-
#kicked(channel, nick, message) ⇒ Object
-
#message(channel, sender, message) ⇒ Object
-
#pinged ⇒ Object
-
#private_message(sender, message) ⇒ Object
-
#ready ⇒ Object
-
#topic_changed(channel, nick, topic) ⇒ Object
-
#user_action(channel, nick, message) ⇒ Object
-
#user_joined(channel, nick) ⇒ Object
-
#user_kicked(channel, kicker, kicked, message) ⇒ Object
-
#user_parted(channel, nick) ⇒ Object
Instance Method Details
#default(message_str) ⇒ Object
23
24
|
# File 'lib/minibot/events.rb', line 23
def default(message_str)
end
|
#error(num, message) ⇒ Object
41
42
|
# File 'lib/minibot/events.rb', line 41
def error(num, message)
end
|
#invited(channel, nick) ⇒ Object
20
21
|
# File 'lib/minibot/events.rb', line 20
def invited(channel, nick)
end
|
#kicked(channel, nick, message) ⇒ Object
32
33
|
# File 'lib/minibot/events.rb', line 32
def kicked(channel, nick, message)
end
|
#message(channel, sender, message) ⇒ Object
5
6
|
# File 'lib/minibot/events.rb', line 5
def message(channel, sender, message)
end
|
#pinged ⇒ Object
26
27
|
# File 'lib/minibot/events.rb', line 26
def pinged
end
|
#private_message(sender, message) ⇒ Object
8
9
|
# File 'lib/minibot/events.rb', line 8
def private_message(sender, message)
end
|
#ready ⇒ Object
38
39
|
# File 'lib/minibot/events.rb', line 38
def ready
end
|
#topic_changed(channel, nick, topic) ⇒ Object
29
30
|
# File 'lib/minibot/events.rb', line 29
def topic_changed(channel, nick, topic)
end
|
#user_action(channel, nick, message) ⇒ Object
17
18
|
# File 'lib/minibot/events.rb', line 17
def user_action(channel, nick, message)
end
|
#user_joined(channel, nick) ⇒ Object
11
12
|
# File 'lib/minibot/events.rb', line 11
def user_joined(channel, nick)
end
|
#user_kicked(channel, kicker, kicked, message) ⇒ Object
35
36
|
# File 'lib/minibot/events.rb', line 35
def user_kicked(channel, kicker, kicked, message)
end
|
#user_parted(channel, nick) ⇒ Object
14
15
|
# File 'lib/minibot/events.rb', line 14
def user_parted(channel, nick)
end
|