tenderlove-nokogiri 0.0.0-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/Manifest.txt +120 -0
- data/README.ja.txt +86 -0
- data/README.txt +87 -0
- data/Rakefile +264 -0
- data/ext/nokogiri/extconf.rb +59 -0
- data/ext/nokogiri/html_document.c +83 -0
- data/ext/nokogiri/html_document.h +10 -0
- data/ext/nokogiri/html_sax_parser.c +32 -0
- data/ext/nokogiri/html_sax_parser.h +11 -0
- data/ext/nokogiri/native.c +40 -0
- data/ext/nokogiri/native.h +51 -0
- data/ext/nokogiri/xml_cdata.c +52 -0
- data/ext/nokogiri/xml_cdata.h +9 -0
- data/ext/nokogiri/xml_document.c +159 -0
- data/ext/nokogiri/xml_document.h +10 -0
- data/ext/nokogiri/xml_dtd.c +117 -0
- data/ext/nokogiri/xml_dtd.h +8 -0
- data/ext/nokogiri/xml_node.c +709 -0
- data/ext/nokogiri/xml_node.h +15 -0
- data/ext/nokogiri/xml_node_set.c +124 -0
- data/ext/nokogiri/xml_node_set.h +9 -0
- data/ext/nokogiri/xml_reader.c +429 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_sax_parser.c +174 -0
- data/ext/nokogiri/xml_sax_parser.h +10 -0
- data/ext/nokogiri/xml_syntax_error.c +194 -0
- data/ext/nokogiri/xml_syntax_error.h +11 -0
- data/ext/nokogiri/xml_text.c +29 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath.c +46 -0
- data/ext/nokogiri/xml_xpath.h +11 -0
- data/ext/nokogiri/xml_xpath_context.c +81 -0
- data/ext/nokogiri/xml_xpath_context.h +9 -0
- data/ext/nokogiri/xslt_stylesheet.c +108 -0
- data/ext/nokogiri/xslt_stylesheet.h +9 -0
- data/lib/nokogiri/css/node.rb +95 -0
- data/lib/nokogiri/css/parser.rb +24 -0
- data/lib/nokogiri/css/parser.y +198 -0
- data/lib/nokogiri/css/tokenizer.rb +9 -0
- data/lib/nokogiri/css/tokenizer.rex +63 -0
- data/lib/nokogiri/css/xpath_visitor.rb +165 -0
- data/lib/nokogiri/css.rb +6 -0
- data/lib/nokogiri/decorators/hpricot/node.rb +58 -0
- data/lib/nokogiri/decorators/hpricot/node_set.rb +14 -0
- data/lib/nokogiri/decorators/hpricot/xpath_visitor.rb +17 -0
- data/lib/nokogiri/decorators/hpricot.rb +3 -0
- data/lib/nokogiri/decorators.rb +1 -0
- data/lib/nokogiri/hpricot.rb +47 -0
- data/lib/nokogiri/html/builder.rb +9 -0
- data/lib/nokogiri/html/document.rb +9 -0
- data/lib/nokogiri/html/sax/parser.rb +21 -0
- data/lib/nokogiri/html.rb +95 -0
- data/lib/nokogiri/version.rb +3 -0
- data/lib/nokogiri/xml/after_handler.rb +18 -0
- data/lib/nokogiri/xml/before_handler.rb +32 -0
- data/lib/nokogiri/xml/builder.rb +79 -0
- data/lib/nokogiri/xml/cdata.rb +9 -0
- data/lib/nokogiri/xml/document.rb +30 -0
- data/lib/nokogiri/xml/dtd.rb +6 -0
- data/lib/nokogiri/xml/node.rb +195 -0
- data/lib/nokogiri/xml/node_set.rb +183 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/reader.rb +14 -0
- data/lib/nokogiri/xml/sax/document.rb +59 -0
- data/lib/nokogiri/xml/sax/parser.rb +33 -0
- data/lib/nokogiri/xml/sax.rb +9 -0
- data/lib/nokogiri/xml/syntax_error.rb +21 -0
- data/lib/nokogiri/xml/text.rb +6 -0
- data/lib/nokogiri/xml/xpath.rb +6 -0
- data/lib/nokogiri/xml/xpath_context.rb +14 -0
- data/lib/nokogiri/xml.rb +67 -0
- data/lib/nokogiri/xslt/stylesheet.rb +6 -0
- data/lib/nokogiri/xslt.rb +11 -0
- data/lib/nokogiri.rb +51 -0
- data/nokogiri.gemspec +34 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +224 -0
- data/test/css/test_tokenizer.rb +162 -0
- data/test/css/test_xpath_visitor.rb +54 -0
- data/test/files/staff.xml +59 -0
- data/test/files/staff.xslt +32 -0
- data/test/files/tlm.html +850 -0
- data/test/helper.rb +70 -0
- data/test/hpricot/files/basic.xhtml +17 -0
- data/test/hpricot/files/boingboing.html +2266 -0
- data/test/hpricot/files/cy0.html +3653 -0
- data/test/hpricot/files/immob.html +400 -0
- data/test/hpricot/files/pace_application.html +1320 -0
- data/test/hpricot/files/tenderlove.html +16 -0
- data/test/hpricot/files/uswebgen.html +220 -0
- data/test/hpricot/files/utf8.html +1054 -0
- data/test/hpricot/files/week9.html +1723 -0
- data/test/hpricot/files/why.xml +19 -0
- data/test/hpricot/load_files.rb +7 -0
- data/test/hpricot/test_alter.rb +67 -0
- data/test/hpricot/test_builder.rb +27 -0
- data/test/hpricot/test_parser.rb +423 -0
- data/test/hpricot/test_paths.rb +15 -0
- data/test/hpricot/test_preserved.rb +78 -0
- data/test/hpricot/test_xml.rb +30 -0
- data/test/html/sax/test_parser.rb +27 -0
- data/test/html/test_builder.rb +78 -0
- data/test/html/test_document.rb +86 -0
- data/test/test_convert_xpath.rb +180 -0
- data/test/test_nokogiri.rb +36 -0
- data/test/test_reader.rb +222 -0
- data/test/test_xslt_transforms.rb +29 -0
- data/test/xml/sax/test_parser.rb +93 -0
- data/test/xml/test_builder.rb +16 -0
- data/test/xml/test_cdata.rb +18 -0
- data/test/xml/test_document.rb +171 -0
- data/test/xml/test_dtd.rb +43 -0
- data/test/xml/test_node.rb +223 -0
- data/test/xml/test_node_set.rb +116 -0
- data/test/xml/test_text.rb +13 -0
- metadata +214 -0
metadata
ADDED
@@ -0,0 +1,214 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tenderlove-nokogiri
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: x86-mswin32-60
|
6
|
+
authors:
|
7
|
+
- Aaron Patterson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-10-29 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: hoe
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.7.0
|
23
|
+
version:
|
24
|
+
description: "Nokogiri (\xE9\x8B\xB8) is an HTML, XML, SAX, and Reader parser."
|
25
|
+
email:
|
26
|
+
- aaronp@rubyforge.org
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- History.txt
|
33
|
+
- Manifest.txt
|
34
|
+
- README.ja.txt
|
35
|
+
- README.txt
|
36
|
+
files:
|
37
|
+
- History.txt
|
38
|
+
- Manifest.txt
|
39
|
+
- README.ja.txt
|
40
|
+
- README.txt
|
41
|
+
- Rakefile
|
42
|
+
- ext/nokogiri/extconf.rb
|
43
|
+
- ext/nokogiri/html_document.c
|
44
|
+
- ext/nokogiri/html_document.h
|
45
|
+
- ext/nokogiri/html_sax_parser.c
|
46
|
+
- ext/nokogiri/html_sax_parser.h
|
47
|
+
- ext/nokogiri/native.c
|
48
|
+
- ext/nokogiri/native.h
|
49
|
+
- ext/nokogiri/xml_cdata.c
|
50
|
+
- ext/nokogiri/xml_cdata.h
|
51
|
+
- ext/nokogiri/xml_document.c
|
52
|
+
- ext/nokogiri/xml_document.h
|
53
|
+
- ext/nokogiri/xml_dtd.c
|
54
|
+
- ext/nokogiri/xml_dtd.h
|
55
|
+
- ext/nokogiri/xml_node.c
|
56
|
+
- ext/nokogiri/xml_node.h
|
57
|
+
- ext/nokogiri/xml_node_set.c
|
58
|
+
- ext/nokogiri/xml_node_set.h
|
59
|
+
- ext/nokogiri/xml_reader.c
|
60
|
+
- ext/nokogiri/xml_reader.h
|
61
|
+
- ext/nokogiri/xml_sax_parser.c
|
62
|
+
- ext/nokogiri/xml_sax_parser.h
|
63
|
+
- ext/nokogiri/xml_syntax_error.c
|
64
|
+
- ext/nokogiri/xml_syntax_error.h
|
65
|
+
- ext/nokogiri/xml_text.c
|
66
|
+
- ext/nokogiri/xml_text.h
|
67
|
+
- ext/nokogiri/xml_xpath.c
|
68
|
+
- ext/nokogiri/xml_xpath.h
|
69
|
+
- ext/nokogiri/xml_xpath_context.c
|
70
|
+
- ext/nokogiri/xml_xpath_context.h
|
71
|
+
- ext/nokogiri/xslt_stylesheet.c
|
72
|
+
- ext/nokogiri/xslt_stylesheet.h
|
73
|
+
- lib/nokogiri.rb
|
74
|
+
- lib/nokogiri/css.rb
|
75
|
+
- lib/nokogiri/css/generated_parser.rb
|
76
|
+
- lib/nokogiri/css/generated_tokenizer.rb
|
77
|
+
- lib/nokogiri/css/node.rb
|
78
|
+
- lib/nokogiri/css/parser.rb
|
79
|
+
- lib/nokogiri/css/parser.y
|
80
|
+
- lib/nokogiri/css/tokenizer.rb
|
81
|
+
- lib/nokogiri/css/tokenizer.rex
|
82
|
+
- lib/nokogiri/css/xpath_visitor.rb
|
83
|
+
- lib/nokogiri/decorators.rb
|
84
|
+
- lib/nokogiri/decorators/hpricot.rb
|
85
|
+
- lib/nokogiri/decorators/hpricot/node.rb
|
86
|
+
- lib/nokogiri/decorators/hpricot/node_set.rb
|
87
|
+
- lib/nokogiri/decorators/hpricot/xpath_visitor.rb
|
88
|
+
- lib/nokogiri/hpricot.rb
|
89
|
+
- lib/nokogiri/html.rb
|
90
|
+
- lib/nokogiri/html/builder.rb
|
91
|
+
- lib/nokogiri/html/document.rb
|
92
|
+
- lib/nokogiri/html/sax/parser.rb
|
93
|
+
- lib/nokogiri/version.rb
|
94
|
+
- lib/nokogiri/xml.rb
|
95
|
+
- lib/nokogiri/xml/after_handler.rb
|
96
|
+
- lib/nokogiri/xml/before_handler.rb
|
97
|
+
- lib/nokogiri/xml/builder.rb
|
98
|
+
- lib/nokogiri/xml/cdata.rb
|
99
|
+
- lib/nokogiri/xml/document.rb
|
100
|
+
- lib/nokogiri/xml/dtd.rb
|
101
|
+
- lib/nokogiri/xml/node.rb
|
102
|
+
- lib/nokogiri/xml/node_set.rb
|
103
|
+
- lib/nokogiri/xml/notation.rb
|
104
|
+
- lib/nokogiri/xml/reader.rb
|
105
|
+
- lib/nokogiri/xml/sax.rb
|
106
|
+
- lib/nokogiri/xml/sax/document.rb
|
107
|
+
- lib/nokogiri/xml/sax/parser.rb
|
108
|
+
- lib/nokogiri/xml/syntax_error.rb
|
109
|
+
- lib/nokogiri/xml/text.rb
|
110
|
+
- lib/nokogiri/xml/xpath.rb
|
111
|
+
- lib/nokogiri/xml/xpath_context.rb
|
112
|
+
- lib/nokogiri/xslt.rb
|
113
|
+
- lib/nokogiri/xslt/stylesheet.rb
|
114
|
+
- nokogiri.gemspec
|
115
|
+
- test/css/test_nthiness.rb
|
116
|
+
- test/css/test_parser.rb
|
117
|
+
- test/css/test_tokenizer.rb
|
118
|
+
- test/css/test_xpath_visitor.rb
|
119
|
+
- test/files/staff.xml
|
120
|
+
- test/files/staff.xslt
|
121
|
+
- test/files/tlm.html
|
122
|
+
- test/helper.rb
|
123
|
+
- test/hpricot/files/basic.xhtml
|
124
|
+
- test/hpricot/files/boingboing.html
|
125
|
+
- test/hpricot/files/cy0.html
|
126
|
+
- test/hpricot/files/immob.html
|
127
|
+
- test/hpricot/files/pace_application.html
|
128
|
+
- test/hpricot/files/tenderlove.html
|
129
|
+
- test/hpricot/files/uswebgen.html
|
130
|
+
- test/hpricot/files/utf8.html
|
131
|
+
- test/hpricot/files/week9.html
|
132
|
+
- test/hpricot/files/why.xml
|
133
|
+
- test/hpricot/load_files.rb
|
134
|
+
- test/hpricot/test_alter.rb
|
135
|
+
- test/hpricot/test_builder.rb
|
136
|
+
- test/hpricot/test_parser.rb
|
137
|
+
- test/hpricot/test_paths.rb
|
138
|
+
- test/hpricot/test_preserved.rb
|
139
|
+
- test/hpricot/test_xml.rb
|
140
|
+
- test/html/sax/test_parser.rb
|
141
|
+
- test/html/test_builder.rb
|
142
|
+
- test/html/test_document.rb
|
143
|
+
- test/test_convert_xpath.rb
|
144
|
+
- test/test_nokogiri.rb
|
145
|
+
- test/test_reader.rb
|
146
|
+
- test/test_xslt_transforms.rb
|
147
|
+
- test/xml/sax/test_parser.rb
|
148
|
+
- test/xml/test_builder.rb
|
149
|
+
- test/xml/test_cdata.rb
|
150
|
+
- test/xml/test_document.rb
|
151
|
+
- test/xml/test_dtd.rb
|
152
|
+
- test/xml/test_node.rb
|
153
|
+
- test/xml/test_node_set.rb
|
154
|
+
- test/xml/test_text.rb
|
155
|
+
- ext/nokogiri/iconv.dll
|
156
|
+
- ext/nokogiri/libexslt.dll
|
157
|
+
- ext/nokogiri/libxml2.dll
|
158
|
+
- ext/nokogiri/libxslt.dll
|
159
|
+
- ext/nokogiri/zlib1.dll
|
160
|
+
- ext/nokogiri/native.so
|
161
|
+
has_rdoc: true
|
162
|
+
homepage: http://github.com/tenderlove/nokogiri/tree/master
|
163
|
+
post_install_message:
|
164
|
+
rdoc_options:
|
165
|
+
- --main
|
166
|
+
- README.txt
|
167
|
+
require_paths:
|
168
|
+
- lib
|
169
|
+
- ext
|
170
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: "0"
|
175
|
+
version:
|
176
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: "0"
|
181
|
+
version:
|
182
|
+
requirements: []
|
183
|
+
|
184
|
+
rubyforge_project: nokogiri
|
185
|
+
rubygems_version: 1.2.0
|
186
|
+
signing_key:
|
187
|
+
specification_version: 2
|
188
|
+
summary: "Nokogiri (\xE9\x8B\xB8) is an HTML, XML, SAX, and Reader parser."
|
189
|
+
test_files:
|
190
|
+
- test/css/test_nthiness.rb
|
191
|
+
- test/css/test_parser.rb
|
192
|
+
- test/css/test_tokenizer.rb
|
193
|
+
- test/css/test_xpath_visitor.rb
|
194
|
+
- test/hpricot/test_alter.rb
|
195
|
+
- test/hpricot/test_builder.rb
|
196
|
+
- test/hpricot/test_parser.rb
|
197
|
+
- test/hpricot/test_paths.rb
|
198
|
+
- test/hpricot/test_preserved.rb
|
199
|
+
- test/hpricot/test_xml.rb
|
200
|
+
- test/html/sax/test_parser.rb
|
201
|
+
- test/html/test_builder.rb
|
202
|
+
- test/html/test_document.rb
|
203
|
+
- test/test_convert_xpath.rb
|
204
|
+
- test/test_nokogiri.rb
|
205
|
+
- test/test_reader.rb
|
206
|
+
- test/test_xslt_transforms.rb
|
207
|
+
- test/xml/sax/test_parser.rb
|
208
|
+
- test/xml/test_builder.rb
|
209
|
+
- test/xml/test_cdata.rb
|
210
|
+
- test/xml/test_document.rb
|
211
|
+
- test/xml/test_dtd.rb
|
212
|
+
- test/xml/test_node.rb
|
213
|
+
- test/xml/test_node_set.rb
|
214
|
+
- test/xml/test_text.rb
|