From a2379cedc80976815226d227deaa56338f1b3d77 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 18 Aug 2007 06:03:45 +0000 Subject: * lib/rexml/rexml.rb: removed doubled constant. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/rexml.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb index e9575ff41..44617992d 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 " + COPYRIGHT = "Copyright © 2001-2007 Sean Russell " 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 -- cgit