diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:49:58 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:46:23 +0000 |
commit | 1f8664eb0539c62a77ac61bfec4aa34640937242 (patch) | |
tree | 839fe2d30df6e6a044086673656ba6860c5b3adf | |
parent | 98d31c0b66d10953ae24530da3efbf08586919d7 (diff) | |
download | gnu-guix-1f8664eb0539c62a77ac61bfec4aa34640937242.tar gnu-guix-1f8664eb0539c62a77ac61bfec4aa34640937242.tar.gz |
gnu: Add ruby-faraday.
-rw-r--r-- | gnu/packages/ruby.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cccfa8403c..e515d749f9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7666,3 +7666,25 @@ than closing tags. It was originally envisioned as a plugin for Ruby on Rails, but it can function as a stand-alone templating engine.") (home-page "http://haml.info/") (license license:expat))) + +(define-public ruby-faraday + (package + (name "ruby-faraday") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "faraday" version)) + (sha256 + (base32 + "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("ruby-multipart-post" ,ruby-multipart-post))) + (synopsis "HTTP/REST API client library.") + (description "HTTP/REST API client library.") + (home-page + "https://github.com/lostisland/faraday") + (license license:expat))) |