summaryrefslogtreecommitdiff
path: root/launch_here.rb
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-09-12 22:31:15 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-09-12 22:31:15 +0000
commit6f5528a63b44e610a3d25d7fe583399163d7d2da (patch)
tree0db7c1642d40bd68a85338f4cdbb87a03f5e7747 /launch_here.rb
parent8efdfd2651a720e0dc1681e716d0a23b0429e4fd (diff)
namespaces: move rbot-specific classes and modules from Irc::* to Irc::Bot::*
Diffstat (limited to 'launch_here.rb')
-rwxr-xr-xlaunch_here.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/launch_here.rb b/launch_here.rb
index ad149d68..033e075f 100755
--- a/launch_here.rb
+++ b/launch_here.rb
@@ -9,10 +9,12 @@ puts "Running from #{SVN_DIR}"
$:.unshift File.join(SVN_DIR, 'lib')
module Irc
+class Bot
module Config
@@datadir = File.join SVN_DIR, 'data/rbot'
@@coredir = File.join SVN_DIR, 'lib/rbot/core'
end
end
+end
load File.join(SVN_DIR, 'bin/rbot')