diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-17 17:13:59 +0000 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2019-02-24 16:28:09 +0000 |
commit | 0752b92420b7a4f9afcbc53e7008daf396dc9690 (patch) | |
tree | 3598682e28960b200114b6473c306ce983a85f37 /gnu | |
parent | b4a40252856336ac7e6fe8bfea3d74b10759dcfd (diff) | |
download | gnu-guix-0752b92420b7a4f9afcbc53e7008daf396dc9690.tar gnu-guix-0752b92420b7a4f9afcbc53e7008daf396dc9690.tar.gz |
gnu: Add ruby-with-advisory-lock.
* gnu/packages/rails.scm (ruby-with-advisory-lock): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rails.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm index 2d7ccceff7..739f97090d 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 + '(;; TODO Tests require a running MySQL service + #:tests? #f)) + (propagated-inputs + `(("ruby-activerecord" ,ruby-activerecord))) + (native-inputs + `(("bundler" ,bundler) + ("ruby-yard" ,ruby-yard) + ("ruby-mysql2" ,ruby-mysql2))) + (synopsis "Advisory locking for ActiveRecord") + (description + "Adds advisory locking to ActiveRecord for PostgreSQL and MySQL. SQLite +is also supported, but this uses the filesystem for locks.") + (home-page "http://closuretree.github.io/with_advisory_lock/") + (license license:expat))) + (define-public ruby-rails (package (name "ruby-rails") |