Bug 172116 - [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine
Summary: [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ruby (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-27 18:00 UTC by kimor79
Modified: 2013-01-23 02:40 UTC (History)
0 users

See Also:


Attachments
file.shar (2.09 KB, text/plain)
2012-09-27 18:00 UTC, kimor79
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description kimor79 2012-09-27 18:00:17 UTC
New port for pry-remote-em ruby gem.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-09-27 18:00:29 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ruby

ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-01-23 02:33:34 UTC
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"
Comment 3 Steve Wills freebsd_committer freebsd_triage 2013-01-23 02:34:09 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!