summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Gilbert <tom@linuxbrit.co.uk>2005-08-05 23:39:47 +0000
committerTom Gilbert <tom@linuxbrit.co.uk>2005-08-05 23:39:47 +0000
commit7334553f8bc335188533669df733f05b12147af0 (patch)
tree0a3c036e62556e94b8546332a10c922081946569 /lib
parent41e6b1b4067994d98df1b8bcc1fb398569375322 (diff)
more tweaking pre-release
Diffstat (limited to 'lib')
-rw-r--r--lib/rbot/rbotconfig.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rbot/rbotconfig.rb b/lib/rbot/rbotconfig.rb
index fad7b032..042fa39d 100644
--- a/lib/rbot/rbotconfig.rb
+++ b/lib/rbot/rbotconfig.rb
@@ -4,8 +4,11 @@ module Irc
# setup pkg-based configuration - i.e. where were we installed to, where
# are our data files, etc.
begin
+ debug "trying to load rubygems"
require 'rubygems'
+ debug "loaded rubygems, looking for rbot-#$version"
gemname, gem = Gem.source_index.find{|name, spec| spec.name == 'rbot' && spec.version.version == $version}
+ debug "got gem #{gem}"
if gem && path = gem.full_gem_path
debug "installed via rubygems to #{path}"
@@datadir = "#{path}/data/rbot"