guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.
commit ff86223cfab2df5aee0e3d49826bc27dc5ce13f2
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jun 18 16:27:08 2025 +0200
gnu: ruby-insist: Improve style.
* gnu/packages/ruby-xyz.scm (ruby-insist): Run guix style.
---
gnu/packages/ruby-xyz.scm | 28 ++++++++++++++++------------
1 file changed, 16 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 88d81c4228..ee00bd6e72 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -4993,20 +4993,24 @@ encoded form.")
(package
(name "ruby-insist")
(version "1.0.0")
- (source (origin
- (method url-fetch)
- (uri (rubygems-uri "insist" version))
- (sha256
- (base32
- "0bw3bdwns14mapbgb8cbjmr0amvwz8y72gyclq04xp43wpp5jrvg"))))
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "insist" version))
+ (sha256
+ (base32 "0bw3bdwns14mapbgb8cbjmr0amvwz8y72gyclq04xp43wpp5jrvg"))))
(build-system ruby-build-system)
- (arguments (list #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "ruby" "test/testing.rb")))))))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "ruby" "test/testing.rb")))))))
(synopsis "Testing tool for Ruby")
- (description "This package provides a simple block-driven assertion
+ (description
+ "This package provides a simple block-driven assertion
library for both testing and for production code that attempts to make test
definitions more readable.")
(home-page "https://github.com/jordansissel/ruby-insist/")