guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add ruby-minitest-global-expectations.


From: guix-commits
Subject: branch master updated: gnu: Add ruby-minitest-global-expectations.
Date: Tue, 20 Oct 2020 18:47:18 -0400

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ff9d33a  gnu: Add ruby-minitest-global-expectations.
ff9d33a is described below

commit ff9d33a9038a1375235485093b2557a4c2949e34
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Jun 24 21:11:54 2020 +0100

    gnu: Add ruby-minitest-global-expectations.
    
    * gnu/packages/ruby.scm (ruby-minitest-global-expectations): 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 7348f29..5f82e0f 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4519,6 +4519,29 @@ reporter.")
     (home-page "https://blowmage.com/minitest-rg/";)
     (license license:expat)))
 
+(define-public ruby-minitest-global-expectations
+  (package
+    (name "ruby-minitest-global-expectations")
+    (version "1.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "minitest-global_expectations"
+                          version))
+       (sha256
+        (base32
+         "1pp3k2608spj4kvqy2y16hs18an917g6vwgvphrfhjviac83090x"))))
+    (build-system ruby-build-system)
+    (propagated-inputs
+     `(("ruby-minitest" ,ruby-minitest)))
+    (synopsis "Adjust minitest behaviour for calling expectation methods")
+    (description
+     "Minitest-global_expectations allows continued use of expectation methods
+on all objects.  Calling expectation methods on all objects was deprecated in
+minitest 5.12, and is planned to be removed from minitest 6.")
+    (home-page "https://github.com/jeremyevans/minitest-global_expectations";)
+    (license license:expat)))
+
 (define-public ruby-minitest-hooks
   (package
     (name "ruby-minitest-hooks")



reply via email to

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