mirror of
https://git.freebsd.org/ports.git
synced 2025-07-11 22:39:16 -04:00
Async (EventMachine) HTTP client, with support for: o Asynchronous HTTP API for single & parallel request execution o Keep-Alive and HTTP pipelining support o Auto-follow 3xx redirects with max depth o Automatic gzip & deflate decoding o Streaming response processing o Streaming file uploads o HTTP proxy and SOCKS5 support o Basic Auth & OAuth o Connection-level & Global middleware support o HTTP parser via http_parser.rb o Works wherever EventMachine runs: Rubinius, JRuby, MRI WWW: https://github.com/brianmario/escape_utils Differential Revision: https://reviews.freebsd.org/D860 Approved by: swills (mentor)
27 lines
778 B
Makefile
27 lines
778 B
Makefile
# Created by: Scott Sanders <scott@jssjr.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= escape_utils
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= textproc rubygems
|
|
MASTER_SITES= RG
|
|
PKGNAMESUFFIX= -rails4
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Faster string escaping routines for your web apps
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= rubygem-actionpack4>=0:${PORTSDIR}/www/rubygem-actionpack4 \
|
|
rubygem-fast_xs>=0:${PORTSDIR}/textproc/rubygem-fast_xs \
|
|
rubygem-haml>=0:${PORTSDIR}/www/rubygem-haml \
|
|
rubygem-minitest>=5:${PORTSDIR}/devel/rubygem-minitest \
|
|
rubygem-rack>=0:${PORTSDIR}/www/rubygem-rack \
|
|
rubygem-rake-compiler>=0.7.5:${PORTSDIR}/devel/rubygem-rake-compiler \
|
|
rubygem-url_escape>=0:${PORTSDIR}/www/rubygem-url_escape
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|