diff options
author | swills <swills@FreeBSD.org> | 2011-05-03 10:40:59 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2011-05-03 10:40:59 +0800 |
commit | e4ac49cd729c5af29a85a2e2b4915e1da1e00c58 (patch) | |
tree | 6c7bcca712be7f816ce851e3453e0530f7d49f4a /textproc | |
parent | df6a002997be1c583eb4d6997157e09e52c11c30 (diff) | |
download | freebsd-ports-gnome-e4ac49cd729c5af29a85a2e2b4915e1da1e00c58.tar.gz freebsd-ports-gnome-e4ac49cd729c5af29a85a2e2b4915e1da1e00c58.tar.zst freebsd-ports-gnome-e4ac49cd729c5af29a85a2e2b4915e1da1e00c58.zip |
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>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-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 |
4 files changed, 31 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index e40dab4ba3d3..438bb9cc123d 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1140,6 +1140,7 @@ SUBDIR += rubygem-spreadsheet SUBDIR += rubygem-syntax SUBDIR += rubygem-termcolor + SUBDIR += rubygem-terminal-table SUBDIR += rubygem-tidy SUBDIR += rubygem-xml-simple SUBDIR += rubygem-xslt 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 |