New port for pry-remote-em ruby gem. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->ruby ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Author: swills Date: Wed Jan 23 02:33:20 2013 New Revision: 310848 URL: http://svnweb.freebsd.org/changeset/ports/310848 Log: Add rubygem-pry-remote-em 0.7.3, connect to Pry remotely using EventMachine. PR: ports/172116 Submitted by: Kimo <kimor79@yahoo.com> Added: head/devel/rubygem-pry-remote-em/ head/devel/rubygem-pry-remote-em/Makefile (contents, props changed) head/devel/rubygem-pry-remote-em/distinfo (contents, props changed) head/devel/rubygem-pry-remote-em/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 23 02:26:31 2013 (r310847) +++ head/devel/Makefile Wed Jan 23 02:33:20 2013 (r310848) @@ -4022,6 +4022,7 @@ SUBDIR += rubygem-posix-spawn SUBDIR += rubygem-prototype-rails SUBDIR += rubygem-pry + SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-racc SUBDIR += rubygem-railsless-deploy Added: head/devel/rubygem-pry-remote-em/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote-em/Makefile Wed Jan 23 02:33:20 2013 (r310848) @@ -0,0 +1,22 @@ +# Created by: Kimo <kimor79@yahoo.com> +# $FreeBSD$ + +PORTNAME= pry-remote-em +PORTVERSION= 0.7.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Connect to Pry remotely using EventMachine + +RUN_DEPENDS= rubygem-eventmachine>=0:${PORTSDIR}/devel/rubygem-eventmachine \ + rubygem-highline>=0:${PORTSDIR}/devel/rubygem-highline \ + rubygem-pry>=0.9:${PORTSDIR}/devel/rubygem-pry + +PLIST_FILES+= bin/pry-remote-em + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/rubygem-pry-remote-em/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote-em/distinfo Wed Jan 23 02:33:20 2013 (r310848) @@ -0,0 +1,2 @@ +SHA256 (rubygem/pry-remote-em-0.7.3.gem) = 87c2f96ab3ab7ef4d814068aeb522270789dd8eb9fd50327f7da883a58089aec +SIZE (rubygem/pry-remote-em-0.7.3.gem) = 20480 Added: head/devel/rubygem-pry-remote-em/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote-em/pkg-descr Wed Jan 23 02:33:20 2013 (r310848) @@ -0,0 +1,11 @@ +PryRemoteEm enables you to start instances of Pry in a running EventMachine +program and connect to those Pry instances over a network or the Internet. +Once connected you can interact with the internal state of the program. + +It's based off of Mon-Ouie's pry-remote for DRb. + +It adds user authentication and SSL support along with tab-completion and +paging. It's compatble with MRI 1.9, or any other VM with support for Fibers +and EventMachine. + +WWW: http://github.com/simulacre/pry-remote-em _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added, with minor changes. Thanks!