diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-01 01:48:37 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-01 01:48:37 +0200 |
commit | 6b1a398dde91137afe4910f4552a17207678dc08 (patch) | |
tree | 7ac12e17c420733e7b14f86a1f34181d3ed5146e | |
parent | b26120bc609851042c6e6997fd1a259f79b178f6 (diff) |
Version 0.9.11-rc1
-rwxr-xr-x | bin/rbot | 2 | ||||
-rwxr-xr-x | launch_here.rb | 2 | ||||
-rw-r--r-- | lib/rbot/rbotconfig.rb | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -47,7 +47,7 @@ require 'etc' require 'getoptlong' require 'fileutils' -$version ||= "0.9.11-git" +$version ||= "0.9.11-rc1" $version_timestamp ||= 0 $opts = Hash.new diff --git a/launch_here.rb b/launch_here.rb index b368f4c6..0978ac4f 100755 --- a/launch_here.rb +++ b/launch_here.rb @@ -8,7 +8,7 @@ puts "Running from #{SCM_DIR}" $:.unshift File.join(SCM_DIR, 'lib') -$version = '0.9.11-git' +$version = '0.9.11-rc1' pwd = Dir.pwd begin diff --git a/lib/rbot/rbotconfig.rb b/lib/rbot/rbotconfig.rb index 692113a9..eb55f965 100644 --- a/lib/rbot/rbotconfig.rb +++ b/lib/rbot/rbotconfig.rb @@ -27,7 +27,7 @@ class Bot begin debug "trying to load rubygems" require 'rubygems' - if $version =~ /^(.*)-git( .*)?$/ + if $version =~ /^(.*)-(?:git|rc\d)(?: .*)?$/ version = $1 else version = $version |