summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbot/rbotconfig.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/rbotconfig.rb b/lib/rbot/rbotconfig.rb
index 97f8173e..692113a9 100644
--- a/lib/rbot/rbotconfig.rb
+++ b/lib/rbot/rbotconfig.rb
@@ -27,12 +27,12 @@ class Bot
begin
debug "trying to load rubygems"
require 'rubygems'
- debug "loaded rubygems, looking for rbot-#$version"
- if $version =~ /(.*)-(svn|git)\Z/
+ if $version =~ /^(.*)-git( .*)?$/
version = $1
else
version = $version
end
+ debug "loaded rubygems, looking for rbot version #{$version} (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