From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add bundler. Date: Fri, 27 Feb 2015 14:09:24 -0500 Message-ID: <87d24v893v.fsf@fsf.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58330) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRQHv-00081x-9E for guix-devel@gnu.org; Fri, 27 Feb 2015 14:09:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRQHu-0007BT-Dd for guix-devel@gnu.org; Fri, 27 Feb 2015 14:09:27 -0500 Received: from mail.fsf.org ([208.118.235.13]:51505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRQHu-0007BL-B9 for guix-devel@gnu.org; Fri, 27 Feb 2015 14:09:26 -0500 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:48263 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1YRQHt-0000Pv-AT for guix-devel@gnu.org; Fri, 27 Feb 2015 14:09:25 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-bundler.patch >From c753913eca6180a1382379c1de96d222a17ddddc Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 23 Feb 2015 19:10:57 -0500 Subject: [PATCH] gnu: Add bundler. * gnu/packages/ruby.scm (bundler): New variable. --- gnu/packages/ruby.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8b98876..d78fe1d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -143,6 +143,26 @@ announcement.") (home-page "http://www.zenspider.com/projects/hoe.html") (license license:expat))) +(define-public bundler + (package + (name "bundler") + (version "1.8.2") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/bundler/bundler/archive/v" + version ".tar.gz")) + (sha256 + (base32 + "0w80gig3g6zrm8d41afwgcnwqn0s26q1rpdhk5na0a3rndzi652w")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) ; TODO: requires rspec. + (synopsis "Ruby dependency manager") + (description "Bundler provides a consistent environment for Ruby projects by +tracking and installing the exact gems and versions that are needed.") + (home-page "http://bundler.io/") + (license license:expat))) + (define-public ruby-i18n (package (name "ruby-i18n") -- 2.1.4 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--