Class: Net::IRC::RplLoggedin

Inherits:
ReplyWithRegistryParameters show all
Defined in:
lib/net/irc.rb

Overview

901 <target> <id> <username> <hostname> :You are now logged in. (id <id>, username <username>, hostname <hostname>)

Constant Summary

Constants inherited from Message

Message::COMMAND_MAPS

Instance Attribute Summary

Attributes inherited from ReplyWithRegistryParameters

#hostname, #id, #username

Attributes inherited from ReplyWithTarget

#target

Attributes inherited from Reply

#text

Attributes inherited from Message

#command, #parameters, #prefix

Instance Method Summary collapse

Methods inherited from Message

command_for_number, parse, #prefix?, #to_s, #write

Constructor Details

#initialize(target, id, username, hostname, text) ⇒ RplLoggedin

Returns a new instance of RplLoggedin.



505
506
507
# File 'lib/net/irc.rb', line 505

def initialize(target, id, username, hostname, text)
  super(nil, 'RPL_LOGGED_IN', target, id, username, hostname, text)
end