class Irc::BanlistMessage
class to manager Ban list replies
Attributes
bans[RW]
the bans
Public Class Methods
new(bot, server, source, target, message="")
click to toggle source
Calls superclass method
Irc::BasicUserMessage::new
# File lib/rbot/message.rb, line 652 def initialize(bot, server, source, target, message="") super(bot, server, source, target, message) @bans = [] end
Public Instance Methods
inspect()
click to toggle source
Calls superclass method
Irc::BasicUserMessage#inspect
# File lib/rbot/message.rb, line 657 def inspect fields = ' bans=' << bans.inspect super(fields) end