diff options
author | Christopher Baines <mail@cbaines.net> | 2018-08-01 07:36:41 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:01:11 +0000 |
commit | 310df19f2d224f76c03a4e73a08ccf12647d2e77 (patch) | |
tree | ae6d218dc0d8d7c25e166cc4028ef336c8847b21 | |
parent | 340e30fcd416972b8d32fbe61f4600b8c7915ad0 (diff) | |
download | gnu-guix-310df19f2d224f76c03a4e73a08ccf12647d2e77.tar gnu-guix-310df19f2d224f76c03a4e73a08ccf12647d2e77.tar.gz |
gnu: Add ruby-httparty.
* gnu/packages/ruby.scm (ruby-httparty): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index eaa674e070..675778b315 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1619,6 +1619,32 @@ standard output stream.") "https://github.com/liufengyun/hashdiff") (license license:expat))) +(define-public ruby-httparty + (package + (name "ruby-httparty") + (version "0.16.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "httparty" version)) + (sha256 + (base32 + "1zsc40nrg5fbaabbjcklnrgwgg6qdqycvg5sq8iahp1v8jxfarzw")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "spec")) + (propagated-inputs + `(("ruby-multi-xml" ,ruby-multi-xml))) + (native-inputs + `(("ruby-cucumber" ,ruby-cucumber))) + (synopsis + "Makes http fun! Also, makes consuming restful web services dead easy.") + (description + "Makes http fun! Also, makes consuming restful web services dead easy.") + (home-page + "http://jnunemaker.github.com/httparty") + (license license:expat))) + (define-public ruby-shindo (package (name "ruby-shindo") |