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,AWL,BAYES_00, RP_MATCHES_RCVD 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 B72C7202F8 for ; Sun, 5 Mar 2017 22:30:03 +0000 (UTC) From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH 2/4] chunk_body: nodoc this internal class Date: Sun, 5 Mar 2017 22:30:00 +0000 Message-Id: <20170305223002.9822-3-yahns-public@yhbt.net> In-Reply-To: <20170305223002.9822-1-yahns-public@yhbt.net> References: <20170305223002.9822-1-yahns-public@yhbt.net> List-Id: Although we do not publish RDoc-generated documentation on our website, other places may, an people use ri(1) locally. --- lib/yahns/chunk_body.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/yahns/chunk_body.rb b/lib/yahns/chunk_body.rb index 6e56a18..aab803b 100644 --- a/lib/yahns/chunk_body.rb +++ b/lib/yahns/chunk_body.rb @@ -2,7 +2,8 @@ # Copyright (C) 2016 all contributors # License: GPL-3.0+ # frozen_string_literal: true -class Yahns::ChunkBody + +class Yahns::ChunkBody # :nodoc: def initialize(body, vec) @body = body @vec = vec -- EW