1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Ripper parses Ruby source and tokenizes or builds an AST.

This gem is meant for Ruby 1.8.x builds. Ruby 1.9.x comes with a functioning
ripper implementation out of the box. This gem is a port of the Ripper 1.9
for Ruby 1.8.x. Ripper was written by Minero Aoki and ported by Loren Segal.

WWW: http://github.com/lsegal/ripper18

PR:		ports/169390
Submitted by:	Douglas Thrift
This commit is contained in:
Steve Wills 2012-07-25 01:48:00 +00:00
parent f988c552bd
commit cd6db90edb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301503
4 changed files with 40 additions and 0 deletions

View File

@ -3853,6 +3853,7 @@
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-require_all
SUBDIR += rubygem-rgl
SUBDIR += rubygem-ripper
SUBDIR += rubygem-rparsec
SUBDIR += rubygem-rr
SUBDIR += rubygem-rscm

View File

@ -0,0 +1,30 @@
# New ports collection makefile for: rubygem-ripper
# Date created: 24 June 2012
# Whom: Douglas Thrift
#
# $FreeBSD$
#
PORTNAME= ripper
PORTVERSION= 1.0.5
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= douglas@douglasthrift.net
COMMENT= Parses Ruby source and tokenizes or builds an AST
LICENSE= BSD
BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.pre.mk>
.if ${RUBY_VER} != 1.8
IGNORE= is already included in Ruby 1.9 and later
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/ripper-1.0.5.gem) = 7fcb60a6a27103be22d56ccb56df7b8a5c35172360cca5a510deb902cf9dc5ed
SIZE (rubygem/ripper-1.0.5.gem) = 70656

View File

@ -0,0 +1,7 @@
Ripper parses Ruby source and tokenizes or builds an AST.
This gem is meant for Ruby 1.8.x builds. Ruby 1.9.x comes with a functioning
ripper implementation out of the box. This gem is a port of the Ripper 1.9
for Ruby 1.8.x. Ripper was written by Minero Aoki and ported by Loren Segal.
WWW: http://github.com/lsegal/ripper18