summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-01-31 09:20:12 +0100
committerAndreas Enge <andreas@enge.fr>2025-06-20 20:39:56 +0200
commite3a236ba11ac59ffefaa31765e00c700cc9e967c (patch)
tree5aa64d9b1cd00cda44db2ef4d6718abea4f6b24e /gnu/packages
parent33cdd6c142d3f53f99629e208fcc09cc2c77b64d (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/ruby.scm35
1 files changed, 0 insertions, 35 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index e26320df294..96f5bf4f5d5 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6127,41 +6127,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")