sharlatan pushed a commit to branch ruby-team
in repository guix.
commit e27bba305044c3af78f099ee327cab3c0f57b6e3
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Jan 31 09:19:40 2025 +0100
gnu: ruby-rspec-expectations: Update to 3.13.3.
* gnu/packages/ruby.scm (ruby-rspec-expectations): Update to 3.13.3.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/ruby.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index e21f4faa50..9cb66d186e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -788,18 +788,18 @@ standard diff-like tool.")
(define-public ruby-rspec-expectations
(package
(name "ruby-rspec-expectations")
- (version "3.12.2")
+ (version "3.13.3")
(source (origin
(method url-fetch)
(uri (rubygems-uri "rspec-expectations" version))
(sha256
(base32
- "03ba3lfdsj9zl00v1yvwgcx87lbadf87livlfa5kgqssn9qdnll6"))))
+ "0n3cyrhsa75x5wwvskrrqk56jbjgdi2q1zx0irllf0chkgsmlsqf"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f)) ; avoid dependency cycles
(propagated-inputs
- (list ruby-rspec-support ruby-diff-lcs))
+ (list ruby-diff-lcs ruby-rspec-support))
(synopsis "RSpec expectations library")
(description "Rspec-expectations provides a simple API to express expected
outcomes of a code example.")