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,T_FILL_THIS_FORM_SHORT 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 DB138202FE for ; Sun, 5 Mar 2017 22:30:03 +0000 (UTC) From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH 4/4] gemspec: stop advertising "private" email address Date: Sun, 5 Mar 2017 22:30:02 +0000 Message-Id: <20170305223002.9822-5-yahns-public@yhbt.net> In-Reply-To: <20170305223002.9822-1-yahns-public@yhbt.net> References: <20170305223002.9822-1-yahns-public@yhbt.net> List-Id: Anonymity is a job for the users sending the mail; lets not hold ourselves unnecessarily accountable for anonymizing or hiding messages. --- HACKING | 3 ++- yahns.gemspec | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HACKING b/HACKING index d0485c4..cf6c660 100644 --- a/HACKING +++ b/HACKING @@ -47,7 +47,8 @@ developers do. Please send patches via git-send-email(1) to the public mailing list at . Pull requests should be formatted using git-request-pull(1). -Mailing list archives: https://yhbt.net/yahns-public/ +All mail is archived publically at: https://yhbt.net/yahns-public/ +Anonymous contributions will always be welcome. No subscription is necessary to post to the mailing list. Please remember to Cc: all recipients as subscription is optional. diff --git a/yahns.gemspec b/yahns.gemspec index 0ac394c..31eb957 100644 --- a/yahns.gemspec +++ b/yahns.gemspec @@ -7,7 +7,7 @@ s.authors = ["yahns hackers"] s.summary = "sleepy, multi-threaded, non-blocking application server" s.description = File.read("README").split(/\n\n/)[1].strip - s.email = %q{yahns@yhbt.net} + s.email = %q{yahns-public@yhbt.net} s.executables = manifest.grep(%r{\Abin/}).map { |s| s.sub(%r{\Abin/}, "") } s.files = manifest s.add_dependency(%q, '~> 2.9') -- EW