From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 522351F45F; Fri, 10 May 2019 02:55:28 +0000 (UTC) Date: Fri, 10 May 2019 02:55:28 +0000 From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH 2/1] doc: include Yahns/ directory on website Message-ID: <20190510025528.wp6lnnzvos3go2jj@dcvr> References: <20190510024442.13224-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190510024442.13224-1-e@80x24.org> List-Id: Otherwise, https://yhbt.net/yahns/Yahns/ProxyPass.html won't be accessible --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index 65862f2..769356e 100644 --- a/Rakefile +++ b/Rakefile @@ -59,6 +59,11 @@ examples.concat(gzex) sh("rsync --chmod=Fugo=r -av #{examples.join(' ')} #{dest}/examples/") + + rdoc = apidoc.keys.grep(%r{\Adoc/Yahns/}) + gzex = rdoc.map { |txt| do_gzip.call(txt) } + examples.concat(gzex) + sh("rsync --chmod=Fugo=r -av #{rdoc.join(' ')} #{dest}/Yahns/") end def tags -- EW