textproc/rubygem-escape_utils-rails4: copy port

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)
This commit is contained in:
Johannes Jost Meixner 2014-09-27 15:52:54 +00:00
parent 6fe2452069
commit e8b8297427
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369399
4 changed files with 44 additions and 0 deletions

View File

@ -1310,6 +1310,7 @@
SUBDIR += rubygem-elasticsearch-api
SUBDIR += rubygem-elasticsearch-transport
SUBDIR += rubygem-escape_utils
SUBDIR += rubygem-escape_utils-rails4
SUBDIR += rubygem-ezamar
SUBDIR += rubygem-fast_xs
SUBDIR += rubygem-fast_xs073

View File

@ -0,0 +1,27 @@
# 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>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/escape_utils-1.0.1.gem) = 669467df9a8dae259211f5afb5be9dff88879d855af14afee2b5778bf6530960
SIZE (rubygem/escape_utils-1.0.1.gem) = 25600

View File

@ -0,0 +1,14 @@
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