svn commit: r348102 - in head/devel: . rubygem-table_print

Steve Wills swills at FreeBSD.org
Thu Mar 13 17:14:28 UTC 2014


Author: swills
Date: Thu Mar 13 17:14:26 2014
New Revision: 348102
URL: http://svnweb.freebsd.org/changeset/ports/348102
QAT: https://qat.redports.org/buildarchive/r348102/

Log:
  TablePrint turns objects into nicely formatted columns for easy reading.
  Works great in rails console, works on pure ruby objects, autodetects
  columns and lets you traverse ActiveRecord associations.
  
  WWW: http://tableprintgem.com/
  
  PR:		ports/ports/187483
  Submitted by:	Michael Moll <kvedulv at kvedulv.de>

Added:
  head/devel/rubygem-table_print/
  head/devel/rubygem-table_print/Makefile   (contents, props changed)
  head/devel/rubygem-table_print/distinfo   (contents, props changed)
  head/devel/rubygem-table_print/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar 13 16:58:59 2014	(r348101)
+++ head/devel/Makefile	Thu Mar 13 17:14:26 2014	(r348102)
@@ -4370,6 +4370,7 @@
     SUBDIR += rubygem-sundawg_country_codes
     SUBDIR += rubygem-sysinfo
     SUBDIR += rubygem-systemu
+    SUBDIR += rubygem-table_print
     SUBDIR += rubygem-templater
     SUBDIR += rubygem-temple
     SUBDIR += rubygem-term-ansicolor

Added: head/devel/rubygem-table_print/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-table_print/Makefile	Thu Mar 13 17:14:26 2014	(r348102)
@@ -0,0 +1,18 @@
+# Created by: Michael Moll <kvedulv at kvedulv.de>
+# $FreeBSD$
+
+PORTNAME=	table_print
+PORTVERSION=	1.5.1
+CATEGORIES=	devel ruby
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Turn objects into formatted columns
+
+LICENSE=	MIT
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-table_print/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-table_print/distinfo	Thu Mar 13 17:14:26 2014	(r348102)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/table_print-1.5.1.gem) = e47ec20e10dbe890301263d2987d9ea9c8645d464b6748143741fe2bfb127dac
+SIZE (rubygem/table_print-1.5.1.gem) = 25088

Added: head/devel/rubygem-table_print/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-table_print/pkg-descr	Thu Mar 13 17:14:26 2014	(r348102)
@@ -0,0 +1,5 @@
+TablePrint turns objects into nicely formatted columns for easy reading.
+Works great in rails console, works on pure ruby objects, autodetects
+columns and lets you traverse ActiveRecord associations.
+
+WWW: http://tableprintgem.com/


More information about the svn-ports-all mailing list