guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#50537] [PATCH v2 26/27] gnu: Add ruby-interception.


From: Stephen Paul Weber
Subject: [bug#50537] [PATCH v2 26/27] gnu: Add ruby-interception.
Date: Wed, 27 Apr 2022 13:46:32 -0500

* gnu/packages/ruby.scm (ruby-interception): New variable.
---
 gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5fe0d7bc07..6afc07875b 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12908,3 +12908,26 @@ Sentry error logger")
 HTTPS server, a proxy server, and a virtual-host server.")
     (home-page "https://github.com/ruby/webrick";)
     (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
+     `(("ruby-rspec" ,ruby-rspec)))
+    (synopsis
+      "Provides a cross-platform ability to intercept all exceptions")
+    (description
+      "This package provides a cross-platform ability to intercept all
+exceptions as they are raised.")
+    (home-page
+      "https://github.com/ConradIrwin/interception";)
+    (license license:expat)))
-- 
2.30.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]