gnu: ruby-cucumber-expressions: Update to 16.1.2.

* gnu/packages/ruby.scm (ruby-cucumber-expressions): Update to 16.1.2.
[source]: Update URL.
[arguments]: Add a #:phases argument.
[home-page]: Update URL.
This commit is contained in:
Maxim Cournoyer 2023-03-07 16:49:02 -05:00
parent 519878b51d
commit b3a5f534d5
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -8421,27 +8421,30 @@ (define-public ruby-cucumber-core
(define-public ruby-cucumber-expressions (define-public ruby-cucumber-expressions
(package (package
(name "ruby-cucumber-expressions") (name "ruby-cucumber-expressions")
(version "10.2.0") (version "16.1.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/cucumber/cucumber-expressions-ruby") (url "https://github.com/cucumber/cucumber-expressions")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1aivhcpjrmbvp9bg0y7g6zxh2swfvylvg0sapq5jc4i1y74k8npd")))) "1dhq88k9x2x8svam5bc7rrcd166fqymda8wxryqkbkffhnzla0id"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(arguments (arguments
'(#:test-target "spec")) (list #:test-target "spec"
(native-inputs #:phases #~(modify-phases %standard-phases
(list ruby-rspec ruby-simplecov)) (add-after 'unpack 'chdir
(lambda _
(chdir "ruby"))))))
(native-inputs (list ruby-rspec ruby-simplecov))
(synopsis "Simpler alternative to Regular Expressions") (synopsis "Simpler alternative to Regular Expressions")
(description "Cucumber Expressions offer similar functionality to Regular (description "Cucumber Expressions offer similar functionality to Regular
Expressions, with a syntax that is easier to read and write. Cucumber Expressions, with a syntax that is easier to read and write. Cucumber
Expressions are extensible with parameter types.") Expressions are extensible with parameter types.")
(home-page "https://github.com/cucumber/cucumber-expressions-ruby") (home-page "https://github.com/cucumber/cucumber-expressions/")
(license license:expat))) (license license:expat)))
(define-public ruby-cucumber-wire (define-public ruby-cucumber-wire