guix-commits
[Top][All Lists]
Advanced

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

13/23: gnu: Add ruby-with-advisory-lock.


From: guix-commits
Subject: 13/23: gnu: Add ruby-with-advisory-lock.
Date: Mon, 4 Mar 2019 15:33:35 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit ad6471d41574a145474bdf5b197c63417192157c
Author: Christopher Baines <address@hidden>
Date:   Sun Feb 17 17:13:59 2019 +0000

    gnu: Add ruby-with-advisory-lock.
    
    * gnu/packages/rails.scm (ruby-with-advisory-lock): New variable.
---
 gnu/packages/rails.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm
index 2d7ccce..754539f 100644
--- a/gnu/packages/rails.scm
+++ b/gnu/packages/rails.scm
@@ -413,6 +413,34 @@ application bootup, plugins, generators, and Rake tasks.")
     "https://github.com/rails/sprockets-rails";)
    (license license:expat)))
 
+(define-public ruby-with-advisory-lock
+  (package
+    (name "ruby-with-advisory-lock")
+    (version "4.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "with_advisory_lock" version))
+       (sha256
+        (base32
+         "1k37hxgmaqgsd54gplm5xim9nw3ghvqsbzaw7q4q64ha1nbd9a41"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; TODO Tests require a running MySQL service
+    (propagated-inputs
+     `(("ruby-activerecord" ,ruby-activerecord)))
+    (native-inputs
+     `(("bundler" ,bundler)
+       ("ruby-yard" ,ruby-yard)
+       ("ruby-mysql2" ,ruby-mysql2)))
+    (synopsis "Advisory locking for ActiveRecord")
+    (description
+     "The With advisory lock gem adds advisory locking to ActiveRecord for
+PostgreSQL and MySQL.  SQLite is also supported, but this uses the filesystem
+for locks.")
+    (home-page "https://closuretree.github.io/with_advisory_lock/";)
+    (license license:expat)))
+
 (define-public ruby-rails
   (package
    (name "ruby-rails")



reply via email to

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