From mboxrd@z Thu Jan 1 00:00:00 1970 From: ingmar@exherbo.org (Ingmar Vanhassel) Date: Wed, 25 Mar 2009 13:56:06 +0000 Subject: [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git Message-ID: <1237989367-21630-1-git-send-email-ingmar@exherbo.org> See ed12112f, where the same was done in the Rakefile --- sup.gemspec | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sup.gemspec b/sup.gemspec index 71b79ed..4341448 100644 --- a/sup.gemspec +++ b/sup.gemspec @@ -9,7 +9,7 @@ FILES = EXTRA_FILES + EXECUTABLES.map { |f| "bin/#{f}" } + LIB_DIRS.map { |d| Di Gem::Specification.new do |s| s.name = %q{sup} - s.version = Redwood::VERSION + s.version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION s.date = Time.now.to_s s.authors = ["William Morgan"] s.email = %q{wmorgan-sup at masanjin.net} -- 1.6.2.1