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[R]

channel user was invited to

Public Class Methods

new(bot, server, source, target, channel, message="") click to toggle source
Calls superclass method Irc::BasicUserMessage.new
# File lib/rbot/message.rb, line 554
def initialize(bot, server, source, target, channel, message="")
  super(bot, server, source, target, message)
  @channel = channel
end

Public Instance Methods

inspect() click to toggle source
Calls superclass method Irc::BasicUserMessage#inspect
# File lib/rbot/message.rb, line 549
def inspect
  fields = ' channel=' << channel.to_s
  super(fields)
end