diff options
author | Steve Wills <swills@FreeBSD.org> | 2011-05-03 02:40:59 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2011-05-03 02:40:59 +0000 |
commit | 2a8fa92edf46bdbe3a96458dbfb77b88afaf63fe (patch) | |
tree | bf18bdfc46b5350523c85960af7c42a6959e09fc /textproc/rubygem-terminal-table | |
parent | ecaedb36f3c1ed302fb8115d01fd9dcb1b4db98f (diff) |
Simple, feature rich ascii table generation library.
- Optional headings
- Alignment of columns, headings, or cells
- Supports column span
- Easy modification of table strings (+, -, |)
WWW: https://github.com/visionmedia/terminal-table
PR: ports/156435
Submitted by: Eric Freeman <freebsdports at chillibear.com>
Notes
Notes:
svn path=/head/; revision=273517
Diffstat (limited to 'textproc/rubygem-terminal-table')
-rw-r--r-- | textproc/rubygem-terminal-table/Makefile | 20 | ||||
-rw-r--r-- | textproc/rubygem-terminal-table/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-terminal-table/pkg-descr | 8 |
3 files changed, 30 insertions, 0 deletions
diff --git a/textproc/rubygem-terminal-table/Makefile b/textproc/rubygem-terminal-table/Makefile new file mode 100644 index 000000000000..dc34f33e697a --- /dev/null +++ b/textproc/rubygem-terminal-table/Makefile @@ -0,0 +1,20 @@ +# Ports collection makefile for: rubygem-terminal-table +# Date created: 15 April 2011 +# Whom: Eric Freeman <freebsdports@chillibear.com> +# +# $FreeBSD$ +# + +PORTNAME= terminal-table +PORTVERSION= 1.4.2 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= freebsdports@chillibear.com +COMMENT= Simple, feature rich ascii table generation library + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-terminal-table/distinfo b/textproc/rubygem-terminal-table/distinfo new file mode 100644 index 000000000000..c80620867536 --- /dev/null +++ b/textproc/rubygem-terminal-table/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/terminal-table-1.4.2.gem) = e33090125d5bcf857059a7ccae3ae01d929c45fe64104722f8c7056a7d053cfa +SIZE (rubygem/terminal-table-1.4.2.gem) = 12288 diff --git a/textproc/rubygem-terminal-table/pkg-descr b/textproc/rubygem-terminal-table/pkg-descr new file mode 100644 index 000000000000..e81cdc8109a4 --- /dev/null +++ b/textproc/rubygem-terminal-table/pkg-descr @@ -0,0 +1,8 @@ +Simple, feature rich ascii table generation library. + + - Optional headings + - Alignment of columns, headings, or cells + - Supports column span + - Easy modification of table strings (+, -, |) + +WWW: https://github.com/visionmedia/terminal-table |