[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add bundler.
From: |
David Thompson |
Subject: |
05/06: gnu: Add bundler. |
Date: |
Sat, 30 May 2015 00:28:18 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit 2cbc105bb358ca473e35395b57b5af2c54110567
Author: David Thompson <address@hidden>
Date: Wed May 27 21:37:06 2015 -0400
gnu: Add bundler.
* gnu/packages/ruby.scm (bundler): New variable.
---
gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index a738d3c..3d23e74 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -316,3 +316,26 @@ Ruby. This meta-package includes the RSpec test runner,
along with the
expectations and mocks frameworks.")
(home-page "http://rspec.info/")
(license license:expat)))
+
+;; Bundler is yet another source of circular dependencies, so we must disable
+;; its test suite as well.
+(define-public bundler
+ (package
+ (name "bundler")
+ (version "1.9.9")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/bundler/bundler/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "08flx3n9hb3yz8mm5k16cdz0sb7g774f6vxn6gc3wfh5la83vfyx"))))
+ (build-system ruby-build-system)
+ (arguments
+ '(#:tests? #f)) ; avoid dependency cycles
+ (synopsis "Ruby gem bundler")
+ (description "Bundler automatically downloads and installs a list of gems
+specified in a \"Gemfile\", as well as their dependencies.")
+ (home-page "http://bundler.io/")
+ (license license:expat)))
- branch master updated (969ee40 -> 98b87b8), David Thompson, 2015/05/29
- 01/06: gnu: Add ruby-rspec-core., David Thompson, 2015/05/29
- 02/06: gnu: Add ruby-rspec-expectations., David Thompson, 2015/05/29
- 04/06: gnu: Add ruby-rspec., David Thompson, 2015/05/29
- 06/06: gnu: Add ruby-useragent., David Thompson, 2015/05/29
- 03/06: gnu: Add ruby-rspec-mocks., David Thompson, 2015/05/29
- 05/06: gnu: Add bundler.,
David Thompson <=