From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-1.5 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: yahns-public@yhbt.net Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7A81A20202; Sat, 2 Jan 2016 22:47:37 +0000 (UTC) Date: Sat, 2 Jan 2016 22:47:37 +0000 From: Eric Wong To: yahns-public@yhbt.net Subject: [PUSHED] frozen_string_literal and copyright updates Message-ID: <20160102224737.GA787@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: Two giant tree-wide changes pushed to master, if you have questions or comments, reply with the commit subject line so the search engines can find it: enable frozen_string_literal for Ruby 2.3+ copyright updates for 2016 93 files changed, 337 insertions(+), 253 deletions(-) Also, the cgit instance @ http://yhbt.net/yahns.git/ will soon be replaced with something friendlier to non-CSS users (and with better mail integration to boot). http://yhbt.net/yahns.git/patch?id=ddea1b7e04b7e3475bb615c35e2156c9626b4eac http://yhbt.net/yahns.git/commit?id=ddea1b7e04b7e3475bb615c35e2156c9626b4eac copyright updates for 2016 Using the 'update-copyright' script from gnulib[1]: git ls-files | UPDATE_COPYRIGHT_HOLDER='all contributors' \ UPDATE_COPYRIGHT_USE_INTERVALS=2 \ xargs /path/to/gnulib/build-aux/update-copyright We're also switching to 'GPL-3.0+' as recommended by SPDX to be consistent with our gemspec and other metadata (as opposed to the longer but equivalent "GPLv3 or later"). [1] git://git.savannah.gnu.org/gnulib.git http://yhbt.net/yahns.git/patch?id=9e24bae3428f726800da2963a8f2695f7d4064cd http://yhbt.net/yahns.git/commit?id=9e24bae3428f726800da2963a8f2695f7d4064cd enable frozen_string_literal for Ruby 2.3+ There are likely yet-to-be-discovered bugs in here. Also, keeping explicit #freeze calls for 2.2 users, since most users have not migrated to 2.3, yet. -- EW