summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Rakefile2
-rw-r--r--lib/rbot/rbotconfig.rb3
2 files changed, 4 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 3ba7f099..80be9782 100644
--- a/Rakefile
+++ b/Rakefile
@@ -19,7 +19,7 @@ spec = Gem::Specification.new do |s|
s.files = FileList['lib/**/*.rb', 'bin/*', 'data/**/*', 'AUTHORS', 'COPYING', 'README', 'REQUIREMENTS', 'TODO', 'ChangeLog', 'INSTALL', 'Usage_en.txt', 'setup.rb'].to_a.delete_if {|item| item == ".svn"}
s.executables << 'rbot'
- s.autorequire = 'rbot/ircbot'
+# s.autorequire = 'rbot/ircbot'
s.has_rdoc = true
s.rdoc_options = ['--exclude', 'post-install.rb',
'--title', 'rbot API Documentation', '--main', 'README', 'README']
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"