me
/
guix
Archived
1
0
Fork 0

gnu: ruby-gherkin: Update to 14.0.1.

* gnu/packages/ruby.scm (ruby-gherkin): Update to 14.0.1.
[native-inputs]: Remove bundler.  Add ruby-cucumber-messages and ruby-rspec.
[phases]: Delete.
[home-page]: Update.
master
Maxim Cournoyer 2020-07-07 23:41:28 -04:00
parent dff5392f85
commit cfef316f25
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 14 additions and 11 deletions

View File

@ -6434,24 +6434,27 @@ Cucumber.")
(define-public ruby-gherkin (define-public ruby-gherkin
(package (package
(name "ruby-gherkin") (name "ruby-gherkin")
(version "5.1.0") (version "14.0.1")
(source (source (origin
(origin (method git-fetch)
(method url-fetch) (uri (git-reference
(uri (rubygems-uri "gherkin" version)) (url "https://github.com/cucumber/gherkin-ruby")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"1cgcdchwwdm10rsk44frjwqd4ihprhxjbm799nscqy2q1raqfj5s")))) (sha256
(base32
"1dwa8632nc6kijv8p257jl64rsjmc0fimlaqvxlkdi2h9n1nympb"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(native-inputs (native-inputs
`(("bundler" ,bundler))) `(("ruby-cucumber-messages" ,ruby-cucumber-messages)
("ruby-rspec" ,ruby-rspec)))
(arguments (arguments
'(#:tests? #f)) ; needs simplecov, among others `(#:test-target "spec"))
(synopsis "Gherkin parser for Ruby") (synopsis "Gherkin parser for Ruby")
(description "Gherkin is a parser and compiler for the Gherkin language. (description "Gherkin is a parser and compiler for the Gherkin language.
It is intended be used by all Cucumber implementations to parse It is intended be used by all Cucumber implementations to parse
@file{.feature} files.") @file{.feature} files.")
(home-page "https://github.com/cucumber-attic/gherkin") (home-page "https://github.com/cucumber/gherkin-ruby")
(license license:expat))) (license license:expat)))
(define-public ruby-gherkin-ruby (define-public ruby-gherkin-ruby