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.9 required=3.0 tests=ALL_TRUSTED,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 5FB541F610; Thu, 28 Jan 2016 00:35:01 +0000 (UTC) Date: Thu, 28 Jan 2016 00:35:01 +0000 From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH] gemspec: make rack a development dependency Message-ID: <20160128003501.GA306@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: We don't depend on rack directly, and unicorn 5.1 will make rack optional. This seems reasonable for testing, but one day I could imagine this being more than an HTTP or Rack server... --- yahns.gemspec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yahns.gemspec b/yahns.gemspec index 59c0b9b..0efe287 100644 --- a/yahns.gemspec +++ b/yahns.gemspec @@ -22,6 +22,9 @@ # Matz Ruby release. s.add_development_dependency(%q, '>= 4.3', '< 6.0') + # for Rack::Utils::HeaderHash#each + s.add_development_dependency(%q, '>= 1.1') + s.homepage = "http://yahns.yhbt.net/README" s.licenses = "GPL-3.0+" end -- EW