guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add bundler.


From: David Thompson
Subject: [PATCH] gnu: Add bundler.
Date: Fri, 27 Feb 2015 14:09:24 -0500
User-agent: Notmuch/0.18.2 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-pc-linux-gnu)

>From c753913eca6180a1382379c1de96d222a17ddddc Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
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

-- 
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate

reply via email to

[Prev in Thread] Current Thread [Next in Thread]