guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.

commit 83d2d5a8268a52b70b787a0683271c72a1be76f4
Author: Yan Abu Arab <[email protected]>
AuthorDate: Sat Dec 20 00:39:07 2025 +0200

    gnu: Add ruby-mister-bin.
    
    * gnu/packages/ruby-xyz (ruby-mister-bin): New variable.
    
    Change-Id: I19471c1435d2a64d1b4fa349273e5387fdaf9b16
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/ruby-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index c035af342f..4b36ba1b11 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -247,6 +247,29 @@ a menu system for providing multiple options to the user.")
     (home-page "https://github.com/JEG2/highline";)
     (license (list license:gpl2 license:ruby))))
 
+(define-public ruby-mister-bin
+  (package
+    (name "ruby-mister-bin")
+    (version "0.8.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "mister_bin" version))
+       (sha256
+        (base32 "1zz3vpy6xrgzln2dpxgcnrq1bpzz0syl60whqc9zf8j29mayw1fy"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list
+      ;; no tests in Gem
+      #:tests? #f))
+    (native-inputs (list ruby-rspec))
+    (propagated-inputs (list ruby-colsole ruby-docopt-ng))
+    (synopsis "Easily add a command line interface to Ruby Gems")
+    (description "Develop rich, scalable and testable command line interfaces
+for Ruby Gems or other Ruby applications.")
+    (home-page "https://github.com/dannyben/mister_bin";)
+    (license license:expat)))
+
 (define-public ruby-rsync
   (package
     (name "ruby-rsync")

Reply via email to