guix-patches
[Top][All Lists]
Advanced

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

[bug#32535] [PATCH 01/41] gnu: Add ruby-concurrent.


From: Julien Lepiller
Subject: [bug#32535] [PATCH 01/41] gnu: Add ruby-concurrent.
Date: Sun, 26 Aug 2018 18:41:23 +0200

* gnu/packages/ruby.scm (ruby-concurrent): New variable.
---
 gnu/packages/ruby.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 908dfd575..75ecf4278 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -193,6 +193,36 @@ a focus on simplicity and productivity.")
                (("/bin/sh") (which "sh")))
              #t)))))))
 
+(define-public ruby-concurrent
+  (package
+    (name "ruby-concurrent")
+    (version "1.0.5")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "concurrent-ruby" version))
+              (sha256
+               (base32
+                "183lszf5gx84kcpb779v6a2y0mx9sssy8dgppng1z9a505nj1qcf"))))
+    (build-system ruby-build-system)
+    (arguments `(#:tests? #f)); No rakefile
+    (home-page "http://www.concurrent-ruby.com/";)
+    (synopsis "Concurrency tools for Ruby")
+    (description "This gem provides concurrency tools for Ruby.  Its design 
goals are:
address@hidden
address@hidden Be an 'unopinionated' toolbox that provides useful utilities 
without
+      debating which is better or why
address@hidden Remain free of external gem dependencies
address@hidden Stay true to the spirit of the languages providing inspiration
address@hidden But implement in a way that makes sense for Ruby
address@hidden Keep the semantics as idiomatic Ruby as possible
address@hidden Support features that make sense in Ruby
address@hidden Exclude features that don't make sense in Ruby
address@hidden Be small, lean, and loosely coupled
address@hidden Thread-safety
address@hidden Backward compatibility
address@hidden itemize")
+    (license license:expat)))
+
 (define-public ruby-highline
   (package
     (name "ruby-highline")
-- 
2.18.0






reply via email to

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