class Irc::InviteMessage
class to manage IRC INVITEs address?
can be used as a shortcut to see if the bot was invited, which should be true except for server bugs
Attributes
channel user was invited to
Public Class Methods
Source
# File lib/rbot/message.rb, line 554 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 549 def inspect fields = ' channel=' << channel.to_s super(fields) end
Calls superclass method
Irc::BasicUserMessage#inspect