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=-2.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: unicorn-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 26FF11FD7D; Sun, 17 Aug 2014 02:34:04 +0000 (UTC) From: Eric Wong To: unicorn-public@bogomips.org Cc: Ken Dreyer Subject: [PATCH 2/3] unicorn.gemspec: depend on test-unit 3.0 Date: Sun, 17 Aug 2014 02:33:54 +0000 Message-Id: <1408242835-21114-3-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.0.0.rc4.1.g4a28f16 In-Reply-To: <1408242835-21114-1-git-send-email-e@80x24.org> References: <1408242835-21114-1-git-send-email-e@80x24.org> List-Id: test-unit 3 and minitest 5 will have equal support status as a bundled gems when Ruby 2.2.0 is released in December 2014. These bundled gems will appear in the user-oriented tarball installations, but do not get installed by "make install" when installing Ruby from SVN or git. test-unit appears to be actively maintained and good at keeping backwards compatibility even on a major version change, so this means no code changes on our end. I am not convinced switching to minitest is worth the effort. Cc: Ken Dreyer --- unicorn.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/unicorn.gemspec b/unicorn.gemspec index b24b1ac..9456db2 100644 --- a/unicorn.gemspec +++ b/unicorn.gemspec @@ -37,6 +37,7 @@ Gem::Specification.new do |s| s.add_dependency(%q, '~> 2.6') s.add_dependency(%q, '~> 0.7') + s.add_development_dependency('test-unit', '~> 3.0') s.add_development_dependency('wrongdoc', '~> 1.8') s.licenses = ["GPLv2+", "Ruby 1.8"] -- EW