[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/229: gnu: ruby-standard: Update to 1.25.3
From: |
guix-commits |
Subject: |
05/229: gnu: ruby-standard: Update to 1.25.3 |
Date: |
Tue, 28 Mar 2023 22:28:43 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit b7325d9e3a1b598d15ddadc0ba6803b701133534
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Mar 1 17:06:02 2023 -0500
gnu: ruby-standard: Update to 1.25.3
* gnu/packages/ruby.scm (ruby-standard): Update to 1.25.3.
[arguments]: Delete trailing #t. Update comment.
---
gnu/packages/ruby.scm | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 4ed760cfd6..754165be6e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -1730,7 +1730,7 @@ Batch and flush behavior.
(define-public ruby-standard
(package
(name "ruby-standard")
- (version "0.4.7")
+ (version "1.25.3")
(source
(origin
(method git-fetch) ;no test suite in distributed gem
@@ -1740,22 +1740,20 @@ Batch and flush behavior.
(file-name (git-file-name name version))
(sha256
(base32
- "0ylx0lm2pbbgr5h7fban592w96bl3wxmvfcpcdfrhkxnpg5kiwgv"))))
+ "0q42gv7wgrc818a5hm599sy07vjq69hbijzpkpgh6jws6x7wzyh3"))))
(build-system ruby-build-system)
(arguments
- ;; TODO: the tests are currently broken due to using a newer Rubocop.
+ ;; TODO: the tests are currently broken due to using a different Rubocop
+ ;; version.
`(#:tests? #f
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'relax-version-requiremens
(lambda _
(delete-file "Gemfile")
- (delete-file "Gemfile.lock")
- #t)))))
- (native-inputs
- (list ruby-gimme ruby-pry ruby-simplecov))
- (propagated-inputs
- (list ruby-rubocop ruby-rubocop-performance))
+ (delete-file "Gemfile.lock"))))))
+ (native-inputs (list ruby-gimme ruby-pry ruby-simplecov))
+ (propagated-inputs (list ruby-rubocop ruby-rubocop-performance))
(synopsis "Ruby Style Guide, with linter & automatic code fixer")
(description "Standard is a port of StandardJS. Like StandardJS, it aims
to save time in the following ways:
- branch master updated (c4cca9cb5d -> d00f107507), guix-commits, 2023/03/28
- 05/229: gnu: ruby-standard: Update to 1.25.3,
guix-commits <=
- 06/229: gnu: ruby-oedipus-lex: Update to 2.6.0., guix-commits, 2023/03/28
- 02/229: gnu: Add ruby-clamp., guix-commits, 2023/03/28
- 01/229: gnu: Add ruby-cabin., guix-commits, 2023/03/28
- 03/229: gnu: Add ruby-stud., guix-commits, 2023/03/28
- 04/229: gnu: Add ruby-insist., guix-commits, 2023/03/28
- 07/229: gnu: ruby-oedipus-lex: Fix indentation., guix-commits, 2023/03/28
- 11/229: gnu: ruby-unicode-display-width: Update to 2.4.2., guix-commits, 2023/03/28
- 12/229: gnu: Add ruby-rubocop-capybara-minimal., guix-commits, 2023/03/28
- 08/229: gnu: ruby-parser: Update to 3.2.1.1., guix-commits, 2023/03/28
- 09/229: gnu: ruby-rubocop-ast: Update to 1.28.0., guix-commits, 2023/03/28