]> git.cworth.org Git - sup/commitdiff
Merge branch 'rake-gem-REL' into next
authorWilliam Morgan <wmorgan-sup@masanjin.net>
Tue, 5 Feb 2008 17:49:14 +0000 (09:49 -0800)
committerWilliam Morgan <wmorgan-sup@masanjin.net>
Tue, 5 Feb 2008 17:49:14 +0000 (09:49 -0800)
Rakefile

index f99246f7376c4d8ce634840eb2a2a186625964ba..289da642aeddb4a2ea02528f50f55d932c7638f1 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -9,9 +9,13 @@ 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
-
+## versions must be in dotted-digit notation only and can be passed
+## with the REL environment variable to "rake gem").
+if ENV['REL']
+  version = ENV['REL']
+else
+  version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION
+end
 Hoe.new('sup', version) do |p|
   p.rubyforge_name = 'sup'
   p.author = "William Morgan"