1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

Add rubygem-rexml 3.2.4

REXML was inspired by the Electric XML library for Java, which features an
easy-to-use API, small size, and speed. Hopefully, REXML, designed with the same
philosophy, has these same features. I've tried to keep the API as intuitive as
possible, and have followed the Ruby methodology for method naming and code
flow, rather than mirroring the Java API.

REXML supports both tree and stream document parsing. Stream parsing is faster
(about 1.5 times as fast). However, with stream parsing, you don't get access to
features such as XPath.

WWW: https://github.com/ruby/rexml
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-04-21 19:33:24 +00:00
parent 1d7947cca8
commit 132b0d3daa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=532297
4 changed files with 35 additions and 0 deletions

View File

@ -1596,6 +1596,7 @@
SUBDIR += rubygem-regexp_property_values
SUBDIR += rubygem-representable
SUBDIR += rubygem-reverse_markdown
SUBDIR += rubygem-rexml
SUBDIR += rubygem-ri_cal
SUBDIR += rubygem-rich
SUBDIR += rubygem-rly

View File

@ -0,0 +1,20 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= rexml
PORTVERSION= 3.2.4
CATEGORIES= textproc rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= XML toolkit for Ruby
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1587445348
SHA256 (rubygem/rexml-3.2.4.gem) = 036b31f3c052be42b7a2e6914f3322daaecce46b172806f38fea4297389b7bd6
SIZE (rubygem/rexml-3.2.4.gem) = 77824

View File

@ -0,0 +1,11 @@
REXML was inspired by the Electric XML library for Java, which features an
easy-to-use API, small size, and speed. Hopefully, REXML, designed with the same
philosophy, has these same features. I've tried to keep the API as intuitive as
possible, and have followed the Ruby methodology for method naming and code
flow, rather than mirroring the Java API.
REXML supports both tree and stream document parsing. Stream parsing is faster
(about 1.5 times as fast). However, with stream parsing, you don't get access to
features such as XPath.
WWW: https://github.com/ruby/rexml