--
-$Id: ChangeLog 12 2005-03-28 21:06:34Z tilman $
+$Id: ChangeLog 13 2005-03-29 16:03:33Z tilman $
++
+2005-03-29 Tilman Sauerbeck (tilman at code-monkey de)
+ * Rakefile: Tweak lookup of PKG_VERSION
+
2005-03-28 Tilman Sauerbeck (tilman at code-monkey de)
* lib/redact/app.rb: Tweaked "redact --version" output
* Rakefile, test/test_basic.rb: Use 'edj' instead of 'eet'
-# $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"
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"])