[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: ruby-yard: Update to 0.9.20.
From: |
guix-commits |
Subject: |
05/12: gnu: ruby-yard: Update to 0.9.20. |
Date: |
Tue, 14 Jan 2020 18:47:39 -0500 (EST) |
cbaines pushed a commit to branch core-updates
in repository guix.
commit f321380fb3fa5921dcbe77df4329af8b242a2dcb
Author: Christopher Baines <address@hidden>
AuthorDate: Mon Jan 13 19:58:22 2020 +0000
gnu: ruby-yard: Update to 0.9.20.
* gnu/packages/ruby.scm (ruby-yard): Update to 0.9.20.
[arguments]: Delete the Gemfile before running the tests.
[native-inputs]: Add ruby-redcloth and ruby-asciidoctor.
---
gnu/packages/ruby.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 140d9f5..eec20b0 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -5783,7 +5783,7 @@ A modified copy of yajl is used, and included in the
package.")
(define-public ruby-yard
(package
(name "ruby-yard")
- (version "0.9.16")
+ (version "0.9.20")
(source
(origin
(method git-fetch)
@@ -5794,20 +5794,24 @@ A modified copy of yajl is used, and included in the
package.")
(file-name (git-file-name name version))
(sha256
(base32
- "0a4r1pfs0ms4vlccsf1x2jckx35lqm8b8lh6rdjxqfr5fia5izpf"))))
+ "1v48zz8hzazrg79jksj9siys21d2axvzijvkxw2j42zh86syi1wi"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
+ ;; Delete the Gemfile to avoid errors relating to it
+ (delete-file "Gemfile")
;; $HOME needs to be set to somewhere writeable for tests to run
(setenv "HOME" "/tmp")
;; Run tests without using 'rake' to avoid dependencies.
(invoke "rspec"))))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)
- ("ruby-rack" ,ruby-rack)))
+ ("ruby-rack" ,ruby-rack)
+ ("ruby-redcloth" ,ruby-redcloth)
+ ("ruby-asciidoc" ,ruby-asciidoctor)))
(synopsis "Documentation generation tool for Ruby")
(description
"YARD is a documentation generation tool for the Ruby programming
- branch core-updates updated (a76a343 -> 227fab3), guix-commits, 2020/01/14
- 02/12: gnu: ruby-aruba: Update to 0.14.14., guix-commits, 2020/01/14
- 05/12: gnu: ruby-yard: Update to 0.9.20.,
guix-commits <=
- 04/12: gnu: ruby-childprocess: Update to 3.0.0., guix-commits, 2020/01/14
- 07/12: gnu: ruby-power-assert: Update to 1.1.5., guix-commits, 2020/01/14
- 03/12: gnu: ruby-childprocess-0.6: Remove version 0.6.3., guix-commits, 2020/01/14
- 01/12: gnu: ruby-listen: Update to 3.2.0., guix-commits, 2020/01/14
- 06/12: gnu: ruby-hoe: Update to 3.21.0., guix-commits, 2020/01/14
- 08/12: gnu: ruby-json-pure: Update to 2.2.0., guix-commits, 2020/01/14
- 09/12: gnu: ruby-tzinfo: Skip safe tests., guix-commits, 2020/01/14
- 10/12: gnu: ruby-2.4: Update to 2.4.9., guix-commits, 2020/01/14
- 11/12: gnu: ruby: Update to 2.6.5., guix-commits, 2020/01/14
- 12/12: gnu: Add ruby-2.5., guix-commits, 2020/01/14