class Irc::ListMessage

class to manage LIST replies

Attributes

list[RW]

Public Class Methods

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

Public Instance Methods

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