diff options
author | Christopher Baines <mail@cbaines.net> | 2018-04-14 19:09:27 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-08-05 17:15:44 +0100 |
commit | b4549bd28356c3ee8d524c8aaf3244ba411042fd (patch) | |
tree | 51b3f0c6bbe143e13355907cb9f65597a3630f33 | |
parent | efeb47c83b3b7ce1f03fda581c1c8a8e5c132e6b (diff) | |
download | guix-b4549bd28356c3ee8d524c8aaf3244ba411042fd.tar guix-b4549bd28356c3ee8d524c8aaf3244ba411042fd.tar.gz |
gnu: Add ruby-raindrops.
-rw-r--r-- | gnu/packages/ruby.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index b3edf008bf..28852b5b52 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8546,3 +8546,32 @@ non-blocking I/O methods for Ruby without raising exceptions on EAGAIN and EINPROGRESS.") (home-page "https://bogomips.org/kgio/") (license #f))) + +(define-public ruby-raindrops + (package + (name "ruby-raindrops") + (version "0.19.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "raindrops" version)) + (sha256 + (base32 + "1qpbd9jif40c53fz2r0l8khfl016y8s8bkx37ibcaafclbl3xygp")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (synopsis + "raindrops is a real-time stats toolkit to show statistics for Rack HTTP +servers. It is designed for preforking servers such as unicorn, but +should support any Rack HTTP server on platforms supporting POSIX shared +memory. It may also be used as a generic scoreboard for sharing atomic +counters across multiple processes.") + (description + "raindrops is a real-time stats toolkit to show statistics for Rack HTTP +servers. It is designed for preforking servers such as unicorn, but +should support any Rack HTTP server on platforms supporting POSIX shared +memory. It may also be used as a generic scoreboard for sharing atomic +counters across multiple processes.") + (home-page "https://bogomips.org/raindrops/") + (license #f))) |