From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 2E9E720960 for ; Mon, 10 Apr 2017 18:07:59 +0000 (UTC) From: Eric Wong To: kcar-public@bogomips.org Subject: [PATCH] nodoc Kcar::VERSION Date: Mon, 10 Apr 2017 18:07:59 +0000 Message-Id: <20170410180759.17338-1-e@80x24.org> List-Id: Adding this was probably a mistake; as I don't want to encourage people testing for this. kcar will not introduce breaking API changes, ever. I expect users to hold me to this. --- GIT-VERSION-GEN | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 01c0418..12d128d 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -21,7 +21,7 @@ if File.exist?(".git") end vn = vn.sub!(/\Av/, "") -new_ruby_version = "#{CONSTANT} = '#{vn}'\n" +new_ruby_version = "#{CONSTANT} = '#{vn}' # :nodoc:\n" cur_ruby_version = File.read(RVF) rescue nil if new_ruby_version != cur_ruby_version File.open(RVF, "w") { |fp| fp.write(new_ruby_version) } -- EW