From: William Morgan Date: Thu, 10 Jan 2008 17:40:55 +0000 (-0800) Subject: use "999" instead of 999 for gem version identifier X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=275f9e46252e8713d59101f77a36cc86d2fcb866;p=sup use "999" instead of 999 for gem version identifier This is necessary for earlier rubygems versions, which require a string version identifier. --- 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'