Tweak lookup of PKG_VERSION.
[redact.git] / Rakefile
index d6bf235f26b39042029d0036d6b597b6c137be29..195ffa8c4cffaa78cab99d8cc75c7627d1d98ba3 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -1,4 +1,4 @@
-# $Id: Rakefile 12 2005-03-28 21:06:34Z tilman $
+# $Id: Rakefile 13 2005-03-29 16:03:33Z tilman $
 
 require "rake/clean"
 require "rake/testtask"
@@ -8,8 +8,8 @@ require "rake/contrib/compositepublisher.rb"
 require "rake/contrib/sshpublisher"
 
 PKG_NAME = "redact"
-PKG_VERSION = `grep VERSION lib/redact/redact.rb`.
-              match(/VERSION = \"(.*)\"/).captures.first
+PKG_VERSION = File.read("lib/redact/redact.rb").
+              match(/^\s*VERSION = \"(.*)\"\s*$/).captures.first
 
 CLOBBER.include(FileList["test/*.edj"])