From owner-svn-ports-all@freebsd.org Wed Feb 8 15:21:55 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73EADCD68BF; Wed, 8 Feb 2017 15:21:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 349F41951; Wed, 8 Feb 2017 15:21:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v18FLsO8021954; Wed, 8 Feb 2017 15:21:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v18FLr4n021950; Wed, 8 Feb 2017 15:21:53 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201702081521.v18FLr4n021950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 8 Feb 2017 15:21:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433650 - in head/textproc: . rubygem-mustache X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Feb 2017 15:21:55 -0000 Author: swills Date: Wed Feb 8 15:21:53 2017 New Revision: 433650 URL: https://svnweb.freebsd.org/changeset/ports/433650 Log: textproc/rubygem-mustache: create port Inspired by ctemplate, Mustache is a framework-agnostic way to render logic-free views. As ctemplates says, "It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. Think of Mustache as a replacement for your views. Instead of views consisting of ERB or HAML with random helpers and arbitrary logic, your views are broken into two parts: a Ruby class and an HTML template. WWW: https://github.com/mustache/mustache Added: head/textproc/rubygem-mustache/ head/textproc/rubygem-mustache/Makefile (contents, props changed) head/textproc/rubygem-mustache/distinfo (contents, props changed) head/textproc/rubygem-mustache/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Feb 8 13:50:29 2017 (r433649) +++ head/textproc/Makefile Wed Feb 8 15:21:53 2017 (r433650) @@ -1485,6 +1485,7 @@ SUBDIR += rubygem-ltsv SUBDIR += rubygem-markaby SUBDIR += rubygem-multi_xml + SUBDIR += rubygem-mustache SUBDIR += rubygem-nokogiri SUBDIR += rubygem-nokogiri-diff SUBDIR += rubygem-nokogiri14 Added: head/textproc/rubygem-mustache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-mustache/Makefile Wed Feb 8 15:21:53 2017 (r433650) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= mustache +PORTVERSION= 1.0.3 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Mustache is a framework-agnostic way to render logic-free views + +USE_RUBY= yes +USES= gem + +PLIST_FILES= bin/mustache + +.include Added: head/textproc/rubygem-mustache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-mustache/distinfo Wed Feb 8 15:21:53 2017 (r433650) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486566333 +SHA256 (rubygem/mustache-1.0.3.gem) = 4ed9d389e41c54f000ad33bba6d1939a5685c0a0c3eb02d707fc21bddf6e97ec +SIZE (rubygem/mustache-1.0.3.gem) = 40960 Added: head/textproc/rubygem-mustache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-mustache/pkg-descr Wed Feb 8 15:21:53 2017 (r433650) @@ -0,0 +1,13 @@ +Inspired by ctemplate, Mustache is a framework-agnostic way to render +logic-free views. + +As ctemplates says, "It emphasizes separating logic from presentation: +it is impossible to embed application logic in this template +language. + +Think of Mustache as a replacement for your views. Instead of views +consisting of ERB or HAML with random helpers and arbitrary logic, +your views are broken into two parts: a Ruby class and an HTML +template. + +WWW: https://github.com/mustache/mustache