* [sup-talk] [PATCH] allow user to make a gem with a specific version number
@ 2008-02-05 17:31 Giorgio Lando
2008-02-05 17:50 ` William Morgan
0 siblings, 1 reply; 2+ messages in thread
From: Giorgio Lando @ 2008-02-05 17:31 UTC (permalink / raw)
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 <previous public
release>.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)
---
Rakefile | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/Rakefile b/Rakefile
index f99246f..289da64 100644
--- 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"
--
1.5.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [sup-talk] [PATCH] allow user to make a gem with a specific version number
2008-02-05 17:31 [sup-talk] [PATCH] allow user to make a gem with a specific version number Giorgio Lando
@ 2008-02-05 17:50 ` William Morgan
0 siblings, 0 replies; 2+ messages in thread
From: William Morgan @ 2008-02-05 17:50 UTC (permalink / raw)
Reformatted excerpts from Giorgio Lando's message of 2008-02-05:
> 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 <previous public
> release>.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)
Applied, thanks!
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-05 17:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-05 17:31 [sup-talk] [PATCH] allow user to make a gem with a specific version number Giorgio Lando
2008-02-05 17:50 ` William Morgan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox