fastxml 0.1.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +0 -0
- data/README +9 -0
- data/ext/Makefile +153 -0
- data/ext/extconf.rb +13 -0
- data/ext/fastxml.bundle +0 -0
- data/ext/fastxml.c +280 -0
- data/ext/fastxml.h +61 -0
- data/ext/fastxml.o +0 -0
- data/ext/fastxml_attrlist.c +60 -0
- data/ext/fastxml_attrlist.h +11 -0
- data/ext/fastxml_attrlist.o +0 -0
- data/ext/fastxml_doc.c +190 -0
- data/ext/fastxml_doc.h +16 -0
- data/ext/fastxml_doc.o +0 -0
- data/ext/fastxml_node.c +240 -0
- data/ext/fastxml_node.h +21 -0
- data/ext/fastxml_node.o +0 -0
- data/ext/fastxml_nodelist.c +146 -0
- data/ext/fastxml_nodelist.h +13 -0
- data/ext/fastxml_nodelist.o +0 -0
- data/ext/mkmf.log +119 -0
- data/lib/fastxml_lib.rb +93 -0
- data/specs/basic_html_spec.rb +70 -0
- data/specs/basic_parsing_spec.rb +48 -0
- data/specs/fastxml_doc_spec.rb +82 -0
- data/specs/fastxml_node_spec.rb +110 -0
- data/specs/fastxml_nodelist_spec.rb +46 -0
- data/test_data/cnn_main.html +1348 -0
- data/test_data/hasno_feed.html +364 -0
- data/test_data/hasno_feed.xml +301 -0
- data/test_data/hasno_test.xml +301 -0
- data/test_data/labels.xml +23 -0
- data/test_data/simple.xml +10 -0
- data/test_data/twitter_public.html +949 -0
- data/test_data/unicode.xml +10596 -0
- data/test_data/xslspec.xml +24682 -0
- metadata +114 -0
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastxml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.91
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mark Guzman
|
8
|
+
autorequire: fastxml
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-05-05 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rspec
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.3
|
23
|
+
version:
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
name: rake
|
26
|
+
version_requirement:
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
requirements:
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 0.8.1
|
32
|
+
version:
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rubyforge
|
35
|
+
version_requirement:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.4.5
|
41
|
+
version:
|
42
|
+
description: A simple ruby interface to libxml (with hpricot-like syntax)
|
43
|
+
email: segfault@hasno.info
|
44
|
+
executables: []
|
45
|
+
|
46
|
+
extensions: []
|
47
|
+
|
48
|
+
extra_rdoc_files:
|
49
|
+
- README
|
50
|
+
- LICENSE
|
51
|
+
files:
|
52
|
+
- lib/fastxml_lib.rb
|
53
|
+
- ext/extconf.rb
|
54
|
+
- ext/fastxml.bundle
|
55
|
+
- ext/fastxml.c
|
56
|
+
- ext/fastxml.h
|
57
|
+
- ext/fastxml.o
|
58
|
+
- ext/fastxml_attrlist.c
|
59
|
+
- ext/fastxml_attrlist.h
|
60
|
+
- ext/fastxml_attrlist.o
|
61
|
+
- ext/fastxml_doc.c
|
62
|
+
- ext/fastxml_doc.h
|
63
|
+
- ext/fastxml_doc.o
|
64
|
+
- ext/fastxml_node.c
|
65
|
+
- ext/fastxml_node.h
|
66
|
+
- ext/fastxml_node.o
|
67
|
+
- ext/fastxml_nodelist.c
|
68
|
+
- ext/fastxml_nodelist.h
|
69
|
+
- ext/fastxml_nodelist.o
|
70
|
+
- ext/Makefile
|
71
|
+
- ext/mkmf.log
|
72
|
+
- test_data/cnn_main.html
|
73
|
+
- test_data/hasno_feed.html
|
74
|
+
- test_data/hasno_feed.xml
|
75
|
+
- test_data/hasno_test.xml
|
76
|
+
- test_data/labels.xml
|
77
|
+
- test_data/simple.xml
|
78
|
+
- test_data/twitter_public.html
|
79
|
+
- test_data/unicode.xml
|
80
|
+
- test_data/xslspec.xml
|
81
|
+
- README
|
82
|
+
- LICENSE
|
83
|
+
has_rdoc: true
|
84
|
+
homepage: http://rubyforge.org/fastxml
|
85
|
+
post_install_message:
|
86
|
+
rdoc_options: []
|
87
|
+
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: "0"
|
95
|
+
version:
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: "0"
|
101
|
+
version:
|
102
|
+
requirements: []
|
103
|
+
|
104
|
+
rubyforge_project: fastxml
|
105
|
+
rubygems_version: 1.1.1
|
106
|
+
signing_key:
|
107
|
+
specification_version: 2
|
108
|
+
summary: Fast Xml Library
|
109
|
+
test_files:
|
110
|
+
- specs/basic_html_spec.rb
|
111
|
+
- specs/basic_parsing_spec.rb
|
112
|
+
- specs/fastxml_doc_spec.rb
|
113
|
+
- specs/fastxml_node_spec.rb
|
114
|
+
- specs/fastxml_nodelist_spec.rb
|