From owner-svn-ports-all@freebsd.org Sun Nov 29 21:04:37 2015 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 BDFAAA3C11A; Sun, 29 Nov 2015 21:04:37 +0000 (UTC) (envelope-from mmoll@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 7F1521CC5; Sun, 29 Nov 2015 21:04:37 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATL4aTr030537; Sun, 29 Nov 2015 21:04:36 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATL4aoR030532; Sun, 29 Nov 2015 21:04:36 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201511292104.tATL4aoR030532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 29 Nov 2015 21:04:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402624 - in head/devel: . rubygem-titlecase 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.20 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: Sun, 29 Nov 2015 21:04:37 -0000 Author: mmoll Date: Sun Nov 29 21:04:36 2015 New Revision: 402624 URL: https://svnweb.freebsd.org/changeset/ports/402624 Log: new port: devel/rubygem-titlecase A set of methods added to the String class to allow title casing of strings: - capitalize each word - downcase each of the small_words - words with capitals after the first character are left alone - words with periods are left alone - first and last word always capitalized - small words after colons are capitalized WWW: https://github.com/samsouder/titlecase Added: head/devel/rubygem-titlecase/ head/devel/rubygem-titlecase/Makefile (contents, props changed) head/devel/rubygem-titlecase/distinfo (contents, props changed) head/devel/rubygem-titlecase/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 29 21:04:14 2015 (r402623) +++ head/devel/Makefile Sun Nov 29 21:04:36 2015 (r402624) @@ -5045,6 +5045,7 @@ SUBDIR += rubygem-timers SUBDIR += rubygem-tins SUBDIR += rubygem-tins0 + SUBDIR += rubygem-titlecase SUBDIR += rubygem-toml SUBDIR += rubygem-transaction-simple SUBDIR += rubygem-travis Added: head/devel/rubygem-titlecase/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-titlecase/Makefile Sun Nov 29 21:04:36 2015 (r402624) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= titlecase +PORTVERSION= 0.1.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby string extensions to add title case support + +LICENSE= MIT + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-titlecase/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-titlecase/distinfo Sun Nov 29 21:04:36 2015 (r402624) @@ -0,0 +1,2 @@ +SHA256 (rubygem/titlecase-0.1.1.gem) = 513fc4233f1f03ee96a8fa149c1c7001fb032f95899c95c1420c6f1547235dda +SIZE (rubygem/titlecase-0.1.1.gem) = 5632 Added: head/devel/rubygem-titlecase/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-titlecase/pkg-descr Sun Nov 29 21:04:36 2015 (r402624) @@ -0,0 +1,9 @@ +A set of methods added to the String class to allow title casing of strings: +- capitalize each word +- downcase each of the small_words +- words with capitals after the first character are left alone +- words with periods are left alone +- first and last word always capitalized +- small words after colons are capitalized + +WWW: https://github.com/samsouder/titlecase