diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-07-14 12:02:31 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-07-14 12:02:31 +0000 |
commit | c4158048419c97a51108b33557796d1004c777cb (patch) | |
tree | 51aaee8847ed5ca53195c14768cda39c131071a6 | |
parent | e7bfc25740c5b769b5bccec06d9bf623044d8b3e (diff) |
Webrick functionality is now in a plugin
-rw-r--r-- | rbot/ircbot.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rbot/ircbot.rb b/rbot/ircbot.rb index 45603963..26f3f8bb 100644 --- a/rbot/ircbot.rb +++ b/rbot/ircbot.rb @@ -70,9 +70,6 @@ class IrcBot # and restore objects in their own namespaces.) attr_reader :registry - # our webrick instance - attr_reader :http_server - # create a new IrcBot with botclass +botclass+ def initialize(botclass) @botclass = botclass.gsub(/\/$/, "") @@ -395,7 +392,6 @@ class IrcBot @socket.flush @socket.shutdown @registry.close - @http_server.shutdown puts "rbot quit (#{message})" exit 0 end |