mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add ruby-octokit.
* gnu/packages/ruby.scm (ruby-octokit): New variable.
This commit is contained in:
parent
03a0f98a8d
commit
aa3c76b100
1 changed files with 22 additions and 0 deletions
|
@ -6139,6 +6139,28 @@ (define-public ruby-sawyer
|
||||||
(home-page "https://github.com/lostisland/sawyer")
|
(home-page "https://github.com/lostisland/sawyer")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-octokit
|
||||||
|
(package
|
||||||
|
(name "ruby-octokit")
|
||||||
|
(version "4.18.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "octokit" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0zvfr9njmj5svi39fcsi2b0g7pcxb0vamw9dlyas8bg814jlzhi6"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments '(#:tests? #f)) ;no test suite in the gem release
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-faraday" ,ruby-faraday)
|
||||||
|
("ruby-sawyer" ,ruby-sawyer)))
|
||||||
|
(synopsis "Ruby toolkit for the GitHub API")
|
||||||
|
(description "Octokit wraps the GitHub API in a flat API client that
|
||||||
|
follows Ruby conventions and requires little knowledge of REST.")
|
||||||
|
(home-page "https://github.com/octokit/octokit.rb")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-gherkin
|
(define-public ruby-gherkin
|
||||||
(package
|
(package
|
||||||
(name "ruby-gherkin")
|
(name "ruby-gherkin")
|
||||||
|
|
Loading…
Reference in a new issue