guix-commits
[Top][All Lists]
Advanced

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

58/66: gnu: Add ruby-globalid.


From: guix-commits
Subject: 58/66: gnu: Add ruby-globalid.
Date: Thu, 14 Feb 2019 16:38:41 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit f9da1ada2308718a64deb44f0ebda0cbe2a31fa5
Author: Christopher Baines <address@hidden>
Date:   Mon Jan 28 16:23:09 2019 +0000

    gnu: Add ruby-globalid.
    
    Required for ruby-activejob.
    
    * gnu/packages/ruby.scm (ruby-globalid): New variable.
---
 gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 1071460..38d462e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -7533,3 +7533,27 @@ interface over different adapters.")
 for scalable network clients and servers.")
    (home-page "https://github.com/socketry/nio4r";)
    (license license:expat)))
+
+(define-public ruby-globalid
+  (package
+   (name "ruby-globalid")
+   (version "0.4.2")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (rubygems-uri "globalid" version))
+     (sha256
+      (base32
+       "1zkxndvck72bfw235bd9nl2ii0lvs5z88q14706cmn702ww2mxv1"))))
+   (build-system ruby-build-system)
+   (arguments
+    '(;; No included tests
+      #:tests? #f))
+   (propagated-inputs
+    `(("ruby-activesupport" ,ruby-activesupport)))
+   (synopsis "Generate URIs idenfitying model instances in Ruby")
+   (description
+    "@code{GlobalID} provides a way to generate URIs from a model in Ruby that
+uniquely identify it.")
+   (home-page "https://rubyonrails.org/";)
+   (license license:expat)))



reply via email to

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