diff options
author | swills <swills@FreeBSD.org> | 2013-10-20 23:29:17 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-10-20 23:29:17 +0800 |
commit | 59351ee330c9d7ca56132d3f120f5e95829b576d (patch) | |
tree | 9b5f8d33ea202901eef938f19bee02c14d1bbaf7 | |
parent | d3c51f8c2a80ee13900ac77d9e86cfbe63724803 (diff) | |
download | freebsd-ports-gnome-59351ee330c9d7ca56132d3f120f5e95829b576d.tar.gz freebsd-ports-gnome-59351ee330c9d7ca56132d3f120f5e95829b576d.tar.zst freebsd-ports-gnome-59351ee330c9d7ca56132d3f120f5e95829b576d.zip |
Entities - a simple Facade to use with your models and API - extracted from
Grape.
WWW: https://github.com/intridea/grape-entity
PR: ports/182676
Submitted by: Loic Blot <loic.blot@unix-experience.fr>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-grape-entity/Makefile | 20 | ||||
-rw-r--r-- | devel/rubygem-grape-entity/distinfo | 2 | ||||
-rw-r--r-- | devel/rubygem-grape-entity/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 902da32e5d8b..4ce0be59a8a2 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4102,6 +4102,7 @@ SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-graf SUBDIR += rubygem-grape + SUBDIR += rubygem-grape-entity SUBDIR += rubygem-grit SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie diff --git a/devel/rubygem-grape-entity/Makefile b/devel/rubygem-grape-entity/Makefile new file mode 100644 index 000000000000..2473ccfede2f --- /dev/null +++ b/devel/rubygem-grape-entity/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= grape-entity +PORTVERSION= 0.3.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Entities - a simple Facade to use with your models and API + +RUN_DEPENDS= rubygem-activesupport>=0:${PORTSDIR}/devel/rubygem-activesupport \ + rubygem-multi_json>=1.3.2:${PORTSDIR}/devel/rubygem-multi_json + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +NO_STAGE= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-grape-entity/distinfo b/devel/rubygem-grape-entity/distinfo new file mode 100644 index 000000000000..a9c6b94b0fbb --- /dev/null +++ b/devel/rubygem-grape-entity/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/grape-entity-0.3.0.gem) = c62d39fd7351f17cb7d12afb3c4a250bb62436bcf74ffc074a5391cb26b19ffd +SIZE (rubygem/grape-entity-0.3.0.gem) = 17408 diff --git a/devel/rubygem-grape-entity/pkg-descr b/devel/rubygem-grape-entity/pkg-descr new file mode 100644 index 000000000000..9faabb2e9bc9 --- /dev/null +++ b/devel/rubygem-grape-entity/pkg-descr @@ -0,0 +1,4 @@ +Entities - a simple Facade to use with your models and API - extracted from +Grape. + +WWW: https://github.com/intridea/grape-entity |