nokogiri 1.11.0.rc3-x64-mingw32 → 1.11.0.rc4-x64-mingw32

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 (110) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +1015 -947
  3. data/README.md +1 -1
  4. data/ext/nokogiri/depend +476 -357
  5. data/ext/nokogiri/extconf.rb +441 -321
  6. data/ext/nokogiri/html_document.c +79 -78
  7. data/ext/nokogiri/html_sax_parser_context.c +2 -2
  8. data/ext/nokogiri/include/libexslt/exslt.h +102 -0
  9. data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
  10. data/ext/nokogiri/include/libexslt/exsltexports.h +140 -0
  11. data/ext/nokogiri/include/libxml2/libxml/DOCBparser.h +96 -0
  12. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +306 -0
  13. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
  14. data/ext/nokogiri/include/libxml2/libxml/SAX.h +173 -0
  15. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +178 -0
  16. data/ext/nokogiri/include/libxml2/libxml/c14n.h +126 -0
  17. data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
  18. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
  19. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
  20. data/ext/nokogiri/include/libxml2/libxml/dict.h +79 -0
  21. data/ext/nokogiri/include/libxml2/libxml/encoding.h +245 -0
  22. data/ext/nokogiri/include/libxml2/libxml/entities.h +151 -0
  23. data/ext/nokogiri/include/libxml2/libxml/globals.h +508 -0
  24. data/ext/nokogiri/include/libxml2/libxml/hash.h +236 -0
  25. data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
  26. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +163 -0
  27. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +81 -0
  28. data/ext/nokogiri/include/libxml2/libxml/parser.h +1241 -0
  29. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +644 -0
  30. data/ext/nokogiri/include/libxml2/libxml/pattern.h +100 -0
  31. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +217 -0
  32. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +958 -0
  33. data/ext/nokogiri/include/libxml2/libxml/schematron.h +142 -0
  34. data/ext/nokogiri/include/libxml2/libxml/threads.h +89 -0
  35. data/ext/nokogiri/include/libxml2/libxml/tree.h +1311 -0
  36. data/ext/nokogiri/include/libxml2/libxml/uri.h +94 -0
  37. data/ext/nokogiri/include/libxml2/libxml/valid.h +458 -0
  38. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +129 -0
  39. data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
  40. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +366 -0
  41. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
  42. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +945 -0
  43. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +153 -0
  44. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +224 -0
  45. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
  46. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +428 -0
  47. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +222 -0
  48. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +88 -0
  49. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +246 -0
  50. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +151 -0
  51. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
  52. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +202 -0
  53. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +485 -0
  54. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +488 -0
  55. data/ext/nokogiri/include/libxml2/libxml/xpath.h +566 -0
  56. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +632 -0
  57. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +114 -0
  58. data/ext/nokogiri/include/libxslt/attributes.h +38 -0
  59. data/ext/nokogiri/include/libxslt/documents.h +93 -0
  60. data/ext/nokogiri/include/libxslt/extensions.h +262 -0
  61. data/ext/nokogiri/include/libxslt/extra.h +72 -0
  62. data/ext/nokogiri/include/libxslt/functions.h +78 -0
  63. data/ext/nokogiri/include/libxslt/imports.h +75 -0
  64. data/ext/nokogiri/include/libxslt/keys.h +53 -0
  65. data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
  66. data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
  67. data/ext/nokogiri/include/libxslt/pattern.h +84 -0
  68. data/ext/nokogiri/include/libxslt/preproc.h +43 -0
  69. data/ext/nokogiri/include/libxslt/security.h +104 -0
  70. data/ext/nokogiri/include/libxslt/templates.h +77 -0
  71. data/ext/nokogiri/include/libxslt/transform.h +207 -0
  72. data/ext/nokogiri/include/libxslt/variables.h +118 -0
  73. data/ext/nokogiri/include/libxslt/xslt.h +110 -0
  74. data/ext/nokogiri/include/libxslt/xsltInternals.h +1978 -0
  75. data/ext/nokogiri/include/libxslt/xsltconfig.h +180 -0
  76. data/ext/nokogiri/include/libxslt/xsltexports.h +142 -0
  77. data/ext/nokogiri/include/libxslt/xsltlocale.h +76 -0
  78. data/ext/nokogiri/include/libxslt/xsltutils.h +313 -0
  79. data/ext/nokogiri/nokogiri.c +34 -46
  80. data/ext/nokogiri/nokogiri.h +22 -26
  81. data/ext/nokogiri/xml_document.c +2 -2
  82. data/ext/nokogiri/xml_node.c +1 -1
  83. data/ext/nokogiri/xml_node_set.c +1 -1
  84. data/ext/nokogiri/xml_relax_ng.c +29 -11
  85. data/ext/nokogiri/xml_sax_parser.c +2 -7
  86. data/ext/nokogiri/xml_sax_parser_context.c +2 -2
  87. data/ext/nokogiri/xml_schema.c +55 -13
  88. data/ext/nokogiri/xml_xpath_context.c +80 -4
  89. data/ext/nokogiri/xslt_stylesheet.c +1 -4
  90. data/lib/nokogiri.rb +1 -1
  91. data/lib/nokogiri/2.5/nokogiri.so +0 -0
  92. data/lib/nokogiri/2.6/nokogiri.so +0 -0
  93. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  94. data/lib/nokogiri/3.0/nokogiri.so +0 -0
  95. data/lib/nokogiri/css/parser.rb +3 -3
  96. data/lib/nokogiri/css/parser.y +2 -2
  97. data/lib/nokogiri/css/xpath_visitor.rb +70 -42
  98. data/lib/nokogiri/html/document.rb +12 -26
  99. data/lib/nokogiri/version.rb +2 -149
  100. data/lib/nokogiri/version/constant.rb +5 -0
  101. data/lib/nokogiri/version/info.rb +182 -0
  102. data/lib/nokogiri/xml/document.rb +17 -7
  103. data/lib/nokogiri/xml/document_fragment.rb +4 -6
  104. data/lib/nokogiri/xml/node.rb +50 -27
  105. data/lib/nokogiri/xml/parse_options.rb +6 -0
  106. data/lib/nokogiri/xml/relax_ng.rb +6 -2
  107. data/lib/nokogiri/xml/schema.rb +12 -4
  108. data/lib/nokogiri/xml/searchable.rb +3 -1
  109. metadata +105 -28
  110. data/lib/nokogiri/2.4/nokogiri.so +0 -0
@@ -73,6 +73,8 @@ module Nokogiri
73
73
  DEFAULT_XML = RECOVER | NONET
74
74
  # the default options used for parsing HTML documents
75
75
  DEFAULT_HTML = RECOVER | NOERROR | NOWARNING | NONET
76
+ # the default options used for parsing XML schemas
77
+ DEFAULT_SCHEMA = NONET
76
78
 
77
79
  attr_accessor :options
78
80
  def initialize options = STRICT
@@ -107,6 +109,10 @@ module Nokogiri
107
109
  @options & RECOVER == STRICT
108
110
  end
109
111
 
112
+ def ==(other)
113
+ other.to_i == to_i
114
+ end
115
+
110
116
  alias :to_i :options
111
117
 
112
118
  def inspect
@@ -5,8 +5,8 @@ module Nokogiri
5
5
  ###
6
6
  # Create a new Nokogiri::XML::RelaxNG document from +string_or_io+.
7
7
  # See Nokogiri::XML::RelaxNG for an example.
8
- def RelaxNG string_or_io
9
- RelaxNG.new(string_or_io)
8
+ def RelaxNG(string_or_io, options = ParseOptions::DEFAULT_SCHEMA)
9
+ RelaxNG.new(string_or_io, options)
10
10
  end
11
11
  end
12
12
 
@@ -27,6 +27,10 @@ module Nokogiri
27
27
  # end
28
28
  #
29
29
  # The list of errors are Nokogiri::XML::SyntaxError objects.
30
+ #
31
+ # NOTE: RelaxNG input is always treated as TRUSTED documents, meaning that they will cause the
32
+ # underlying parsing libraries to access network resources. This is counter to Nokogiri's
33
+ # "untrusted by default" security policy, but is a limitation of the underlying libraries.
30
34
  class RelaxNG < Nokogiri::XML::Schema
31
35
  end
32
36
  end
@@ -5,8 +5,8 @@ module Nokogiri
5
5
  ###
6
6
  # Create a new Nokogiri::XML::Schema object using a +string_or_io+
7
7
  # object.
8
- def Schema string_or_io
9
- Schema.new(string_or_io)
8
+ def Schema(string_or_io, options = ParseOptions::DEFAULT_SCHEMA)
9
+ Schema.new(string_or_io, options)
10
10
  end
11
11
  end
12
12
 
@@ -27,15 +27,23 @@ module Nokogiri
27
27
  # end
28
28
  #
29
29
  # The list of errors are Nokogiri::XML::SyntaxError objects.
30
+ #
31
+ # NOTE: As of v1.11.0, Schema treats inputs as UNTRUSTED by default, and so external entities
32
+ # are not resolved from the network (`http://` or `ftp://`). Previously, parsing treated
33
+ # documents as "trusted" by default which was counter to Nokogiri's "untrusted by default"
34
+ # security policy. If a document is trusted, then the caller may turn off the NONET option via
35
+ # the ParseOptions to re-enable external entity resolution over a network connection.
30
36
  class Schema
31
37
  # Errors while parsing the schema file
32
38
  attr_accessor :errors
39
+ # The Nokogiri::XML::ParseOptions used to parse the schema
40
+ attr_accessor :parse_options
33
41
 
34
42
  ###
35
43
  # Create a new Nokogiri::XML::Schema object using a +string_or_io+
36
44
  # object.
37
- def self.new string_or_io
38
- from_document Nokogiri::XML(string_or_io)
45
+ def self.new string_or_io, options = ParseOptions::DEFAULT_SCHEMA
46
+ from_document(Nokogiri::XML(string_or_io), options)
39
47
  end
40
48
 
41
49
  ###
@@ -210,8 +210,10 @@ module Nokogiri
210
210
  end
211
211
 
212
212
  def xpath_query_from_css_rule(rule, ns)
213
+ visitor = Nokogiri::CSS::XPathVisitorOptimallyUseBuiltins.new
213
214
  self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
214
- CSS.xpath_for(rule.to_s, :prefix => implied_xpath_context, :ns => ns)
215
+ CSS.xpath_for(rule.to_s, {:prefix => implied_xpath_context, :ns => ns,
216
+ :visitor => visitor})
215
217
  end.join(" | ")
216
218
  end
217
219
 
metadata CHANGED
@@ -1,35 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0.rc3
4
+ version: 1.11.0.rc4
5
5
  platform: x64-mingw32
6
6
  authors:
7
- - Aaron Patterson
8
7
  - Mike Dalessio
8
+ - Aaron Patterson
9
+ - John Shahid
9
10
  - Yoko Harada
10
- - Tim Elliott
11
11
  - Akinori MUSHA
12
- - John Shahid
13
12
  - Lars Kanis
13
+ - Tim Elliott
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2020-09-08 00:00:00.000000000 Z
17
+ date: 2020-12-29 00:00:00.000000000 Z
18
18
  dependencies:
19
+ - !ruby/object:Gem::Dependency
20
+ name: racc
21
+ requirement: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.4'
26
+ type: :runtime
27
+ prerelease: false
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.4'
19
33
  - !ruby/object:Gem::Dependency
20
34
  name: concourse
21
35
  requirement: !ruby/object:Gem::Requirement
22
36
  requirements:
23
37
  - - "~>"
24
38
  - !ruby/object:Gem::Version
25
- version: '0.34'
39
+ version: '0.41'
26
40
  type: :development
27
41
  prerelease: false
28
42
  version_requirements: !ruby/object:Gem::Requirement
29
43
  requirements:
30
44
  - - "~>"
31
45
  - !ruby/object:Gem::Version
32
- version: '0.34'
46
+ version: '0.41'
33
47
  - !ruby/object:Gem::Dependency
34
48
  name: hoe
35
49
  requirement: !ruby/object:Gem::Requirement
@@ -135,19 +149,19 @@ dependencies:
135
149
  - !ruby/object:Gem::Version
136
150
  version: '5.8'
137
151
  - !ruby/object:Gem::Dependency
138
- name: racc
152
+ name: minitest-reporters
139
153
  requirement: !ruby/object:Gem::Requirement
140
154
  requirements:
141
155
  - - "~>"
142
156
  - !ruby/object:Gem::Version
143
- version: 1.4.14
157
+ version: '1.4'
144
158
  type: :development
145
159
  prerelease: false
146
160
  version_requirements: !ruby/object:Gem::Requirement
147
161
  requirements:
148
162
  - - "~>"
149
163
  - !ruby/object:Gem::Version
150
- version: 1.4.14
164
+ version: '1.4'
151
165
  - !ruby/object:Gem::Dependency
152
166
  name: rake
153
167
  requirement: !ruby/object:Gem::Requirement
@@ -182,14 +196,14 @@ dependencies:
182
196
  requirements:
183
197
  - - "~>"
184
198
  - !ruby/object:Gem::Version
185
- version: '1.0'
199
+ version: '1.1'
186
200
  type: :development
187
201
  prerelease: false
188
202
  version_requirements: !ruby/object:Gem::Requirement
189
203
  requirements:
190
204
  - - "~>"
191
205
  - !ruby/object:Gem::Version
192
- version: '1.0'
206
+ version: '1.1'
193
207
  - !ruby/object:Gem::Dependency
194
208
  name: rexical
195
209
  requirement: !ruby/object:Gem::Requirement
@@ -256,14 +270,7 @@ description: |-
256
270
  Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
257
271
  Nokogiri's many features is the ability to search documents via XPath
258
272
  or CSS3 selectors.
259
- email:
260
- - aaronp@rubyforge.org
261
- - mike.dalessio@gmail.com
262
- - yokolet@gmail.com
263
- - tle@holymonkey.com
264
- - knu@idaemons.org
265
- - jvshahid@gmail.com
266
- - lars@greiz-reinsdorf.de
273
+ email: nokogiri-talk@googlegroups.com
267
274
  executables:
268
275
  - nokogiri
269
276
  extensions: []
@@ -323,6 +330,77 @@ files:
323
330
  - ext/nokogiri/html_sax_parser_context.h
324
331
  - ext/nokogiri/html_sax_push_parser.c
325
332
  - ext/nokogiri/html_sax_push_parser.h
333
+ - ext/nokogiri/include/libexslt/exslt.h
334
+ - ext/nokogiri/include/libexslt/exsltconfig.h
335
+ - ext/nokogiri/include/libexslt/exsltexports.h
336
+ - ext/nokogiri/include/libxml2/libxml/DOCBparser.h
337
+ - ext/nokogiri/include/libxml2/libxml/HTMLparser.h
338
+ - ext/nokogiri/include/libxml2/libxml/HTMLtree.h
339
+ - ext/nokogiri/include/libxml2/libxml/SAX.h
340
+ - ext/nokogiri/include/libxml2/libxml/SAX2.h
341
+ - ext/nokogiri/include/libxml2/libxml/c14n.h
342
+ - ext/nokogiri/include/libxml2/libxml/catalog.h
343
+ - ext/nokogiri/include/libxml2/libxml/chvalid.h
344
+ - ext/nokogiri/include/libxml2/libxml/debugXML.h
345
+ - ext/nokogiri/include/libxml2/libxml/dict.h
346
+ - ext/nokogiri/include/libxml2/libxml/encoding.h
347
+ - ext/nokogiri/include/libxml2/libxml/entities.h
348
+ - ext/nokogiri/include/libxml2/libxml/globals.h
349
+ - ext/nokogiri/include/libxml2/libxml/hash.h
350
+ - ext/nokogiri/include/libxml2/libxml/list.h
351
+ - ext/nokogiri/include/libxml2/libxml/nanoftp.h
352
+ - ext/nokogiri/include/libxml2/libxml/nanohttp.h
353
+ - ext/nokogiri/include/libxml2/libxml/parser.h
354
+ - ext/nokogiri/include/libxml2/libxml/parserInternals.h
355
+ - ext/nokogiri/include/libxml2/libxml/pattern.h
356
+ - ext/nokogiri/include/libxml2/libxml/relaxng.h
357
+ - ext/nokogiri/include/libxml2/libxml/schemasInternals.h
358
+ - ext/nokogiri/include/libxml2/libxml/schematron.h
359
+ - ext/nokogiri/include/libxml2/libxml/threads.h
360
+ - ext/nokogiri/include/libxml2/libxml/tree.h
361
+ - ext/nokogiri/include/libxml2/libxml/uri.h
362
+ - ext/nokogiri/include/libxml2/libxml/valid.h
363
+ - ext/nokogiri/include/libxml2/libxml/xinclude.h
364
+ - ext/nokogiri/include/libxml2/libxml/xlink.h
365
+ - ext/nokogiri/include/libxml2/libxml/xmlIO.h
366
+ - ext/nokogiri/include/libxml2/libxml/xmlautomata.h
367
+ - ext/nokogiri/include/libxml2/libxml/xmlerror.h
368
+ - ext/nokogiri/include/libxml2/libxml/xmlexports.h
369
+ - ext/nokogiri/include/libxml2/libxml/xmlmemory.h
370
+ - ext/nokogiri/include/libxml2/libxml/xmlmodule.h
371
+ - ext/nokogiri/include/libxml2/libxml/xmlreader.h
372
+ - ext/nokogiri/include/libxml2/libxml/xmlregexp.h
373
+ - ext/nokogiri/include/libxml2/libxml/xmlsave.h
374
+ - ext/nokogiri/include/libxml2/libxml/xmlschemas.h
375
+ - ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h
376
+ - ext/nokogiri/include/libxml2/libxml/xmlstring.h
377
+ - ext/nokogiri/include/libxml2/libxml/xmlunicode.h
378
+ - ext/nokogiri/include/libxml2/libxml/xmlversion.h
379
+ - ext/nokogiri/include/libxml2/libxml/xmlwriter.h
380
+ - ext/nokogiri/include/libxml2/libxml/xpath.h
381
+ - ext/nokogiri/include/libxml2/libxml/xpathInternals.h
382
+ - ext/nokogiri/include/libxml2/libxml/xpointer.h
383
+ - ext/nokogiri/include/libxslt/attributes.h
384
+ - ext/nokogiri/include/libxslt/documents.h
385
+ - ext/nokogiri/include/libxslt/extensions.h
386
+ - ext/nokogiri/include/libxslt/extra.h
387
+ - ext/nokogiri/include/libxslt/functions.h
388
+ - ext/nokogiri/include/libxslt/imports.h
389
+ - ext/nokogiri/include/libxslt/keys.h
390
+ - ext/nokogiri/include/libxslt/namespaces.h
391
+ - ext/nokogiri/include/libxslt/numbersInternals.h
392
+ - ext/nokogiri/include/libxslt/pattern.h
393
+ - ext/nokogiri/include/libxslt/preproc.h
394
+ - ext/nokogiri/include/libxslt/security.h
395
+ - ext/nokogiri/include/libxslt/templates.h
396
+ - ext/nokogiri/include/libxslt/transform.h
397
+ - ext/nokogiri/include/libxslt/variables.h
398
+ - ext/nokogiri/include/libxslt/xslt.h
399
+ - ext/nokogiri/include/libxslt/xsltInternals.h
400
+ - ext/nokogiri/include/libxslt/xsltconfig.h
401
+ - ext/nokogiri/include/libxslt/xsltexports.h
402
+ - ext/nokogiri/include/libxslt/xsltlocale.h
403
+ - ext/nokogiri/include/libxslt/xsltutils.h
326
404
  - ext/nokogiri/nokogiri.c
327
405
  - ext/nokogiri/nokogiri.h
328
406
  - ext/nokogiri/xml_attr.c
@@ -382,10 +460,10 @@ files:
382
460
  - ext/nokogiri/xslt_stylesheet.c
383
461
  - ext/nokogiri/xslt_stylesheet.h
384
462
  - lib/nokogiri.rb
385
- - lib/nokogiri/2.4/nokogiri.so
386
463
  - lib/nokogiri/2.5/nokogiri.so
387
464
  - lib/nokogiri/2.6/nokogiri.so
388
465
  - lib/nokogiri/2.7/nokogiri.so
466
+ - lib/nokogiri/3.0/nokogiri.so
389
467
  - lib/nokogiri/css.rb
390
468
  - lib/nokogiri/css/node.rb
391
469
  - lib/nokogiri/css/parser.rb
@@ -409,6 +487,8 @@ files:
409
487
  - lib/nokogiri/jruby/dependencies.rb
410
488
  - lib/nokogiri/syntax_error.rb
411
489
  - lib/nokogiri/version.rb
490
+ - lib/nokogiri/version/constant.rb
491
+ - lib/nokogiri/version/info.rb
412
492
  - lib/nokogiri/xml.rb
413
493
  - lib/nokogiri/xml/attr.rb
414
494
  - lib/nokogiri/xml/attribute_decl.rb
@@ -458,10 +538,7 @@ metadata:
458
538
  documentation_uri: https://nokogiri.org/rdoc/index.html
459
539
  changelog_uri: https://nokogiri.org/CHANGELOG.html
460
540
  source_code_uri: https://github.com/sparklemotion/nokogiri
461
- post_install_message: 'Nokogiri is built with the packaged libraries: libxml2-2.9.10,
462
- libxslt-1.1.34, zlib-1.2.11, libiconv-1.15.
463
-
464
- '
541
+ post_install_message:
465
542
  rdoc_options:
466
543
  - "--main"
467
544
  - README.md
@@ -471,17 +548,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
471
548
  requirements:
472
549
  - - ">="
473
550
  - !ruby/object:Gem::Version
474
- version: '2.4'
551
+ version: '2.5'
475
552
  - - "<"
476
553
  - !ruby/object:Gem::Version
477
- version: 2.8.dev
554
+ version: 3.1.dev
478
555
  required_rubygems_version: !ruby/object:Gem::Requirement
479
556
  requirements:
480
557
  - - ">"
481
558
  - !ruby/object:Gem::Version
482
559
  version: 1.3.1
483
560
  requirements: []
484
- rubygems_version: 3.1.2
561
+ rubygems_version: 3.2.3
485
562
  signing_key:
486
563
  specification_version: 4
487
564
  summary: Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
Binary file