summaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-02-16 01:34:35 +0100
committerAndreas Enge <andreas@enge.fr>2025-06-20 20:40:01 +0200
commit17bdacd56bf611d03890ce676f8792b9275e8826 (patch)
tree2b2c26dc89e4792f1ddf25f05c26aceb8761f8a5 /gnu/packages/ruby.scm
parent100dfcf51409d3a539c1a0478523bde961bc8e47 (diff)
gnu: ruby-yaml-lint: Update to 0.1.2-0.d6a253f.
* gnu/packages/ruby.scm (ruby-yaml-lint): Update to 0.1.2-0.d6a253f. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r--gnu/packages/ruby.scm56
1 files changed, 29 insertions, 27 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2cef9d7a1ac..1304519fe38 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -14514,35 +14514,37 @@ YAML.load suitable for accepting user input in Ruby applications.")
14514 (license license:expat))) 14514 (license license:expat)))
14515 14515
14516(define-public ruby-yaml-lint 14516(define-public ruby-yaml-lint
14517 (package 14517 ;; No tags for releases.
14518 (name "ruby-yaml-lint") 14518 (let ((commit "d6a253f7d33234a9c24660d582cf7014e882c0c2")
14519 (version "0.0.10") 14519 (revision "0"))
14520 (source 14520 (package
14521 (origin 14521 (name "ruby-yaml-lint")
14522 (method git-fetch) 14522 (version (git-version "0.1.2" revision commit))
14523 (uri (git-reference 14523 (source
14524 (origin
14525 (method git-fetch)
14526 (uri (git-reference
14524 (url "https://github.com/Pryz/yaml-lint") 14527 (url "https://github.com/Pryz/yaml-lint")
14525 (commit version))) 14528 (commit commit)))
14526 (file-name (git-file-name name version)) 14529 (file-name (git-file-name name version))
14527 (sha256 14530 (sha256
14528 (base32 14531 (base32 "0zk0jwzmcaaiyixjvkzdb54xhiqcnjkma72nkv0vm5csaphfdjkx"))))
14529 "1jz26mxjkdyjbgqp7f9isnzd1i6vkizsswyj1v639nmq31hwfh0d")))) 14532 (build-system ruby-build-system)
14530 (build-system ruby-build-system) 14533 (arguments
14531 (arguments 14534 `(#:phases
14532 `(#:phases 14535 (modify-phases %standard-phases
14533 (modify-phases %standard-phases 14536 (replace 'check
14534 (replace 'check 14537 (lambda* (#:key tests? #:allow-other-keys)
14535 (lambda* (#:key tests? #:allow-other-keys) 14538 (when tests?
14536 (when tests? 14539 (invoke "rspec")))))))
14537 (invoke "rspec"))))))) 14540 (native-inputs
14538 (native-inputs 14541 (list ruby-coveralls ruby-rspec ruby-simplecov))
14539 (list ruby-coveralls ruby-rspec ruby-simplecov)) 14542 (synopsis "Simple YAML check tool")
14540 (synopsis "Simple YAML check tool") 14543 (description
14541 (description 14544 "@code{yaml-lint} will simply try to load the YAML file with the built-in
14542 "@code{yaml-lint} will simply try to load the YAML file with the built-in
14543Ruby yaml library.") 14545Ruby yaml library.")
14544 (home-page "https://github.com/Pryz/yaml-lint") 14546 (home-page "https://github.com/Pryz/yaml-lint")
14545 (license license:expat))) 14547 (license license:expat))))
14546 14548
14547(define-public ruby-matrix 14549(define-public ruby-matrix
14548 (package 14550 (package