commit 0bceb8d5f767cd8766844ef6d8d36a7c058ea36c
parent c4b31d18d6cd802dd61347f760f2a64062459aa5
Author: Giorgio Lando <patroclo7@gmail.com>
Date: Tue, 5 Feb 2008 18:31:14 +0100
allow user to make a gem with a specific version number
If one want to make a gem from a git version of sup, he can also
want to define a version number (e.g. in the form .1, so that when a new version is released the gem will be
updated nonetheless). With this patch the version can be defined with
the REL environment variable (as in ferret Rakefile)
Diffstat:
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git 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"