* lib/logger.rb (ProgName): fixed for svn, based on a patch from

Nobuhiro IMAI at [ruby-dev:37108].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-11-18 07:18:29 +00:00
parent 9d2ecf3d90
commit b7ac5b1262
3 changed files with 11 additions and 2 deletions

View file

@ -181,8 +181,8 @@ require 'monitor'
class Logger
VERSION = "1.2.6"
/: (\S+),v (\S+)/ =~ %q$Id$
ProgName = "#{$1}/#{$2}"
id, name, rev = %w$Id$
ProgName = "#{name.chomp(",")}/#{rev}"
class Error < RuntimeError; end
class ShiftingError < Error; end