class Irc::Bot::RemoteObject

The Irc::Bot::RemoteObject class represents and object that will take care of interfacing with remote clients

Example client session:

require 'drb'
rbot = DRbObject.new_with_uri('druby://localhost:7268')
id = rbot.delegate(nil, 'remote login someuser somepass')[:return]
rbot.delegate(id, 'some secret command')

Of course, the remote login is only neede for commands which may not be available to everyone