1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

- Add rubygem-parslet 1.6.0

Parslet is a small Ruby library for constructing parsers in the PEG (Parsing
Expression Grammar) fashion.

Parslet makes developing complex parsers easy. It does so by
- providing the best error reporting possible
- not generating reams of code for you to debug

Parslet takes the long way around to make your job easier. It allows for
incremental language construction. Often, you start out small, implementing the
atoms of your language first; parslet takes pride in making this possible.

WWW: http://kschiess.github.io/parslet/
RG:  https://rubygems.org/gems/parslet
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2014-05-08 05:15:16 +00:00
parent b2aaade7a6
commit 29563b7dfa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=353270
4 changed files with 36 additions and 0 deletions

View File

@ -1312,6 +1312,7 @@
SUBDIR += rubygem-multi_xml
SUBDIR += rubygem-nokogiri
SUBDIR += rubygem-opml
SUBDIR += rubygem-parslet
SUBDIR += rubygem-phone
SUBDIR += rubygem-rak
SUBDIR += rubygem-rchardet

View File

@ -0,0 +1,20 @@
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= parslet
PORTVERSION= 1.6.0
CATEGORIES= textproc rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Parser construction library with great error reporting in Ruby
LICENSE= MIT
RUN_DEPENDS= rubygem-blankslate>=2:${PORTSDIR}/devel/rubygem-blankslate
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/parslet-1.6.0.gem) = c9c0af382d7fb4c8a440d7438ea5645e37d01850c4c791d45e5cabdf1f5d50c6
SIZE (rubygem/parslet-1.6.0.gem) = 56832

View File

@ -0,0 +1,13 @@
Parslet is a small Ruby library for constructing parsers in the PEG (Parsing
Expression Grammar) fashion.
Parslet makes developing complex parsers easy. It does so by
- providing the best error reporting possible
- not generating reams of code for you to debug
Parslet takes the long way around to make your job easier. It allows for
incremental language construction. Often, you start out small, implementing the
atoms of your language first; parslet takes pride in making this possible.
WWW: http://kschiess.github.io/parslet/
RG: https://rubygems.org/gems/parslet