nokogiri 1.11.0.rc4-arm64-darwin → 1.11.5-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +12 -12
  4. data/LICENSE.md +1 -1
  5. data/README.md +168 -91
  6. data/dependencies.yml +12 -12
  7. data/ext/nokogiri/depend +34 -474
  8. data/ext/nokogiri/extconf.rb +270 -183
  9. data/ext/nokogiri/html_document.c +10 -15
  10. data/ext/nokogiri/html_element_description.c +84 -71
  11. data/ext/nokogiri/html_entity_lookup.c +21 -16
  12. data/ext/nokogiri/html_sax_parser_context.c +67 -64
  13. data/ext/nokogiri/html_sax_push_parser.c +42 -34
  14. data/ext/nokogiri/include/libxml2/libxml/c14n.h +6 -4
  15. data/ext/nokogiri/include/libxml2/libxml/parser.h +9 -7
  16. data/ext/nokogiri/include/libxml2/libxml/tree.h +3 -3
  17. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +2 -0
  18. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +39 -115
  19. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +1 -1
  20. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +6 -6
  21. data/ext/nokogiri/include/libxml2/libxml/xpath.h +1 -3
  22. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  23. data/ext/nokogiri/nokogiri.c +190 -60
  24. data/ext/nokogiri/nokogiri.h +158 -75
  25. data/ext/nokogiri/test_global_handlers.c +40 -0
  26. data/ext/nokogiri/xml_attr.c +15 -15
  27. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  28. data/ext/nokogiri/xml_cdata.c +13 -18
  29. data/ext/nokogiri/xml_comment.c +19 -26
  30. data/ext/nokogiri/xml_document.c +246 -188
  31. data/ext/nokogiri/xml_document_fragment.c +13 -15
  32. data/ext/nokogiri/xml_dtd.c +54 -48
  33. data/ext/nokogiri/xml_element_content.c +30 -27
  34. data/ext/nokogiri/xml_element_decl.c +22 -22
  35. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  36. data/ext/nokogiri/xml_entity_decl.c +32 -30
  37. data/ext/nokogiri/xml_entity_reference.c +16 -18
  38. data/ext/nokogiri/xml_namespace.c +56 -49
  39. data/ext/nokogiri/xml_node.c +371 -320
  40. data/ext/nokogiri/xml_node_set.c +168 -156
  41. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  42. data/ext/nokogiri/xml_reader.c +191 -157
  43. data/ext/nokogiri/xml_relax_ng.c +29 -23
  44. data/ext/nokogiri/xml_sax_parser.c +117 -112
  45. data/ext/nokogiri/xml_sax_parser_context.c +101 -84
  46. data/ext/nokogiri/xml_sax_push_parser.c +36 -27
  47. data/ext/nokogiri/xml_schema.c +48 -42
  48. data/ext/nokogiri/xml_syntax_error.c +42 -21
  49. data/ext/nokogiri/xml_text.c +13 -17
  50. data/ext/nokogiri/xml_xpath_context.c +134 -127
  51. data/ext/nokogiri/xslt_stylesheet.c +157 -157
  52. data/lib/nokogiri.rb +2 -6
  53. data/lib/nokogiri/2.5/nokogiri.bundle +0 -0
  54. data/lib/nokogiri/2.6/nokogiri.bundle +0 -0
  55. data/lib/nokogiri/2.7/nokogiri.bundle +0 -0
  56. data/lib/nokogiri/3.0/nokogiri.bundle +0 -0
  57. data/lib/nokogiri/css/parser.rb +1 -1
  58. data/lib/nokogiri/extension.rb +26 -0
  59. data/lib/nokogiri/html/document_fragment.rb +15 -15
  60. data/lib/nokogiri/version/constant.rb +1 -1
  61. data/lib/nokogiri/version/info.rb +32 -8
  62. data/lib/nokogiri/xml/document.rb +74 -28
  63. data/lib/nokogiri/xml/node.rb +39 -42
  64. data/lib/nokogiri/xml/reader.rb +2 -9
  65. data/lib/nokogiri/xml/xpath.rb +1 -3
  66. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  67. metadata +62 -160
  68. data/ext/nokogiri/html_document.h +0 -10
  69. data/ext/nokogiri/html_element_description.h +0 -10
  70. data/ext/nokogiri/html_entity_lookup.h +0 -8
  71. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  72. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  73. data/ext/nokogiri/xml_attr.h +0 -9
  74. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  75. data/ext/nokogiri/xml_cdata.h +0 -9
  76. data/ext/nokogiri/xml_comment.h +0 -9
  77. data/ext/nokogiri/xml_document.h +0 -23
  78. data/ext/nokogiri/xml_document_fragment.h +0 -10
  79. data/ext/nokogiri/xml_dtd.h +0 -10
  80. data/ext/nokogiri/xml_element_content.h +0 -10
  81. data/ext/nokogiri/xml_element_decl.h +0 -9
  82. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  83. data/ext/nokogiri/xml_entity_decl.h +0 -10
  84. data/ext/nokogiri/xml_entity_reference.h +0 -9
  85. data/ext/nokogiri/xml_io.c +0 -63
  86. data/ext/nokogiri/xml_io.h +0 -11
  87. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  88. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  89. data/ext/nokogiri/xml_namespace.h +0 -14
  90. data/ext/nokogiri/xml_node.h +0 -13
  91. data/ext/nokogiri/xml_node_set.h +0 -12
  92. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  93. data/ext/nokogiri/xml_reader.h +0 -10
  94. data/ext/nokogiri/xml_relax_ng.h +0 -9
  95. data/ext/nokogiri/xml_sax_parser.h +0 -39
  96. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  97. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  98. data/ext/nokogiri/xml_schema.h +0 -9
  99. data/ext/nokogiri/xml_syntax_error.h +0 -13
  100. data/ext/nokogiri/xml_text.h +0 -9
  101. data/ext/nokogiri/xml_xpath_context.h +0 -10
  102. data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -3,9 +3,7 @@ require 'nokogiri/xml/xpath/syntax_error'
3
3
 
4
4
  module Nokogiri
5
5
  module XML
6
- class XPath
7
- # The Nokogiri::XML::Document tied to this XPath instance
8
- attr_accessor :document
6
+ module XPath
9
7
  end
10
8
  end
11
9
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
  module Nokogiri
3
3
  module XML
4
- class XPath
4
+ module XPath
5
5
  class SyntaxError < XML::SyntaxError
6
6
  def to_s
7
7
  [super.chomp, str1].compact.join(': ')
metadata CHANGED
@@ -1,20 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0.rc4
4
+ version: 1.11.5
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Mike Dalessio
8
8
  - Aaron Patterson
9
- - John Shahid
10
9
  - Yoko Harada
11
10
  - Akinori MUSHA
11
+ - John Shahid
12
+ - Karol Bucek
12
13
  - Lars Kanis
13
- - Tim Elliott
14
+ - Sergio Arbeo
15
+ - Timothy Elliott
16
+ - Nobuyoshi Nakada
14
17
  autorequire:
15
18
  bindir: bin
16
19
  cert_chain: []
17
- date: 2020-12-29 00:00:00.000000000 Z
20
+ date: 2021-05-20 00:00:00.000000000 Z
18
21
  dependencies:
19
22
  - !ruby/object:Gem::Dependency
20
23
  name: racc
@@ -31,109 +34,47 @@ dependencies:
31
34
  - !ruby/object:Gem::Version
32
35
  version: '1.4'
33
36
  - !ruby/object:Gem::Dependency
34
- name: concourse
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '0.41'
40
- type: :development
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - "~>"
45
- - !ruby/object:Gem::Version
46
- version: '0.41'
47
- - !ruby/object:Gem::Dependency
48
- name: hoe
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: '3.22'
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: 3.22.1
57
- type: :development
58
- prerelease: false
59
- version_requirements: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - "~>"
62
- - !ruby/object:Gem::Version
63
- version: '3.22'
64
- - - ">="
65
- - !ruby/object:Gem::Version
66
- version: 3.22.1
67
- - !ruby/object:Gem::Dependency
68
- name: hoe-bundler
37
+ name: bundler
69
38
  requirement: !ruby/object:Gem::Requirement
70
39
  requirements:
71
40
  - - "~>"
72
41
  - !ruby/object:Gem::Version
73
- version: '1.2'
42
+ version: '2.2'
74
43
  type: :development
75
44
  prerelease: false
76
45
  version_requirements: !ruby/object:Gem::Requirement
77
46
  requirements:
78
47
  - - "~>"
79
48
  - !ruby/object:Gem::Version
80
- version: '1.2'
49
+ version: '2.2'
81
50
  - !ruby/object:Gem::Dependency
82
- name: hoe-debugging
83
- requirement: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - "~>"
86
- - !ruby/object:Gem::Version
87
- version: '2.0'
88
- type: :development
89
- prerelease: false
90
- version_requirements: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - "~>"
93
- - !ruby/object:Gem::Version
94
- version: '2.0'
95
- - !ruby/object:Gem::Dependency
96
- name: hoe-gemspec
97
- requirement: !ruby/object:Gem::Requirement
98
- requirements:
99
- - - "~>"
100
- - !ruby/object:Gem::Version
101
- version: '1.0'
102
- type: :development
103
- prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- requirements:
106
- - - "~>"
107
- - !ruby/object:Gem::Version
108
- version: '1.0'
109
- - !ruby/object:Gem::Dependency
110
- name: hoe-git
51
+ name: concourse
111
52
  requirement: !ruby/object:Gem::Requirement
112
53
  requirements:
113
54
  - - "~>"
114
55
  - !ruby/object:Gem::Version
115
- version: '1.6'
56
+ version: '0.41'
116
57
  type: :development
117
58
  prerelease: false
118
59
  version_requirements: !ruby/object:Gem::Requirement
119
60
  requirements:
120
61
  - - "~>"
121
62
  - !ruby/object:Gem::Version
122
- version: '1.6'
63
+ version: '0.41'
123
64
  - !ruby/object:Gem::Dependency
124
65
  name: hoe-markdown
125
66
  requirement: !ruby/object:Gem::Requirement
126
67
  requirements:
127
68
  - - "~>"
128
69
  - !ruby/object:Gem::Version
129
- version: '1.1'
70
+ version: '1.4'
130
71
  type: :development
131
72
  prerelease: false
132
73
  version_requirements: !ruby/object:Gem::Requirement
133
74
  requirements:
134
75
  - - "~>"
135
76
  - !ruby/object:Gem::Version
136
- version: '1.1'
77
+ version: '1.4'
137
78
  - !ruby/object:Gem::Dependency
138
79
  name: minitest
139
80
  requirement: !ruby/object:Gem::Requirement
@@ -224,95 +165,88 @@ dependencies:
224
165
  requirements:
225
166
  - - "~>"
226
167
  - !ruby/object:Gem::Version
227
- version: '0.88'
168
+ version: '1.7'
228
169
  type: :development
229
170
  prerelease: false
230
171
  version_requirements: !ruby/object:Gem::Requirement
231
172
  requirements:
232
173
  - - "~>"
233
174
  - !ruby/object:Gem::Version
234
- version: '0.88'
175
+ version: '1.7'
235
176
  - !ruby/object:Gem::Dependency
236
177
  name: simplecov
237
178
  requirement: !ruby/object:Gem::Requirement
238
179
  requirements:
239
180
  - - "~>"
240
181
  - !ruby/object:Gem::Version
241
- version: 0.17.0
182
+ version: '0.20'
242
183
  type: :development
243
184
  prerelease: false
244
185
  version_requirements: !ruby/object:Gem::Requirement
245
186
  requirements:
246
187
  - - "~>"
247
188
  - !ruby/object:Gem::Version
248
- version: 0.17.0
189
+ version: '0.20'
249
190
  - !ruby/object:Gem::Dependency
250
- name: rdoc
191
+ name: yard
251
192
  requirement: !ruby/object:Gem::Requirement
252
193
  requirements:
253
- - - ">="
254
- - !ruby/object:Gem::Version
255
- version: '4.0'
256
- - - "<"
194
+ - - "~>"
257
195
  - !ruby/object:Gem::Version
258
- version: '7'
196
+ version: '0.9'
259
197
  type: :development
260
198
  prerelease: false
261
199
  version_requirements: !ruby/object:Gem::Requirement
262
200
  requirements:
263
- - - ">="
264
- - !ruby/object:Gem::Version
265
- version: '4.0'
266
- - - "<"
201
+ - - "~>"
267
202
  - !ruby/object:Gem::Version
268
- version: '7'
269
- description: |-
270
- Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
271
- Nokogiri's many features is the ability to search documents via XPath
272
- or CSS3 selectors.
203
+ version: '0.9'
204
+ description: |
205
+ Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
206
+ sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
207
+ fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
273
208
  email: nokogiri-talk@googlegroups.com
274
209
  executables:
275
210
  - nokogiri
276
211
  extensions: []
277
212
  extra_rdoc_files:
278
- - LICENSE-DEPENDENCIES.md
279
- - LICENSE.md
280
- - README.md
281
- - ext/nokogiri/html_document.c
282
- - ext/nokogiri/html_element_description.c
283
- - ext/nokogiri/html_entity_lookup.c
284
- - ext/nokogiri/html_sax_parser_context.c
285
- - ext/nokogiri/html_sax_push_parser.c
286
- - ext/nokogiri/nokogiri.c
213
+ - ext/nokogiri/xml_dtd.c
214
+ - ext/nokogiri/xml_xpath_context.c
287
215
  - ext/nokogiri/xml_attr.c
288
- - ext/nokogiri/xml_attribute_decl.c
289
- - ext/nokogiri/xml_cdata.c
216
+ - ext/nokogiri/libxml2_backwards_compat.c
290
217
  - ext/nokogiri/xml_comment.c
291
- - ext/nokogiri/xml_document.c
292
- - ext/nokogiri/xml_document_fragment.c
293
- - ext/nokogiri/xml_dtd.c
218
+ - ext/nokogiri/nokogiri.c
219
+ - ext/nokogiri/xml_sax_parser_context.c
220
+ - ext/nokogiri/xml_node_set.c
221
+ - ext/nokogiri/xml_reader.c
222
+ - ext/nokogiri/xml_cdata.c
294
223
  - ext/nokogiri/xml_element_content.c
224
+ - ext/nokogiri/html_entity_lookup.c
225
+ - ext/nokogiri/xml_namespace.c
226
+ - ext/nokogiri/xml_document.c
295
227
  - ext/nokogiri/xml_element_decl.c
228
+ - ext/nokogiri/xml_schema.c
229
+ - ext/nokogiri/html_document.c
230
+ - ext/nokogiri/xml_processing_instruction.c
231
+ - ext/nokogiri/xml_text.c
232
+ - ext/nokogiri/xml_syntax_error.c
233
+ - ext/nokogiri/xml_document_fragment.c
234
+ - ext/nokogiri/xml_sax_push_parser.c
296
235
  - ext/nokogiri/xml_encoding_handler.c
236
+ - ext/nokogiri/html_sax_push_parser.c
237
+ - ext/nokogiri/xml_relax_ng.c
297
238
  - ext/nokogiri/xml_entity_decl.c
298
- - ext/nokogiri/xml_entity_reference.c
299
- - ext/nokogiri/xml_io.c
300
- - ext/nokogiri/xml_libxml2_hacks.c
301
- - ext/nokogiri/xml_namespace.c
239
+ - ext/nokogiri/test_global_handlers.c
302
240
  - ext/nokogiri/xml_node.c
303
- - ext/nokogiri/xml_node_set.c
304
- - ext/nokogiri/xml_processing_instruction.c
305
- - ext/nokogiri/xml_reader.c
306
- - ext/nokogiri/xml_relax_ng.c
307
- - ext/nokogiri/xml_sax_parser.c
308
- - ext/nokogiri/xml_sax_parser_context.c
309
- - ext/nokogiri/xml_sax_push_parser.c
310
- - ext/nokogiri/xml_schema.c
311
- - ext/nokogiri/xml_syntax_error.c
312
- - ext/nokogiri/xml_text.c
313
- - ext/nokogiri/xml_xpath_context.c
241
+ - ext/nokogiri/xml_entity_reference.c
314
242
  - ext/nokogiri/xslt_stylesheet.c
243
+ - ext/nokogiri/html_sax_parser_context.c
244
+ - ext/nokogiri/xml_sax_parser.c
245
+ - ext/nokogiri/xml_attribute_decl.c
246
+ - ext/nokogiri/html_element_description.c
247
+ - README.md
315
248
  files:
249
+ - Gemfile
316
250
  - LICENSE-DEPENDENCIES.md
317
251
  - LICENSE.md
318
252
  - README.md
@@ -321,15 +255,10 @@ files:
321
255
  - ext/nokogiri/depend
322
256
  - ext/nokogiri/extconf.rb
323
257
  - ext/nokogiri/html_document.c
324
- - ext/nokogiri/html_document.h
325
258
  - ext/nokogiri/html_element_description.c
326
- - ext/nokogiri/html_element_description.h
327
259
  - ext/nokogiri/html_entity_lookup.c
328
- - ext/nokogiri/html_entity_lookup.h
329
260
  - ext/nokogiri/html_sax_parser_context.c
330
- - ext/nokogiri/html_sax_parser_context.h
331
261
  - ext/nokogiri/html_sax_push_parser.c
332
- - ext/nokogiri/html_sax_push_parser.h
333
262
  - ext/nokogiri/include/libexslt/exslt.h
334
263
  - ext/nokogiri/include/libexslt/exsltconfig.h
335
264
  - ext/nokogiri/include/libexslt/exsltexports.h
@@ -401,64 +330,36 @@ files:
401
330
  - ext/nokogiri/include/libxslt/xsltexports.h
402
331
  - ext/nokogiri/include/libxslt/xsltlocale.h
403
332
  - ext/nokogiri/include/libxslt/xsltutils.h
333
+ - ext/nokogiri/libxml2_backwards_compat.c
404
334
  - ext/nokogiri/nokogiri.c
405
335
  - ext/nokogiri/nokogiri.h
336
+ - ext/nokogiri/test_global_handlers.c
406
337
  - ext/nokogiri/xml_attr.c
407
- - ext/nokogiri/xml_attr.h
408
338
  - ext/nokogiri/xml_attribute_decl.c
409
- - ext/nokogiri/xml_attribute_decl.h
410
339
  - ext/nokogiri/xml_cdata.c
411
- - ext/nokogiri/xml_cdata.h
412
340
  - ext/nokogiri/xml_comment.c
413
- - ext/nokogiri/xml_comment.h
414
341
  - ext/nokogiri/xml_document.c
415
- - ext/nokogiri/xml_document.h
416
342
  - ext/nokogiri/xml_document_fragment.c
417
- - ext/nokogiri/xml_document_fragment.h
418
343
  - ext/nokogiri/xml_dtd.c
419
- - ext/nokogiri/xml_dtd.h
420
344
  - ext/nokogiri/xml_element_content.c
421
- - ext/nokogiri/xml_element_content.h
422
345
  - ext/nokogiri/xml_element_decl.c
423
- - ext/nokogiri/xml_element_decl.h
424
346
  - ext/nokogiri/xml_encoding_handler.c
425
- - ext/nokogiri/xml_encoding_handler.h
426
347
  - ext/nokogiri/xml_entity_decl.c
427
- - ext/nokogiri/xml_entity_decl.h
428
348
  - ext/nokogiri/xml_entity_reference.c
429
- - ext/nokogiri/xml_entity_reference.h
430
- - ext/nokogiri/xml_io.c
431
- - ext/nokogiri/xml_io.h
432
- - ext/nokogiri/xml_libxml2_hacks.c
433
- - ext/nokogiri/xml_libxml2_hacks.h
434
349
  - ext/nokogiri/xml_namespace.c
435
- - ext/nokogiri/xml_namespace.h
436
350
  - ext/nokogiri/xml_node.c
437
- - ext/nokogiri/xml_node.h
438
351
  - ext/nokogiri/xml_node_set.c
439
- - ext/nokogiri/xml_node_set.h
440
352
  - ext/nokogiri/xml_processing_instruction.c
441
- - ext/nokogiri/xml_processing_instruction.h
442
353
  - ext/nokogiri/xml_reader.c
443
- - ext/nokogiri/xml_reader.h
444
354
  - ext/nokogiri/xml_relax_ng.c
445
- - ext/nokogiri/xml_relax_ng.h
446
355
  - ext/nokogiri/xml_sax_parser.c
447
- - ext/nokogiri/xml_sax_parser.h
448
356
  - ext/nokogiri/xml_sax_parser_context.c
449
- - ext/nokogiri/xml_sax_parser_context.h
450
357
  - ext/nokogiri/xml_sax_push_parser.c
451
- - ext/nokogiri/xml_sax_push_parser.h
452
358
  - ext/nokogiri/xml_schema.c
453
- - ext/nokogiri/xml_schema.h
454
359
  - ext/nokogiri/xml_syntax_error.c
455
- - ext/nokogiri/xml_syntax_error.h
456
360
  - ext/nokogiri/xml_text.c
457
- - ext/nokogiri/xml_text.h
458
361
  - ext/nokogiri/xml_xpath_context.c
459
- - ext/nokogiri/xml_xpath_context.h
460
362
  - ext/nokogiri/xslt_stylesheet.c
461
- - ext/nokogiri/xslt_stylesheet.h
462
363
  - lib/nokogiri.rb
463
364
  - lib/nokogiri/2.5/nokogiri.bundle
464
365
  - lib/nokogiri/2.6/nokogiri.bundle
@@ -474,6 +375,7 @@ files:
474
375
  - lib/nokogiri/css/tokenizer.rex
475
376
  - lib/nokogiri/css/xpath_visitor.rb
476
377
  - lib/nokogiri/decorators/slop.rb
378
+ - lib/nokogiri/extension.rb
477
379
  - lib/nokogiri/html.rb
478
380
  - lib/nokogiri/html/builder.rb
479
381
  - lib/nokogiri/html/document.rb
@@ -554,12 +456,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
554
456
  version: 3.1.dev
555
457
  required_rubygems_version: !ruby/object:Gem::Requirement
556
458
  requirements:
557
- - - ">"
459
+ - - ">="
558
460
  - !ruby/object:Gem::Version
559
- version: 1.3.1
461
+ version: '0'
560
462
  requirements: []
561
463
  rubygems_version: 3.2.3
562
464
  signing_key:
563
465
  specification_version: 4
564
- summary: Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
466
+ summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
565
467
  test_files: []
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_DOCUMENT
2
- #define NOKOGIRI_HTML_DOCUMENT
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_document();
7
-
8
- extern VALUE cNokogiriHtmlDocument ;
9
-
10
- #endif
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_ELEMENT_DESCRIPTION
2
- #define NOKOGIRI_HTML_ELEMENT_DESCRIPTION
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_element_description();
7
-
8
- extern VALUE cNokogiriHtmlElementDescription ;
9
-
10
- #endif
@@ -1,8 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_ENTITY_LOOKUP
2
- #define NOKOGIRI_HTML_ENTITY_LOOKUP
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_entity_lookup();
7
-
8
- #endif
@@ -1,11 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_SAX_PARSER_CONTEXT
2
- #define NOKOGIRI_HTML_SAX_PARSER_CONTEXT
3
-
4
- #include <nokogiri.h>
5
-
6
- extern VALUE cNokogiriHtmlSaxParserContext;
7
-
8
- void init_html_sax_parser_context();
9
-
10
- #endif
11
-