My favorites | Sign in
Project Logo
                
Code license: MIT License
Labels: ruby, irc, daemon
Show all Featured downloads:
ircd.04.tar.gz
People details
Project owners:
  blufox, eumario

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.

irc rfcs

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
    end

It is intended to be simple to modify. Have a look at the source if you need custom behavior.









Hosted by Google Code