mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 17:23:38 -05:00
gnu: ruby-octokit: Enable tests.
* gnu/packages/ruby.scm (ruby-octokit) [source]: Fetch from git. [arguments]: Delete field. [native-inputs]: New field.
This commit is contained in:
parent
b6942012e2
commit
73d8e27822
1 changed files with 22 additions and 10 deletions
|
@ -7941,17 +7941,29 @@ (define-public ruby-octokit
|
||||||
(package
|
(package
|
||||||
(name "ruby-octokit")
|
(name "ruby-octokit")
|
||||||
(version "6.1.0")
|
(version "6.1.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method url-fetch)
|
(uri (git-reference
|
||||||
(uri (rubygems-uri "octokit" version))
|
(url "https://github.com/octokit/octokit.rb")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"03i37mdhwlm5y6piqaby0izrhda9m5ggbrmm62ww3ln2l86h78l2"))))
|
(sha256
|
||||||
|
(base32
|
||||||
|
"01njrd17bz28mlsa8hi9gad7s6d1d0vpyn0g66p3d42zgplr9qkq"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments '(#:tests? #f)) ;no test suite in the gem release
|
(native-inputs
|
||||||
(propagated-inputs
|
(list ruby-faraday-multipart
|
||||||
(list ruby-faraday ruby-sawyer))
|
ruby-jwt
|
||||||
|
ruby-mime-types
|
||||||
|
ruby-multi-json
|
||||||
|
ruby-netrc
|
||||||
|
ruby-pry-byebug
|
||||||
|
ruby-rbnacl
|
||||||
|
ruby-rspec
|
||||||
|
ruby-simplecov
|
||||||
|
ruby-webmock
|
||||||
|
ruby-vcr-expat))
|
||||||
|
(propagated-inputs (list ruby-faraday ruby-sawyer))
|
||||||
(synopsis "Ruby toolkit for the GitHub API")
|
(synopsis "Ruby toolkit for the GitHub API")
|
||||||
(description "Octokit wraps the GitHub API in a flat API client that
|
(description "Octokit wraps the GitHub API in a flat API client that
|
||||||
follows Ruby conventions and requires little knowledge of REST.")
|
follows Ruby conventions and requires little knowledge of REST.")
|
||||||
|
|
Loading…
Reference in a new issue