mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: Add ruby-queue-classic.
* gnu/packages/ruby.scm (ruby-queue-classic): New variable.
This commit is contained in:
parent
e7900d3980
commit
64132f16dc
1 changed files with 22 additions and 0 deletions
|
@ -9853,6 +9853,28 @@ (define-public ruby-que
|
|||
(home-page "https://github.com/chanks/que")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-queue-classic
|
||||
(package
|
||||
(name "ruby-queue-classic")
|
||||
(version "4.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "queue_classic" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0npyhajf2fc80apkw9s2kj0n254w5lcl4xpjidg5d5w1fb19abh6"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments (list #:tests? #f)) ;tests require a postgresql server
|
||||
(native-inputs (list ruby-activerecord ruby-minitest-reporters))
|
||||
(propagated-inputs (list ruby-pg))
|
||||
(synopsis "Queuing library for Ruby")
|
||||
(description "@code{queue_classic} is a queuing library for Ruby
|
||||
applications (Rails, Sinatra, etc.) @code{queue_classic} features
|
||||
asynchronous job polling, database maintained locks and has a single
|
||||
dependency, @code{pg}.")
|
||||
(home-page "https://github.com/QueueClassic/queue_classic")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-ae
|
||||
(package
|
||||
(name "ruby-ae")
|
||||
|
|
Loading…
Reference in a new issue