me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-bake-test-external.

* gnu/packages/ruby.scm (ruby-bake-test-external): New variable.
master
Maxim Cournoyer 2023-03-08 21:20:29 -05:00
parent 53cbf59923
commit f059d35323
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 22 additions and 0 deletions

View File

@ -3814,6 +3814,28 @@ well as @samp{rake}.")
(home-page "https://github.com/ioquatix/bake-test")
(license license:expat)))
(define-public ruby-bake-test-external
(package
(name "ruby-bake-test-external")
(version "0.3.2")
(source (origin
(method url-fetch)
(uri (rubygems-uri "bake-test-external" version))
(sha256
(base32
"0749xc7jkz1c5gsq1giwhrqy6s6xqm48bdvs414372881wki2jmh"))))
(build-system ruby-build-system)
;; The test suite relies on git and network access to clone external
;; repositories.
(arguments (list #:tests? #f))
(propagated-inputs (list ruby-bake))
(synopsis "Continuous integration extension for Bake")
(description "Bake Test External adds a @samp{test:external} action to the
@command{bake} command to run the test suites of dependent projects to check
for breakage.")
(home-page "https://github.com/ioquatix/bake-test-external")
(license license:expat)))
(define-public ruby-connection-pool
(package
(name "ruby-connection-pool")