diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-18 06:03:45 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-18 06:03:45 +0000 |
commit | e765f48428280bf2c1b70853d5a47dad5c33092b (patch) | |
tree | 21fec3d57e5139febc10f1812eaca2410435e358 /lib/rexml/rexml.rb | |
parent | 2d9512edd95722eff788d33c24d7c92d6e5a35de (diff) |
* lib/rexml/rexml.rb: removed doubled constant.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/rexml.rb')
-rw-r--r-- | lib/rexml/rexml.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb index e9575ff418..44617992da 100644 --- a/lib/rexml/rexml.rb +++ b/lib/rexml/rexml.rb @@ -20,11 +20,10 @@ # or can be accessed # online[http://www.germane-software.com/software/rexml/docs/tutorial.html] module REXML - COPYRIGHT = "Copyright © 2001-2007 Sean Russell <[email protected]>" + COPYRIGHT = "Copyright © 2001-2007 Sean Russell <[email protected]>" DATE = "2007/209" VERSION = "3.1.7.1" - REVISION = "$Revision: 1270$".gsub(/\$Revision:|\$/,'').strip - REVISION = "$Revision$".gsub(/\$Revision:|\$/,'').strip + REVISION = %w"$Revision$"[1] Copyright = COPYRIGHT Version = VERSION |