[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: gnu: Add ruby-multipart-post.
From: |
David Thompson |
Subject: |
11/11: gnu: Add ruby-multipart-post. |
Date: |
Tue, 16 Jun 2015 00:30:26 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit e778a54950e8ba7c16e638289cae97e1e1975ea4
Author: David Thompson <address@hidden>
Date: Sat Jun 13 08:06:12 2015 -0400
gnu: Add ruby-multipart-post.
* gnu/packages/ruby.scm (ruby-multipart-post): New variable.
---
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 45175df..ff30c49 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -642,3 +642,25 @@ and manipulate Git repositories by wrapping system calls
to the git binary.")
options and parsing command line flags.")
(home-page "https://github.com/leejarvis/slop")
(license license:expat)))
+
+(define-public ruby-multipart-post
+ (package
+ (name "ruby-multipart-post")
+ (version "2.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/nicksieger/multipart-post/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "03n271i3knfx4j9aingxzz2bajd379dw9nswsllviqc177lq1anm"))))
+ (build-system ruby-build-system)
+ (native-inputs
+ `(("bundler" ,bundler)))
+ (synopsis "Multipart POST library for Ruby")
+ (description "Multipart-Post Adds multipart POST capability to Ruby's
+net/http library.")
+ (home-page "https://github.com/nicksieger/multipart-post")
+ (license license:expat)))
- 01/11: gnu: Add ruby-bacon., (continued)
- 01/11: gnu: Add ruby-bacon., David Thompson, 2015/06/15
- 02/11: gnu: Add ruby-arel., David Thompson, 2015/06/15
- 03/11: gnu: Add ruby-connection-pool., David Thompson, 2015/06/15
- 04/11: gnu: Add ruby-net-http-persistent., David Thompson, 2015/06/15
- 05/11: gnu: Add ruby-daemons., David Thompson, 2015/06/15
- 06/11: gnu: Add ruby-minitest., David Thompson, 2015/06/15
- 07/11: gnu: Add ruby-minitest-sprint., David Thompson, 2015/06/15
- 08/11: gnu: Add ruby-minitest-bacon., David Thompson, 2015/06/15
- 10/11: gnu: Add ruby-slop., David Thompson, 2015/06/15
- 09/11: gnu: Add ruby-git., David Thompson, 2015/06/15
- 11/11: gnu: Add ruby-multipart-post.,
David Thompson <=