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
parent
dff5392f85
commit
cfef316f25
|
@ -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
|
||||||
|
|
Reference in New Issue