View | Details | Raw Unified | Return to bug 217343
Collapse All | Expand All

(-)devel/rubygem-mustache0/Makefile (+25 lines)
Line 0 Link Here
1
# Created by: Sir l33tname <sirl33tname@gmail.com>
2
# $FreeBSD$
3
4
PORTNAME=	mustache
5
PORTVERSION=	0.99.8
6
CATEGORIES=	devel rubygems
7
MASTER_SITES=	RG
8
PKGNAMESUFFIX=  0
9
10
MAINTAINER=	ruby@FreeBSD.org
11
COMMENT=	Framework-agnostic way to render logic-free views
12
13
LICENSE=	MIT
14
15
NO_ARCH=	yes
16
USE_RUBY=	yes
17
USES=		gem
18
19
PLIST_FILES=	bin/mustache${PKGNAMESUFFIX}
20
21
post-install:
22
	@${MV} ${STAGEDIR}/${PREFIX}/bin/mustache \
23
	       ${STAGEDIR}/${PREFIX}/bin/mustache${PKGNAMESUFFIX}
24
25
.include <bsd.port.mk>
(-)devel/rubygem-mustache0/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1487955769
2
SHA256 (rubygem/mustache-0.99.8.gem) = 826a96db895819c13fffa4fa3c20b85e80b60aaec1f28f79e7db80092abdb0bc
3
SIZE (rubygem/mustache-0.99.8.gem) = 43520
(-)devel/rubygem-mustache0/pkg-descr (+13 lines)
Line 0 Link Here
1
Inspired by ctemplate, Mustache is a framework-agnostic way to render
2
logic-free views.
3
4
As ctemplates says, "It emphasizes separating logic from presentation:
5
it is impossible to embed application logic in this template
6
language.
7
8
Think of Mustache as a replacement for your views. Instead of views
9
consisting of ERB or HAML with random helpers and arbitrary logic,
10
your views are broken into two parts: a Ruby class and an HTML
11
template.
12
13
WWW: https://github.com/mustache/mustache

Return to bug 217343