From owner-svn-ports-head@freebsd.org Thu Mar 30 15:16:10 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 6B8DBD261F9; Thu, 30 Mar 2017 15:16:10 +0000 (UTC) (envelope-from sunpoet@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 2B9B9201; Thu, 30 Mar 2017 15:16:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2UFG9b8028914; Thu, 30 Mar 2017 15:16:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2UFG80K028910; Thu, 30 Mar 2017 15:16:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201703301516.v2UFG80K028910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 30 Mar 2017 15:16:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437320 - in head/devel: . rubygem-bindex 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: Thu, 30 Mar 2017 15:16:10 -0000 Author: sunpoet Date: Thu Mar 30 15:16:08 2017 New Revision: 437320 URL: https://svnweb.freebsd.org/changeset/ports/437320 Log: Add rubygem-bindex 0.5.0 When Ruby raises an exception, it leaves you a backtrace to help you figure out where did the exception originated in. Bindex gives you the bindings as well. This can help you introspect the state of the Ruby program when at the point the exception occurred. WWW: https://github.com/gsamokovarov/bindex Added: head/devel/rubygem-bindex/ head/devel/rubygem-bindex/Makefile (contents, props changed) head/devel/rubygem-bindex/distinfo (contents, props changed) head/devel/rubygem-bindex/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Mar 30 15:14:15 2017 (r437319) +++ head/devel/Makefile Thu Mar 30 15:16:08 2017 (r437320) @@ -5136,6 +5136,7 @@ SUBDIR += rubygem-benelux SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bindata + SUBDIR += rubygem-bindex SUBDIR += rubygem-binding_of_caller SUBDIR += rubygem-bit-struct SUBDIR += rubygem-blankslate Added: head/devel/rubygem-bindex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindex/Makefile Thu Mar 30 15:16:08 2017 (r437320) @@ -0,0 +1,18 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= bindex +PORTVERSION= 0.5.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Bindings for your Ruby exceptions + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-bindex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindex/distinfo Thu Mar 30 15:16:08 2017 (r437320) @@ -0,0 +1,3 @@ +TIMESTAMP = 1490878391 +SHA256 (rubygem/bindex-0.5.0.gem) = 114da28f776d205ded2ae0ed3de3d9bed2c7c1068cdd012245bd4c8d367170f3 +SIZE (rubygem/bindex-0.5.0.gem) = 18432 Added: head/devel/rubygem-bindex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindex/pkg-descr Thu Mar 30 15:16:08 2017 (r437320) @@ -0,0 +1,6 @@ +When Ruby raises an exception, it leaves you a backtrace to help you figure out +where did the exception originated in. Bindex gives you the bindings as well. +This can help you introspect the state of the Ruby program when at the point the +exception occurred. + +WWW: https://github.com/gsamokovarov/bindex