diff options
author | tota <tota@FreeBSD.org> | 2012-06-12 22:17:45 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2012-06-12 22:17:45 +0800 |
commit | 37b10a6f2d37faa6dda6b6c30d8e9ec9029082fd (patch) | |
tree | 0b25574c892486a9b78daac6f7ca1bb9a8e2721a /www/rubygem-cookiejar | |
parent | 747e06f4b6435ad837d3c8f53e0aacf764b2bccd (diff) | |
download | freebsd-ports-gnome-37b10a6f2d37faa6dda6b6c30d8e9ec9029082fd.tar.gz freebsd-ports-gnome-37b10a6f2d37faa6dda6b6c30d8e9ec9029082fd.tar.zst freebsd-ports-gnome-37b10a6f2d37faa6dda6b6c30d8e9ec9029082fd.zip |
- Add a new port: www/rubygem-cookiejar
The Ruby CookieJar is a library to help manage client-side cookies
in pure Ruby. It enables parsing and setting of cookie headers,
alternating between multiple 'jars' of cookies at one time (such
as having a set of cookies for each browser or thread), and supports
persistence of the cookies in a JSON string.
Both Netscape/RFC 2109 cookies and RFC 2965 cookies are supported.
WWW: https://github.com/dwaite/cookiejar
Diffstat (limited to 'www/rubygem-cookiejar')
-rw-r--r-- | www/rubygem-cookiejar/Makefile | 20 | ||||
-rw-r--r-- | www/rubygem-cookiejar/distinfo | 2 | ||||
-rw-r--r-- | www/rubygem-cookiejar/pkg-descr | 9 |
3 files changed, 31 insertions, 0 deletions
diff --git a/www/rubygem-cookiejar/Makefile b/www/rubygem-cookiejar/Makefile new file mode 100644 index 000000000000..bf1ef09fb23b --- /dev/null +++ b/www/rubygem-cookiejar/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: rubygem-cookiejar +# Date created: 2012-06-10 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= cookiejar +PORTVERSION= 0.3.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= tota@FreeBSD.org +COMMENT= Allows for parsing and returning cookies in Ruby HTTP client code + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/www/rubygem-cookiejar/distinfo b/www/rubygem-cookiejar/distinfo new file mode 100644 index 000000000000..07143795594e --- /dev/null +++ b/www/rubygem-cookiejar/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/cookiejar-0.3.0.gem) = f783b8eb981da58db1cb38f8a49781eefd1b84af2b8b7f3d7755cbe8c9460c3f +SIZE (rubygem/cookiejar-0.3.0.gem) = 16896 diff --git a/www/rubygem-cookiejar/pkg-descr b/www/rubygem-cookiejar/pkg-descr new file mode 100644 index 000000000000..d357d2916d9b --- /dev/null +++ b/www/rubygem-cookiejar/pkg-descr @@ -0,0 +1,9 @@ +The Ruby CookieJar is a library to help manage client-side cookies +in pure Ruby. It enables parsing and setting of cookie headers, +alternating between multiple 'jars' of cookies at one time (such +as having a set of cookies for each browser or thread), and supports +persistence of the cookies in a JSON string. + +Both Netscape/RFC 2109 cookies and RFC 2965 cookies are supported. + +WWW: https://github.com/dwaite/cookiejar |