mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
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.
This commit is contained in:
parent
dff5392f85
commit
cfef316f25
1 changed files with 14 additions and 11 deletions
|
@ -6434,24 +6434,27 @@ (define-public ruby-cucumber-messages
|
|||
(define-public ruby-gherkin
|
||||
(package
|
||||
(name "ruby-gherkin")
|
||||
(version "5.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "gherkin" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1cgcdchwwdm10rsk44frjwqd4ihprhxjbm799nscqy2q1raqfj5s"))))
|
||||
(version "14.0.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/cucumber/gherkin-ruby")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dwa8632nc6kijv8p257jl64rsjmc0fimlaqvxlkdi2h9n1nympb"))))
|
||||
(build-system ruby-build-system)
|
||||
(native-inputs
|
||||
`(("bundler" ,bundler)))
|
||||
`(("ruby-cucumber-messages" ,ruby-cucumber-messages)
|
||||
("ruby-rspec" ,ruby-rspec)))
|
||||
(arguments
|
||||
'(#:tests? #f)) ; needs simplecov, among others
|
||||
`(#:test-target "spec"))
|
||||
(synopsis "Gherkin parser for Ruby")
|
||||
(description "Gherkin is a parser and compiler for the Gherkin language.
|
||||
It is intended be used by all Cucumber implementations to parse
|
||||
@file{.feature} files.")
|
||||
(home-page "https://github.com/cucumber-attic/gherkin")
|
||||
(home-page "https://github.com/cucumber/gherkin-ruby")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-gherkin-ruby
|
||||
|
|
Loading…
Reference in a new issue