diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-18 12:18:18 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-18 12:18:18 +0000 |
commit | 1643127b5b9b115451f10d8f40338c83b2e0c424 (patch) | |
tree | 1413a28e211667e73d8c8d0702dcfbaba089d62a /lib/rbot/rbotconfig.rb | |
parent | 1b8dffbc43b3716ce32086e2e1f88e92adc5056a (diff) |
rbot now properly identifies as the 'next version svn', and the gem package is built as the 'next version'
Diffstat (limited to 'lib/rbot/rbotconfig.rb')
-rw-r--r-- | lib/rbot/rbotconfig.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/rbot/rbotconfig.rb b/lib/rbot/rbotconfig.rb index 01f66307..de716169 100644 --- a/lib/rbot/rbotconfig.rb +++ b/lib/rbot/rbotconfig.rb @@ -16,7 +16,12 @@ module Irc 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} + if $version =~ /(.*)-svn\Z/ + version = $1 + else + version = $version + end + 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}" |