From owner-svn-ports-head@freebsd.org Fri Apr 14 15:41:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AB8DD3DFEE; Fri, 14 Apr 2017 15:41:41 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B5971947; Fri, 14 Apr 2017 15:41:41 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3EFfesm099054; Fri, 14 Apr 2017 15:41:40 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3EFfe1l099050; Fri, 14 Apr 2017 15:41:40 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201704141541.v3EFfe1l099050@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 14 Apr 2017 15:41:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438523 - in head/www: . rubygem-rails_stdout_logging X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Apr 2017 15:41:41 -0000 Author: jrm Date: Fri Apr 14 15:41:39 2017 New Revision: 438523 URL: https://svnweb.freebsd.org/changeset/ports/438523 Log: New port www/rubygem-rails_stdout_logging: Overrides Rails' built in logger to send all logs to stdout Adding www/rubygem-rails_stdout_logging, because it is required for the upcoming www/mastodon port. WWW: https://github.com/heroku/rails_stdout_logging/ Approved by: swills (mentor, implicit) Added: head/www/rubygem-rails_stdout_logging/ head/www/rubygem-rails_stdout_logging/Makefile (contents, props changed) head/www/rubygem-rails_stdout_logging/distinfo (contents, props changed) head/www/rubygem-rails_stdout_logging/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Apr 14 15:28:51 2017 (r438522) +++ head/www/Makefile Fri Apr 14 15:41:39 2017 (r438523) @@ -2068,6 +2068,7 @@ SUBDIR += rubygem-rails_autolink SUBDIR += rubygem-rails_serve_static_assets SUBDIR += rubygem-rails-settings-cached + SUBDIR += rubygem-rails_stdout_logging SUBDIR += rubygem-railties4 SUBDIR += rubygem-railties5 SUBDIR += rubygem-raindrops Added: head/www/rubygem-rails_stdout_logging/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rails_stdout_logging/Makefile Fri Apr 14 15:41:39 2017 (r438523) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= rails_stdout_logging +PORTVERSION= 0.0.5 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Overrides Rails' built in logger to send all logs to stdout + +LICENSE= MIT + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/www/rubygem-rails_stdout_logging/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rails_stdout_logging/distinfo Fri Apr 14 15:41:39 2017 (r438523) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492184215 +SHA256 (rubygem/rails_stdout_logging-0.0.5.gem) = e57158879cc30a759599b574608b104834f26ffa30e0e77293b5e43c374814f4 +SIZE (rubygem/rails_stdout_logging-0.0.5.gem) = 78848 Added: head/www/rubygem-rails_stdout_logging/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rails_stdout_logging/pkg-descr Fri Apr 14 15:41:39 2017 (r438523) @@ -0,0 +1,9 @@ +This gem ensures that your logs will be sent to standard out. From there, +Heroku sends them to logplex so you can access them from the command line like + +$ heroku logs --tail + +or from enabled addons like papertrail. By using Heroku's logplex, you can +treat logs as event streams. + +WWW: https://github.com/heroku/rails_stdout_logging/