Index: head/www/Makefile =================================================================== --- head/www/Makefile +++ head/www/Makefile @@ -2019,6 +2019,7 @@ SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api SUBDIR += rubygem-link_header + SUBDIR += rubygem-lograge SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-merb-assets Index: head/www/rubygem-lograge/Makefile =================================================================== --- head/www/rubygem-lograge/Makefile +++ head/www/rubygem-lograge/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= lograge +PORTVERSION= 0.4.1 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Tame Rails' multi-line logging into a single line per request + +LICENSE= MIT + +RUN_DEPENDS= rubygem-activesupport4>0:devel/rubygem-activesupport4 \ + rubygem-actionpack4>0:www/rubygem-actionpack4 \ + rubygem-railties4>0:www/rubygem-railties4 + +USE_RUBY= yes +USES= gem + +.include Index: head/www/rubygem-lograge/distinfo =================================================================== --- head/www/rubygem-lograge/distinfo +++ head/www/rubygem-lograge/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1491588204 +SHA256 (rubygem/lograge-0.4.1.gem) = 3b0a32716852fd3a07a10169a62a7132416e764e3c8ed85945b352d9dd4496d3 +SIZE (rubygem/lograge-0.4.1.gem) = 8704 Index: head/www/rubygem-lograge/pkg-descr =================================================================== --- head/www/rubygem-lograge/pkg-descr +++ head/www/rubygem-lograge/pkg-descr @@ -0,0 +1,8 @@ +Tame Rails' multi-line logging into a single line per request + +Lograge is an attempt to bring sanity to Rails' noisy and unusable, unparsable +and, in the context of running multiple processes and servers, unreadable +default logging output. Rails' default approach to log everything is great +during development, it's terrible when running it in production. + +WWW: https://github.com/roidrage/lograge/