dtas-all
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gemspec: allow building gem without setting VERSION


From: Eric Wong
Subject: [PATCH] gemspec: allow building gem without setting VERSION
Date: Thu, 29 Apr 2021 00:56:10 +0000

It's less DRY, but probably more familiar to people who can't
be bothered to use the Makefile.
---
 dtas.gemspec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dtas.gemspec b/dtas.gemspec
index 09eb703..d763a9f 100644
--- a/dtas.gemspec
+++ b/dtas.gemspec
@@ -1,9 +1,9 @@
-# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2021 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 Gem::Specification.new do |s|
   manifest = File.read('.gem-manifest').split(/\n/)
   s.name = %q{dtas}
-  s.version = ENV["VERSION"].dup
+  s.version = (ENV["VERSION"] || '0.18.0').dup
   s.authors = ["dtas hackers"]
   s.summary = "duct tape audio suite for *nix"
   s.description = File.read("README").split(/\n\n/)[1].strip



reply via email to

[Prev in Thread] Current Thread [Next in Thread]