From 275f9e46252e8713d59101f77a36cc86d2fcb866 Mon Sep 17 00:00:00 2001 From: William Morgan Date: Thu, 10 Jan 2008 09:40:55 -0800 Subject: [PATCH] use "999" instead of 999 for gem version identifier This is necessary for earlier rubygems versions, which require a string version identifier. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 33e9883..69f0b68 100644 --- 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' -- 2.45.2