]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - launch_here.rb
Move 'it_IT' locale directory to 'it'
[user/henk/code/ruby/rbot.git] / launch_here.rb
index 2e7161dbc993aee2e8d0e2c4c373f70ce147fece..ad149d68c6aa96d1eca7ce2b175e1535f0792009 100755 (executable)
@@ -1,27 +1,18 @@
-#!/usr/bin/ruby\r
-#\r
-# Load rbot from this directory. (No need to install it with setup.rb)\r
-#\r
-\r
-BASEDIR = Dir.pwd\r
-\r
-#puts "Load path: #{$LOAD_PATH.inspect}"\r
+#!/usr/bin/ruby
+#
+# Load rbot from this directory. (No need to install it with setup.rb)
+#
+
+SVN_DIR = File.expand_path(File.dirname('__FILE__'))
+puts "Running from #{SVN_DIR}"
+
+$:.unshift File.join(SVN_DIR, 'lib')
 
-def add_to_path(dir)
-  $LOAD_PATH.unshift dir
-end
-\r
 module Irc
-  module PKGConfig
-    DATADIR = File.join BASEDIR, 'data/rbot'
-    COREDIR = File.join BASEDIR, 'lib/rbot/core'
+  module Config
+    @@datadir = File.join SVN_DIR, 'data/rbot'
+    @@coredir = File.join SVN_DIR, 'lib/rbot/core'
   end
-end\r
-\r
-add_to_path( File.join BASEDIR, 'lib' )\r
-\r
-p ARGV\r
-ARGV << "--debug"\r
-p ARGV\r
+end
 
-load( File.join BASEDIR, 'bin/rbot' )
+load File.join(SVN_DIR, 'bin/rbot')