1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00

httparty is a Ruby library that makes HTTP fun again!

It's feautures:

* Easy get, post, put, delete requests
* Basic http authentication
* Default request query string parameters (ie: for api
  keys that are needed on each request)
* Automatic parsing of JSON and XML into ruby hashes
based on response content-type

WWW: http://rubyforge.org/projects/httparty/

PR:		ports/128661
Submitted by:	Wen Heping <wenheping_AT_gmail dot com>
This commit is contained in:
Cheng-Lung Sung 2009-02-19 06:47:09 +00:00
parent fefadb0555
commit d93f9e74ae
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228634
4 changed files with 38 additions and 0 deletions

View File

@ -1328,6 +1328,7 @@
SUBDIR += rubygem-haml
SUBDIR += rubygem-hpricot
SUBDIR += rubygem-htauth
SUBDIR += rubygem-httparty
SUBDIR += rubygem-layout-yullio
SUBDIR += rubygem-maruku
SUBDIR += rubygem-mechanize

View File

@ -0,0 +1,22 @@
# Ports collection makefile for: rubygem-httparty
# Date created: Nov 07, 2008
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
PORTNAME= httparty
PORTVERSION= 0.1.3
CATEGORIES= www rubygems
MASTER_SITES= RF
MAINTAINER= wenheping@gmail.com
COMMENT= Ruby Library that Makes HTTP Fun Again
BUILD_DEPENDS= rubygem-activesupport>=2.1.0:${PORTSDIR}/devel/rubygem-activesupport
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/httparty-0.1.3.gem) = 3c986ec5e1a0f1ab550b1063566facfa
SHA256 (rubygem/httparty-0.1.3.gem) = 6c334d1790f858962e8c05a90273bf576d475c1169c7d91c2df1845b3c869628
SIZE (rubygem/httparty-0.1.3.gem) = 26112

View File

@ -0,0 +1,12 @@
httparty is a Ruby library that makes HTTP fun again!
It's feautures:
* Easy get, post, put, delete requests
* Basic http authentication
* Default request query string parameters (ie: for api
keys that are needed on each request)
* Automatic parsing of JSON and XML into ruby hashes
based on response content-type
WWW: http://rubyforge.org/projects/httparty/