diff options
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 17ed253218..939caa2fac 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8719,3 +8719,24 @@ but it can function as a stand-alone templating engine.") (home-page "https://github.com/brandonhilkert/sucker_punch") (license license:expat))) + +(define-public ruby-que +(package + (name "ruby-que") + (version "1.0.0.beta3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "que" version)) + (sha256 + (base32 + "0gr9pb814d4qj3ds98g6cjrdk7wv0yg8aqbm7c1lmgl87jkg8q04")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (synopsis + "A job queue that uses PostgreSQL's advisory locks for speed and reliability.") + (description + "This package provides a job queue that uses PostgreSQL's advisory locks for speed and reliability.") + (home-page "https://github.com/chanks/que") + (license license:expat))) |