commit 275f9e46252e8713d59101f77a36cc86d2fcb866
parent ed12112fe44da42eead22aeaeaa70d4c42596420
Author: William Morgan <wmorgan-sup@masanjin.net>
Date: Thu, 10 Jan 2008 09:40:55 -0800
use "999" instead of 999 for gem version identifier
This is necessary for earlier rubygems versions, which require a string
version identifier.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Rakefile b/Rakefile
@@ -10,7 +10,7 @@ end # thanks to "Mike H"
## allow people who use development versions by running "rake gem"
## and installing the resulting gem it to be able to do this. (gem
## versions must be in dotted-digit notation only).
-version = Redwood::VERSION == "git" ? 999 : Redwood::VERSION
+version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION
Hoe.new('sup', version) do |p|
p.rubyforge_name = 'sup'