MessagePack is a binary-based efficient data interchange format that

is focused on high performance. It is like JSON, but very fast and
small.

WWW: http://msgpack.sourceforge.jp/
This commit is contained in:
Jun Kuriyama 2010-01-19 03:28:26 +00:00
parent e1b6771d13
commit 58ea3885ec
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=248127
4 changed files with 29 additions and 0 deletions

View File

@ -2871,6 +2871,7 @@
SUBDIR += rubygem-mash
SUBDIR += rubygem-metaid
SUBDIR += rubygem-mocha
SUBDIR += rubygem-msgpack
SUBDIR += rubygem-needle
SUBDIR += rubygem-newgem
SUBDIR += rubygem-open4

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: rubygem-msgpack
# Date created: 19 Jan 2010
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= msgpack
PORTVERSION= 0.3.2
CATEGORIES= devel rubygems
MASTER_SITES= RF
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Gems for MessagePack
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/msgpack-0.3.2.gem) = 2cb632f128ba4f8131cdcf03ecadd893
SHA256 (rubygem/msgpack-0.3.2.gem) = b69a15d67f07782e9112fbd6fe9372e5b3f0d21d58ea7f0e72d2f8943f76bd09
SIZE (rubygem/msgpack-0.3.2.gem) = 14848

View File

@ -0,0 +1,5 @@
MessagePack is a binary-based efficient data interchange format that
is focused on high performance. It is like JSON, but very fast and
small.
WWW: http://msgpack.sourceforge.jp/