From owner-svn-ports-head@freebsd.org Thu Aug 24 09:40:37 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 99460DDB110; Thu, 24 Aug 2017 09:40:37 +0000 (UTC) (envelope-from tz@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 73579719F6; Thu, 24 Aug 2017 09:40:37 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7O9eaTU000321; Thu, 24 Aug 2017 09:40:36 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7O9eaEM000316; Thu, 24 Aug 2017 09:40:36 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201708240940.v7O9eaEM000316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 24 Aug 2017 09:40:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448662 - in head/devel: . rubygem-peek-rblineprof X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in head/devel: . rubygem-peek-rblineprof X-SVN-Commit-Revision: 448662 X-SVN-Commit-Repository: ports 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: Thu, 24 Aug 2017 09:40:37 -0000 Author: tz Date: Thu Aug 24 09:40:36 2017 New Revision: 448662 URL: https://svnweb.freebsd.org/changeset/ports/448662 Log: New port: devel/rubygem-peek-rblineprof Peek into how much time each line of your Rails application takes throughout a request. Things this peek view provides: - Total time it takes to render individual lines within your codebase - Total network time spent waiting per line You can also drill down to only certain parts of your codebase like: - app, everything within Rails.root/(app|lib) - views, everything within Rails.root/app/view - gems, everything within Rails.root/vendor/gems - all, everything within Rails.root - stdlib WWW: https://github.com/peek/peek-rblineprof Added: head/devel/rubygem-peek-rblineprof/ head/devel/rubygem-peek-rblineprof/Makefile (contents, props changed) head/devel/rubygem-peek-rblineprof/distinfo (contents, props changed) head/devel/rubygem-peek-rblineprof/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 24 09:39:00 2017 (r448661) +++ head/devel/Makefile Thu Aug 24 09:40:36 2017 (r448662) @@ -5597,6 +5597,7 @@ SUBDIR += rubygem-peek-gc SUBDIR += rubygem-peek-host SUBDIR += rubygem-peek-performance_bar + SUBDIR += rubygem-peek-rblineprof SUBDIR += rubygem-peek-redis SUBDIR += rubygem-peek-sidekiq SUBDIR += rubygem-piston Added: head/devel/rubygem-peek-rblineprof/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-rblineprof/Makefile Thu Aug 24 09:40:36 2017 (r448662) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= peek-rblineprof +PORTVERSION= 0.2.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= tz@FreeBSD.org +COMMENT= Peek into how much each line of your Rails application takes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-peek>=0:devel/rubygem-peek \ + rubygem-rblineprof>=0:devel/rubygem-rblineprof + +NO_ARCH= yes +USES= gem +USE_RUBY= yes + +.include Added: head/devel/rubygem-peek-rblineprof/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-rblineprof/distinfo Thu Aug 24 09:40:36 2017 (r448662) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503567457 +SHA256 (rubygem/peek-rblineprof-0.2.0.gem) = 2c5540b9076b16e338f0bf5aa2b7a8e5cd94c0799aaf2830863343abf70b937b +SIZE (rubygem/peek-rblineprof-0.2.0.gem) = 10240 Added: head/devel/rubygem-peek-rblineprof/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek-rblineprof/pkg-descr Thu Aug 24 09:40:36 2017 (r448662) @@ -0,0 +1,15 @@ +Peek into how much time each line of your Rails application takes throughout a +request. + +Things this peek view provides: +- Total time it takes to render individual lines within your codebase +- Total network time spent waiting per line + +You can also drill down to only certain parts of your codebase like: +- app, everything within Rails.root/(app|lib) +- views, everything within Rails.root/app/view +- gems, everything within Rails.root/vendor/gems +- all, everything within Rails.root +- stdlib + +WWW: https://github.com/peek/peek-rblineprof