forked from Lainports/freebsd-ports
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
18 lines
291 B
Makefile
18 lines
291 B
Makefile
# $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 <bsd.port.mk>
|