|
Project Information
Members
Featured
Downloads
Links
|
ruby-ircd is an IRC daemon written in ruby. It extends the generic server of Webrick server. It was created to to provide the IRC server and client implementations for ruby-hive project. Features
Todo
Usage ircd = IRCServer.new( :Port => 6667 )
begin
trap("INT"){ircd.shutdown}
p = Thread.new {ircd.do_ping()}
# adding service bots eg:
#ircd.addservice('TestBot',IrcClient::TestActor)
ircd.start
rescue Exception => e
puts e.message
endIt is intended to be simple to modify. Have a look at the source if you need custom behavior. |