guix_mirror_bot pushed a commit to branch master in repository guix. commit 674a4d74edec09e755a138c772b971a2467e9251 Author: Nicolas Graves <ngra...@ngraves.fr> 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 <sharlata...@gmail.com> --- 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 21a38b23d5..da50d531e4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -808,18 +808,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.")