diff options
author | Christopher Baines <mail@cbaines.net> | 2018-08-01 07:42:06 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-08-05 17:15:44 +0100 |
commit | 0afbfa83695b300c5594652bf4b2cd811a25cec1 (patch) | |
tree | 561c1a04b716e5eba2e063c0f72bc3da949de3b0 /gnu | |
parent | 1f2fffd6e7bc9bb2585d6a585917de9803b4b854 (diff) | |
download | guix-0afbfa83695b300c5594652bf4b2cd811a25cec1.tar guix-0afbfa83695b300c5594652bf4b2cd811a25cec1.tar.gz |
gnu: Add ruby-github-api.
* gnu/packages/ruby.scm (ruby-github-api): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 88cb5a3fcb..7937d6a1da 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2223,6 +2223,33 @@ use GNU gettext tools for maintenance.") (home-page "https://ruby-gettext.github.com/") (license (list license:lgpl3+ license:ruby)))) +(define-public ruby-github-api + (package + (name "ruby-github-api") + (version "0.18.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "github_api" version)) + (sha256 + (base32 + "04x8mlvinl17wfw6r71c9jbh7g78ziiwvsqv20ylyjzybr7x0w6s")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-addressable" ,ruby-addressable) + ("ruby-descendants-tracker" + ,ruby-descendants-tracker) + ("ruby-faraday" ,ruby-faraday) + ("ruby-hashie" ,ruby-hashie) + ("ruby-oauth2" ,ruby-oauth2))) + (synopsis + " Ruby client that supports all of the GitHub API methods. It's build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. ") + (description + " Ruby client that supports all of the GitHub API methods. It's build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. ") + (home-page + "http://piotrmurach.github.io/github/") + (license license:expat))) + (define-public ruby-packnga (package (name "ruby-packnga") |