guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add ruby-bio-commandeer.


From: Ben Woodcroft
Subject: 02/03: gnu: Add ruby-bio-commandeer.
Date: Wed, 13 Jan 2016 22:03:13 +0000

benwoodcroft pushed a commit to branch master
in repository guix.

commit 3d84a99e73fdc1f7523d33c27a4329ec43b6dbc9
Author: Ben Woodcroft <address@hidden>
Date:   Sat Nov 21 10:03:41 2015 +1000

    gnu: Add ruby-bio-commandeer.
    
    * gnu/packages/ruby.scm (ruby-bio-commandeer): New variable.
---
 gnu/packages/ruby.scm |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index dcf2eef..f7a20b8 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2958,3 +2958,39 @@ there is no danger of full pipes or threading issues 
hanging your process or
 subprocess.")
     (home-page "https://github.com/ahoward/systemu";)
     (license license:ruby)))
+
+(define-public ruby-bio-commandeer
+  (package
+    (name "ruby-bio-commandeer")
+    (version "0.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "bio-commandeer" version))
+       (sha256
+        (base32
+         "061jxa6km92qfwzl058r2gp8gfcsbyr7m643nw1pxvmjdswaf6ly"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           ;; Run test without calling 'rake' so that jeweler is
+           ;; not required as an input.
+           (lambda _
+             (zero? (system* "rspec" "spec/bio-commandeer_spec.rb")))))))
+    (propagated-inputs
+     `(("ruby-bio-logger" ,ruby-bio-logger)
+       ("ruby-systemu" ,ruby-systemu)))
+    (native-inputs
+     `(("bundler" ,bundler)
+       ("ruby-rspec" ,ruby-rspec)))
+    (synopsis "Simplified running of shell commands from within Ruby")
+    (description
+     "Bio-commandeer provides an opinionated method of running shell commands
+from within Ruby.  The advantage of bio-commandeer over other methods of
+running external commands is that when something goes wrong, messages printed
+to the @code{STDOUT} and @code{STDERR} streams are reported, giving extra
+detail to ease debugging.")
+    (home-page "http://github.com/wwood/bioruby-commandeer";)
+    (license license:expat)))



reply via email to

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