diff options
author | swills <swills@FreeBSD.org> | 2013-06-24 04:49:39 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-06-24 04:49:39 +0800 |
commit | 2928e94ecea9cedd1ca538c5956b9c0876fe860e (patch) | |
tree | 4d6863bd3409e1234cc4709424bc8aebb10a2b80 /textproc | |
parent | 4e048286b68a2a96ab80285b6e5f4e6533cd2bf9 (diff) | |
download | freebsd-ports-gnome-2928e94ecea9cedd1ca538c5956b9c0876fe860e.tar.gz freebsd-ports-gnome-2928e94ecea9cedd1ca538c5956b9c0876fe860e.tar.zst freebsd-ports-gnome-2928e94ecea9cedd1ca538c5956b9c0876fe860e.zip |
A composable logging system built on the standard Logger library. You can add
Loggability to large libraries and systems, then hook everything up later when
you know where you want logs to be written, at what level of severity, and in
which format.
WWW: http://deveiate.org/projects/loggability
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-loggability/Makefile | 16 | ||||
-rw-r--r-- | textproc/rubygem-loggability/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-loggability/pkg-descr | 6 |
4 files changed, 25 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index b7aea420da0f..a920f7359250 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1303,6 +1303,7 @@ SUBDIR += rubygem-libxml-ruby SUBDIR += rubygem-linguistics SUBDIR += rubygem-liquid + SUBDIR += rubygem-loggability SUBDIR += rubygem-loofah SUBDIR += rubygem-ltsv SUBDIR += rubygem-markaby diff --git a/textproc/rubygem-loggability/Makefile b/textproc/rubygem-loggability/Makefile new file mode 100644 index 000000000000..980c8662c9e7 --- /dev/null +++ b/textproc/rubygem-loggability/Makefile @@ -0,0 +1,16 @@ +# Created by: Steve Wills <swills@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= loggability +PORTVERSION= 0.6.1 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= A composable logging system built on the standard Logger library + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-loggability/distinfo b/textproc/rubygem-loggability/distinfo new file mode 100644 index 000000000000..55001c90fc1c --- /dev/null +++ b/textproc/rubygem-loggability/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/loggability-0.6.1.gem) = bb39d3cbcbe6698e3c9bffd8815536acf98f73d71f135191e1b7e6f58e4897cb +SIZE (rubygem/loggability-0.6.1.gem) = 26624 diff --git a/textproc/rubygem-loggability/pkg-descr b/textproc/rubygem-loggability/pkg-descr new file mode 100644 index 000000000000..a76c746fc689 --- /dev/null +++ b/textproc/rubygem-loggability/pkg-descr @@ -0,0 +1,6 @@ +A composable logging system built on the standard Logger library. You can add +Loggability to large libraries and systems, then hook everything up later when +you know where you want logs to be written, at what level of severity, and in +which format. + +WWW: http://deveiate.org/projects/loggability |