class Irc::KickMessage
class to manage IRC KICKs address?
can be used as a shortcut to see if the bot was kicked, basically, target
was kicked from channel
by source
with message
Attributes
channel user was kicked from
Public Class Methods
Source
# File lib/rbot/message.rb, line 536 def initialize(bot, server, source, target, channel, message="") super(bot, server, source, target, message) @channel = channel end
Calls superclass method
Irc::BasicUserMessage::new
Public Instance Methods
Source
# File lib/rbot/message.rb, line 531 def inspect fields = ' channel=' << channel.to_s super(fields) end
Calls superclass method
Irc::BasicUserMessage#inspect