guix-commits
[Top][All Lists]
Advanced

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

01/28: gnu: Add ruby-test-unit-ruby-core.


From: guix-commits
Subject: 01/28: gnu: Add ruby-test-unit-ruby-core.
Date: Sat, 24 Feb 2024 10:51:08 -0500 (EST)

htgoebel pushed a commit to branch master
in repository guix.

commit c1c159176b748c073f59171a8fa16bfa39ce1b30
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Tue Feb 6 16:22:07 2024 +0100

    gnu: Add ruby-test-unit-ruby-core.
    
    * gnu/packages/ruby.scm (ruby-test-unit-ruby-core): New variable.
---
 gnu/packages/ruby.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 59dc27e24f..34ebeebe7e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -35,6 +35,7 @@
 ;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
 ;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2023, 2024 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4801,6 +4802,25 @@ It allows writing tests, checking results and automated 
testing in Ruby.")
        (list #:tests? #f)))
      (native-inputs '()))))
 
+(define-public ruby-test-unit-ruby-core
+  (package
+    (name "ruby-test-unit-ruby-core")
+    (version "1.0.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "test-unit-ruby-core" version))
+       (sha256
+        (base32 "1i7fa4hlj6xiqvjaikagwrmiyc21jzyswvd4grjbfqysziwsxygc"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list #:tests? #f))  ; contains no tests
+    (synopsis "Additional test assertions for Ruby standard libraries")
+    (description "This package provides additional test assertions for Ruby
+standard libraries.")
+    (home-page "https://github.com/ruby/test-unit-ruby-core";)
+    (license license:ruby)))
+
 (define-public ruby-mapping
   (package
     (name "ruby-mapping")



reply via email to

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