sharlatan pushed a commit to branch ruby-team
in repository guix.
commit 949f226d1e4af6825cd3c7dd6c70267ca32175e8
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Jan 31 09:20:12 2025 +0100
gnu: Remove ruby-minitest-pretty-diff.
* gnu/packages/ruby.scm (ruby-minitest-pretty-diff): Delete variable.
This is a leaf package in Guix, unmaintained for 11 years.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/ruby.scm | 35 -----------------------------------
1 file changed, 35 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 73861c6728..7d4242eb55 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6107,41 +6107,6 @@ slowest tests in a minitest suite.")
(home-page "https://github.com/nmeans/minitest-profile")
(license license:expat)))
-(define-public ruby-minitest-pretty-diff
- ;; Use git reference because gem is out of date and does not contain testing
- ;; script. There are no releases on GitHub.
- (let ((commit "11f32e930f574225432f42e5e1ef6e7471efe572"))
- (package
- (name "ruby-minitest-pretty-diff")
- (version (string-append "0.1-1." (string-take commit 8)))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/adammck/minitest-pretty_diff")
- (commit commit)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "13y5dhmcckhzd83gj1nfwh41iykbjcm2w7y4pr6j6rpqa5as122r"))))
- (build-system ruby-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "sh" "script/test")))))))
- (native-inputs
- (list bundler ruby-turn))
- (synopsis "Pretty-print hashes and arrays in MiniTest")
- (description
- "@code{minitest-pretty_diff} monkey-patches
-@code{MiniTest::Assertions#mu_pp} to pretty-print hashes and arrays before
-diffing them. This makes it easier to spot differences between nested
-structures when tests fail.")
- (home-page "https://github.com/adammck/minitest-pretty_diff")
- (license license:expat))))
-
(define-public ruby-minitest-proveit
(package
(name "ruby-minitest-proveit")