Archived
1
0
Fork 0

gnu: Add ruby-interception.

* gnu/packages/ruby.scm (ruby-interception): New variable.

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
Stephen Paul Weber 2022-06-30 06:43:13 -04:00 committed by Raghav Gururajan
parent eb10b8841f
commit 7cd6ac428a
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -12827,3 +12827,21 @@ interface for the Sentry error logger.")
(description "WEBrick is an HTTP server toolkit that can be configured as an (description "WEBrick is an HTTP server toolkit that can be configured as an
HTTPS server, a proxy server, and a virtual-host server.") HTTPS server, a proxy server, and a virtual-host server.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public ruby-interception
(package
(name "ruby-interception")
(version "0.5")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "interception" version))
(sha256
(base32 "01vrkn28psdx1ysh5js3hn17nfp1nvvv46wc1pwqsakm6vb1hf55"))))
(build-system ruby-build-system)
(native-inputs (list ruby-rspec))
(home-page "https://github.com/ConradIrwin/interception")
(synopsis "Listen to raise in Ruby")
(description "Interception provides a cross-platform ability to intercept all
exceptions as they are raised.")
(license license:expat)))