nokogiri 1.11.0.rc4-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 (218) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-DEPENDENCIES.md +1682 -0
  3. data/LICENSE.md +9 -0
  4. data/README.md +200 -0
  5. data/bin/nokogiri +118 -0
  6. data/dependencies.yml +74 -0
  7. data/ext/nokogiri/depend +477 -0
  8. data/ext/nokogiri/extconf.rb +819 -0
  9. data/ext/nokogiri/html_document.c +171 -0
  10. data/ext/nokogiri/html_document.h +10 -0
  11. data/ext/nokogiri/html_element_description.c +279 -0
  12. data/ext/nokogiri/html_element_description.h +10 -0
  13. data/ext/nokogiri/html_entity_lookup.c +32 -0
  14. data/ext/nokogiri/html_entity_lookup.h +8 -0
  15. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  16. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  17. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  18. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  19. data/ext/nokogiri/include/libexslt/exslt.h +102 -0
  20. data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
  21. data/ext/nokogiri/include/libexslt/exsltexports.h +140 -0
  22. data/ext/nokogiri/include/libxml2/libxml/DOCBparser.h +96 -0
  23. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +306 -0
  24. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
  25. data/ext/nokogiri/include/libxml2/libxml/SAX.h +173 -0
  26. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +178 -0
  27. data/ext/nokogiri/include/libxml2/libxml/c14n.h +126 -0
  28. data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
  29. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
  30. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
  31. data/ext/nokogiri/include/libxml2/libxml/dict.h +79 -0
  32. data/ext/nokogiri/include/libxml2/libxml/encoding.h +245 -0
  33. data/ext/nokogiri/include/libxml2/libxml/entities.h +151 -0
  34. data/ext/nokogiri/include/libxml2/libxml/globals.h +508 -0
  35. data/ext/nokogiri/include/libxml2/libxml/hash.h +236 -0
  36. data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
  37. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +163 -0
  38. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +81 -0
  39. data/ext/nokogiri/include/libxml2/libxml/parser.h +1241 -0
  40. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +644 -0
  41. data/ext/nokogiri/include/libxml2/libxml/pattern.h +100 -0
  42. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +217 -0
  43. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +958 -0
  44. data/ext/nokogiri/include/libxml2/libxml/schematron.h +142 -0
  45. data/ext/nokogiri/include/libxml2/libxml/threads.h +89 -0
  46. data/ext/nokogiri/include/libxml2/libxml/tree.h +1311 -0
  47. data/ext/nokogiri/include/libxml2/libxml/uri.h +94 -0
  48. data/ext/nokogiri/include/libxml2/libxml/valid.h +458 -0
  49. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +129 -0
  50. data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
  51. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +366 -0
  52. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
  53. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +945 -0
  54. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +153 -0
  55. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +224 -0
  56. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
  57. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +428 -0
  58. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +222 -0
  59. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +88 -0
  60. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +246 -0
  61. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +151 -0
  62. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
  63. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +202 -0
  64. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +485 -0
  65. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +488 -0
  66. data/ext/nokogiri/include/libxml2/libxml/xpath.h +566 -0
  67. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +632 -0
  68. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +114 -0
  69. data/ext/nokogiri/include/libxslt/attributes.h +38 -0
  70. data/ext/nokogiri/include/libxslt/documents.h +93 -0
  71. data/ext/nokogiri/include/libxslt/extensions.h +262 -0
  72. data/ext/nokogiri/include/libxslt/extra.h +72 -0
  73. data/ext/nokogiri/include/libxslt/functions.h +78 -0
  74. data/ext/nokogiri/include/libxslt/imports.h +75 -0
  75. data/ext/nokogiri/include/libxslt/keys.h +53 -0
  76. data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
  77. data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
  78. data/ext/nokogiri/include/libxslt/pattern.h +84 -0
  79. data/ext/nokogiri/include/libxslt/preproc.h +43 -0
  80. data/ext/nokogiri/include/libxslt/security.h +104 -0
  81. data/ext/nokogiri/include/libxslt/templates.h +77 -0
  82. data/ext/nokogiri/include/libxslt/transform.h +207 -0
  83. data/ext/nokogiri/include/libxslt/variables.h +118 -0
  84. data/ext/nokogiri/include/libxslt/xslt.h +110 -0
  85. data/ext/nokogiri/include/libxslt/xsltInternals.h +1978 -0
  86. data/ext/nokogiri/include/libxslt/xsltconfig.h +180 -0
  87. data/ext/nokogiri/include/libxslt/xsltexports.h +142 -0
  88. data/ext/nokogiri/include/libxslt/xsltlocale.h +76 -0
  89. data/ext/nokogiri/include/libxslt/xsltutils.h +313 -0
  90. data/ext/nokogiri/nokogiri.c +135 -0
  91. data/ext/nokogiri/nokogiri.h +130 -0
  92. data/ext/nokogiri/xml_attr.c +103 -0
  93. data/ext/nokogiri/xml_attr.h +9 -0
  94. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  95. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  96. data/ext/nokogiri/xml_cdata.c +62 -0
  97. data/ext/nokogiri/xml_cdata.h +9 -0
  98. data/ext/nokogiri/xml_comment.c +69 -0
  99. data/ext/nokogiri/xml_comment.h +9 -0
  100. data/ext/nokogiri/xml_document.c +622 -0
  101. data/ext/nokogiri/xml_document.h +23 -0
  102. data/ext/nokogiri/xml_document_fragment.c +48 -0
  103. data/ext/nokogiri/xml_document_fragment.h +10 -0
  104. data/ext/nokogiri/xml_dtd.c +202 -0
  105. data/ext/nokogiri/xml_dtd.h +10 -0
  106. data/ext/nokogiri/xml_element_content.c +123 -0
  107. data/ext/nokogiri/xml_element_content.h +10 -0
  108. data/ext/nokogiri/xml_element_decl.c +69 -0
  109. data/ext/nokogiri/xml_element_decl.h +9 -0
  110. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  111. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  112. data/ext/nokogiri/xml_entity_decl.c +110 -0
  113. data/ext/nokogiri/xml_entity_decl.h +10 -0
  114. data/ext/nokogiri/xml_entity_reference.c +52 -0
  115. data/ext/nokogiri/xml_entity_reference.h +9 -0
  116. data/ext/nokogiri/xml_io.c +63 -0
  117. data/ext/nokogiri/xml_io.h +11 -0
  118. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  119. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  120. data/ext/nokogiri/xml_namespace.c +111 -0
  121. data/ext/nokogiri/xml_namespace.h +14 -0
  122. data/ext/nokogiri/xml_node.c +1773 -0
  123. data/ext/nokogiri/xml_node.h +13 -0
  124. data/ext/nokogiri/xml_node_set.c +486 -0
  125. data/ext/nokogiri/xml_node_set.h +12 -0
  126. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  127. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  128. data/ext/nokogiri/xml_reader.c +657 -0
  129. data/ext/nokogiri/xml_reader.h +10 -0
  130. data/ext/nokogiri/xml_relax_ng.c +179 -0
  131. data/ext/nokogiri/xml_relax_ng.h +9 -0
  132. data/ext/nokogiri/xml_sax_parser.c +305 -0
  133. data/ext/nokogiri/xml_sax_parser.h +39 -0
  134. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  135. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  136. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  137. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  138. data/ext/nokogiri/xml_schema.c +276 -0
  139. data/ext/nokogiri/xml_schema.h +9 -0
  140. data/ext/nokogiri/xml_syntax_error.c +64 -0
  141. data/ext/nokogiri/xml_syntax_error.h +13 -0
  142. data/ext/nokogiri/xml_text.c +52 -0
  143. data/ext/nokogiri/xml_text.h +9 -0
  144. data/ext/nokogiri/xml_xpath_context.c +374 -0
  145. data/ext/nokogiri/xml_xpath_context.h +10 -0
  146. data/ext/nokogiri/xslt_stylesheet.c +263 -0
  147. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  148. data/lib/nokogiri.rb +127 -0
  149. data/lib/nokogiri/2.5/nokogiri.bundle +0 -0
  150. data/lib/nokogiri/2.6/nokogiri.bundle +0 -0
  151. data/lib/nokogiri/2.7/nokogiri.bundle +0 -0
  152. data/lib/nokogiri/3.0/nokogiri.bundle +0 -0
  153. data/lib/nokogiri/css.rb +28 -0
  154. data/lib/nokogiri/css/node.rb +53 -0
  155. data/lib/nokogiri/css/parser.rb +751 -0
  156. data/lib/nokogiri/css/parser.y +272 -0
  157. data/lib/nokogiri/css/parser_extras.rb +94 -0
  158. data/lib/nokogiri/css/syntax_error.rb +8 -0
  159. data/lib/nokogiri/css/tokenizer.rb +154 -0
  160. data/lib/nokogiri/css/tokenizer.rex +55 -0
  161. data/lib/nokogiri/css/xpath_visitor.rb +260 -0
  162. data/lib/nokogiri/decorators/slop.rb +43 -0
  163. data/lib/nokogiri/html.rb +38 -0
  164. data/lib/nokogiri/html/builder.rb +36 -0
  165. data/lib/nokogiri/html/document.rb +322 -0
  166. data/lib/nokogiri/html/document_fragment.rb +50 -0
  167. data/lib/nokogiri/html/element_description.rb +24 -0
  168. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  169. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  170. data/lib/nokogiri/html/sax/parser.rb +63 -0
  171. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  172. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  173. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  174. data/lib/nokogiri/syntax_error.rb +5 -0
  175. data/lib/nokogiri/version.rb +3 -0
  176. data/lib/nokogiri/version/constant.rb +5 -0
  177. data/lib/nokogiri/version/info.rb +182 -0
  178. data/lib/nokogiri/xml.rb +76 -0
  179. data/lib/nokogiri/xml/attr.rb +15 -0
  180. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  181. data/lib/nokogiri/xml/builder.rb +447 -0
  182. data/lib/nokogiri/xml/cdata.rb +12 -0
  183. data/lib/nokogiri/xml/character_data.rb +8 -0
  184. data/lib/nokogiri/xml/document.rb +290 -0
  185. data/lib/nokogiri/xml/document_fragment.rb +159 -0
  186. data/lib/nokogiri/xml/dtd.rb +33 -0
  187. data/lib/nokogiri/xml/element_content.rb +37 -0
  188. data/lib/nokogiri/xml/element_decl.rb +14 -0
  189. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  190. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  191. data/lib/nokogiri/xml/namespace.rb +14 -0
  192. data/lib/nokogiri/xml/node.rb +1240 -0
  193. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  194. data/lib/nokogiri/xml/node_set.rb +372 -0
  195. data/lib/nokogiri/xml/notation.rb +7 -0
  196. data/lib/nokogiri/xml/parse_options.rb +127 -0
  197. data/lib/nokogiri/xml/pp.rb +3 -0
  198. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  199. data/lib/nokogiri/xml/pp/node.rb +57 -0
  200. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  201. data/lib/nokogiri/xml/reader.rb +116 -0
  202. data/lib/nokogiri/xml/relax_ng.rb +37 -0
  203. data/lib/nokogiri/xml/sax.rb +5 -0
  204. data/lib/nokogiri/xml/sax/document.rb +172 -0
  205. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  206. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  207. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  208. data/lib/nokogiri/xml/schema.rb +72 -0
  209. data/lib/nokogiri/xml/searchable.rb +239 -0
  210. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  211. data/lib/nokogiri/xml/text.rb +10 -0
  212. data/lib/nokogiri/xml/xpath.rb +11 -0
  213. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  214. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  215. data/lib/nokogiri/xslt.rb +57 -0
  216. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  217. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  218. metadata +565 -0
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+ module Nokogiri
3
+ module XML
4
+ class Text < Nokogiri::XML::CharacterData
5
+ def content=(string)
6
+ self.native_content = string.to_s
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+ require 'nokogiri/xml/xpath/syntax_error'
3
+
4
+ module Nokogiri
5
+ module XML
6
+ class XPath
7
+ # The Nokogiri::XML::Document tied to this XPath instance
8
+ attr_accessor :document
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+ module Nokogiri
3
+ module XML
4
+ class XPath
5
+ class SyntaxError < XML::SyntaxError
6
+ def to_s
7
+ [super.chomp, str1].compact.join(': ')
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+ module Nokogiri
3
+ module XML
4
+ class XPathContext
5
+
6
+ ###
7
+ # Register namespaces in +namespaces+
8
+ def register_namespaces(namespaces)
9
+ namespaces.each do |k, v|
10
+ k = k.to_s.gsub(/.*:/,'') # strip off 'xmlns:' or 'xml:'
11
+ register_ns(k, v)
12
+ end
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+ require 'nokogiri/xslt/stylesheet'
3
+
4
+ module Nokogiri
5
+ class << self
6
+ ###
7
+ # Create a Nokogiri::XSLT::Stylesheet with +stylesheet+.
8
+ #
9
+ # Example:
10
+ #
11
+ # xslt = Nokogiri::XSLT(File.read(ARGV[0]))
12
+ #
13
+ def XSLT stylesheet, modules = {}
14
+ XSLT.parse(stylesheet, modules)
15
+ end
16
+ end
17
+
18
+ ###
19
+ # See Nokogiri::XSLT::Stylesheet for creating and manipulating
20
+ # Stylesheet object.
21
+ module XSLT
22
+ class << self
23
+ ###
24
+ # Parse the stylesheet in +string+, register any +modules+
25
+ def parse string, modules = {}
26
+ modules.each do |url, klass|
27
+ XSLT.register url, klass
28
+ end
29
+
30
+ if Nokogiri.jruby?
31
+ Stylesheet.parse_stylesheet_doc(XML.parse(string), string)
32
+ else
33
+ Stylesheet.parse_stylesheet_doc(XML.parse(string))
34
+ end
35
+ end
36
+
37
+ ###
38
+ # Quote parameters in +params+ for stylesheet safety
39
+ def quote_params params
40
+ parray = (params.instance_of?(Hash) ? params.to_a.flatten : params).dup
41
+ parray.each_with_index do |v,i|
42
+ if i % 2 > 0
43
+ parray[i]=
44
+ if v =~ /'/
45
+ "concat('#{ v.gsub(/'/, %q{', "'", '}) }')"
46
+ else
47
+ "'#{v}'";
48
+ end
49
+ else
50
+ parray[i] = v.to_s
51
+ end
52
+ end
53
+ parray.flatten
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+ module Nokogiri
3
+ module XSLT
4
+ ###
5
+ # A Stylesheet represents an XSLT Stylesheet object. Stylesheet creation
6
+ # is done through Nokogiri.XSLT. Here is an example of transforming
7
+ # an XML::Document with a Stylesheet:
8
+ #
9
+ # doc = Nokogiri::XML(File.read('some_file.xml'))
10
+ # xslt = Nokogiri::XSLT(File.read('some_transformer.xslt'))
11
+ #
12
+ # puts xslt.transform(doc)
13
+ #
14
+ # See Nokogiri::XSLT::Stylesheet#transform for more transformation
15
+ # information.
16
+ class Stylesheet
17
+ ###
18
+ # Apply an XSLT stylesheet to an XML::Document.
19
+ # +params+ is an array of strings used as XSLT parameters.
20
+ # returns serialized document
21
+ def apply_to document, params = []
22
+ serialize(transform(document, params))
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,103 @@
1
+ # frozen_string_literal: true
2
+ require 'nokogiri'
3
+
4
+ module XSD # :nodoc:
5
+ module XMLParser # :nodoc:
6
+ ###
7
+ # Nokogiri XML parser for soap4r.
8
+ #
9
+ # Nokogiri may be used as the XML parser in soap4r. Simply require
10
+ # 'xsd/xmlparser/nokogiri' in your soap4r applications, and soap4r
11
+ # will use Nokogiri as it's XML parser. No other changes should be
12
+ # required to use Nokogiri as the XML parser.
13
+ #
14
+ # Example (using UW ITS Web Services):
15
+ #
16
+ # require 'rubygems'
17
+ # require 'nokogiri'
18
+ # gem 'soap4r'
19
+ # require 'defaultDriver'
20
+ # require 'xsd/xmlparser/nokogiri'
21
+ #
22
+ # obj = AvlPortType.new
23
+ # obj.getLatestByRoute(obj.getAgencies.first, 8).each do |bus|
24
+ # p "#{bus.routeID}, #{bus.longitude}, #{bus.latitude}"
25
+ # end
26
+ #
27
+ class Nokogiri < XSD::XMLParser::Parser
28
+ ###
29
+ # Create a new XSD parser with +host+ and +opt+
30
+ def initialize host, opt = {}
31
+ super
32
+ @parser = ::Nokogiri::XML::SAX::Parser.new(self, @charset || 'UTF-8')
33
+ end
34
+
35
+ ###
36
+ # Start parsing +string_or_readable+
37
+ def do_parse string_or_readable
38
+ @parser.parse(string_or_readable)
39
+ end
40
+
41
+ ###
42
+ # Handle the start_element event with +name+ and +attrs+
43
+ def start_element name, attrs = []
44
+ super(name, Hash[*attrs.flatten])
45
+ end
46
+
47
+ ###
48
+ # Handle the end_element event with +name+
49
+ def end_element name
50
+ super
51
+ end
52
+
53
+ ###
54
+ # Handle errors with message +msg+
55
+ def error msg
56
+ raise ParseError.new(msg)
57
+ end
58
+ alias :warning :error
59
+
60
+ ###
61
+ # Handle cdata_blocks containing +string+
62
+ def cdata_block string
63
+ characters string
64
+ end
65
+
66
+ ###
67
+ # Called at the beginning of an element
68
+ # +name+ is the element name
69
+ # +attrs+ is a list of attributes
70
+ # +prefix+ is the namespace prefix for the element
71
+ # +uri+ is the associated namespace URI
72
+ # +ns+ is a hash of namespace prefix:urls associated with the element
73
+ def start_element_namespace name, attrs = [], prefix = nil, uri = nil, ns = []
74
+ ###
75
+ # Deal with SAX v1 interface
76
+ name = [prefix, name].compact.join(':')
77
+ attributes = ns.map { |ns_prefix,ns_uri|
78
+ [['xmlns', ns_prefix].compact.join(':'), ns_uri]
79
+ } + attrs.map { |attr|
80
+ [[attr.prefix, attr.localname].compact.join(':'), attr.value]
81
+ }.flatten
82
+ start_element name, attributes
83
+ end
84
+
85
+ ###
86
+ # Called at the end of an element
87
+ # +name+ is the element's name
88
+ # +prefix+ is the namespace prefix associated with the element
89
+ # +uri+ is the associated namespace URI
90
+ def end_element_namespace name, prefix = nil, uri = nil
91
+ ###
92
+ # Deal with SAX v1 interface
93
+ end_element [prefix, name].compact.join(':')
94
+ end
95
+
96
+ %w{ xmldecl start_document end_document comment }.each do |name|
97
+ class_eval %{ def #{name}(*args); end }
98
+ end
99
+
100
+ add_factory(self)
101
+ end
102
+ end
103
+ end
metadata ADDED
@@ -0,0 +1,565 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nokogiri
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.11.0.rc4
5
+ platform: arm64-darwin
6
+ authors:
7
+ - Mike Dalessio
8
+ - Aaron Patterson
9
+ - John Shahid
10
+ - Yoko Harada
11
+ - Akinori MUSHA
12
+ - Lars Kanis
13
+ - Tim Elliott
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+ date: 2020-12-29 00:00:00.000000000 Z
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'
33
+ - !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
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '1.2'
74
+ type: :development
75
+ prerelease: false
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '1.2'
81
+ - !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
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: '1.6'
116
+ type: :development
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: '1.6'
123
+ - !ruby/object:Gem::Dependency
124
+ name: hoe-markdown
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '1.1'
130
+ type: :development
131
+ prerelease: false
132
+ version_requirements: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "~>"
135
+ - !ruby/object:Gem::Version
136
+ version: '1.1'
137
+ - !ruby/object:Gem::Dependency
138
+ name: minitest
139
+ requirement: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - "~>"
142
+ - !ruby/object:Gem::Version
143
+ version: '5.8'
144
+ type: :development
145
+ prerelease: false
146
+ version_requirements: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - "~>"
149
+ - !ruby/object:Gem::Version
150
+ version: '5.8'
151
+ - !ruby/object:Gem::Dependency
152
+ name: minitest-reporters
153
+ requirement: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - "~>"
156
+ - !ruby/object:Gem::Version
157
+ version: '1.4'
158
+ type: :development
159
+ prerelease: false
160
+ version_requirements: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - "~>"
163
+ - !ruby/object:Gem::Version
164
+ version: '1.4'
165
+ - !ruby/object:Gem::Dependency
166
+ name: rake
167
+ requirement: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - "~>"
170
+ - !ruby/object:Gem::Version
171
+ version: '13.0'
172
+ type: :development
173
+ prerelease: false
174
+ version_requirements: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - "~>"
177
+ - !ruby/object:Gem::Version
178
+ version: '13.0'
179
+ - !ruby/object:Gem::Dependency
180
+ name: rake-compiler
181
+ requirement: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "~>"
184
+ - !ruby/object:Gem::Version
185
+ version: '1.1'
186
+ type: :development
187
+ prerelease: false
188
+ version_requirements: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - "~>"
191
+ - !ruby/object:Gem::Version
192
+ version: '1.1'
193
+ - !ruby/object:Gem::Dependency
194
+ name: rake-compiler-dock
195
+ requirement: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - "~>"
198
+ - !ruby/object:Gem::Version
199
+ version: '1.1'
200
+ type: :development
201
+ prerelease: false
202
+ version_requirements: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - "~>"
205
+ - !ruby/object:Gem::Version
206
+ version: '1.1'
207
+ - !ruby/object:Gem::Dependency
208
+ name: rexical
209
+ requirement: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - "~>"
212
+ - !ruby/object:Gem::Version
213
+ version: 1.0.5
214
+ type: :development
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - "~>"
219
+ - !ruby/object:Gem::Version
220
+ version: 1.0.5
221
+ - !ruby/object:Gem::Dependency
222
+ name: rubocop
223
+ requirement: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - "~>"
226
+ - !ruby/object:Gem::Version
227
+ version: '0.88'
228
+ type: :development
229
+ prerelease: false
230
+ version_requirements: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - "~>"
233
+ - !ruby/object:Gem::Version
234
+ version: '0.88'
235
+ - !ruby/object:Gem::Dependency
236
+ name: simplecov
237
+ requirement: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - "~>"
240
+ - !ruby/object:Gem::Version
241
+ version: 0.17.0
242
+ type: :development
243
+ prerelease: false
244
+ version_requirements: !ruby/object:Gem::Requirement
245
+ requirements:
246
+ - - "~>"
247
+ - !ruby/object:Gem::Version
248
+ version: 0.17.0
249
+ - !ruby/object:Gem::Dependency
250
+ name: rdoc
251
+ requirement: !ruby/object:Gem::Requirement
252
+ requirements:
253
+ - - ">="
254
+ - !ruby/object:Gem::Version
255
+ version: '4.0'
256
+ - - "<"
257
+ - !ruby/object:Gem::Version
258
+ version: '7'
259
+ type: :development
260
+ prerelease: false
261
+ version_requirements: !ruby/object:Gem::Requirement
262
+ requirements:
263
+ - - ">="
264
+ - !ruby/object:Gem::Version
265
+ version: '4.0'
266
+ - - "<"
267
+ - !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.
273
+ email: nokogiri-talk@googlegroups.com
274
+ executables:
275
+ - nokogiri
276
+ extensions: []
277
+ 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
287
+ - ext/nokogiri/xml_attr.c
288
+ - ext/nokogiri/xml_attribute_decl.c
289
+ - ext/nokogiri/xml_cdata.c
290
+ - ext/nokogiri/xml_comment.c
291
+ - ext/nokogiri/xml_document.c
292
+ - ext/nokogiri/xml_document_fragment.c
293
+ - ext/nokogiri/xml_dtd.c
294
+ - ext/nokogiri/xml_element_content.c
295
+ - ext/nokogiri/xml_element_decl.c
296
+ - ext/nokogiri/xml_encoding_handler.c
297
+ - 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
302
+ - 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
314
+ - ext/nokogiri/xslt_stylesheet.c
315
+ files:
316
+ - LICENSE-DEPENDENCIES.md
317
+ - LICENSE.md
318
+ - README.md
319
+ - bin/nokogiri
320
+ - dependencies.yml
321
+ - ext/nokogiri/depend
322
+ - ext/nokogiri/extconf.rb
323
+ - ext/nokogiri/html_document.c
324
+ - ext/nokogiri/html_document.h
325
+ - ext/nokogiri/html_element_description.c
326
+ - ext/nokogiri/html_element_description.h
327
+ - ext/nokogiri/html_entity_lookup.c
328
+ - ext/nokogiri/html_entity_lookup.h
329
+ - ext/nokogiri/html_sax_parser_context.c
330
+ - ext/nokogiri/html_sax_parser_context.h
331
+ - ext/nokogiri/html_sax_push_parser.c
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
404
+ - ext/nokogiri/nokogiri.c
405
+ - ext/nokogiri/nokogiri.h
406
+ - ext/nokogiri/xml_attr.c
407
+ - ext/nokogiri/xml_attr.h
408
+ - ext/nokogiri/xml_attribute_decl.c
409
+ - ext/nokogiri/xml_attribute_decl.h
410
+ - ext/nokogiri/xml_cdata.c
411
+ - ext/nokogiri/xml_cdata.h
412
+ - ext/nokogiri/xml_comment.c
413
+ - ext/nokogiri/xml_comment.h
414
+ - ext/nokogiri/xml_document.c
415
+ - ext/nokogiri/xml_document.h
416
+ - ext/nokogiri/xml_document_fragment.c
417
+ - ext/nokogiri/xml_document_fragment.h
418
+ - ext/nokogiri/xml_dtd.c
419
+ - ext/nokogiri/xml_dtd.h
420
+ - ext/nokogiri/xml_element_content.c
421
+ - ext/nokogiri/xml_element_content.h
422
+ - ext/nokogiri/xml_element_decl.c
423
+ - ext/nokogiri/xml_element_decl.h
424
+ - ext/nokogiri/xml_encoding_handler.c
425
+ - ext/nokogiri/xml_encoding_handler.h
426
+ - ext/nokogiri/xml_entity_decl.c
427
+ - ext/nokogiri/xml_entity_decl.h
428
+ - 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
+ - ext/nokogiri/xml_namespace.c
435
+ - ext/nokogiri/xml_namespace.h
436
+ - ext/nokogiri/xml_node.c
437
+ - ext/nokogiri/xml_node.h
438
+ - ext/nokogiri/xml_node_set.c
439
+ - ext/nokogiri/xml_node_set.h
440
+ - ext/nokogiri/xml_processing_instruction.c
441
+ - ext/nokogiri/xml_processing_instruction.h
442
+ - ext/nokogiri/xml_reader.c
443
+ - ext/nokogiri/xml_reader.h
444
+ - ext/nokogiri/xml_relax_ng.c
445
+ - ext/nokogiri/xml_relax_ng.h
446
+ - ext/nokogiri/xml_sax_parser.c
447
+ - ext/nokogiri/xml_sax_parser.h
448
+ - ext/nokogiri/xml_sax_parser_context.c
449
+ - ext/nokogiri/xml_sax_parser_context.h
450
+ - ext/nokogiri/xml_sax_push_parser.c
451
+ - ext/nokogiri/xml_sax_push_parser.h
452
+ - ext/nokogiri/xml_schema.c
453
+ - ext/nokogiri/xml_schema.h
454
+ - ext/nokogiri/xml_syntax_error.c
455
+ - ext/nokogiri/xml_syntax_error.h
456
+ - ext/nokogiri/xml_text.c
457
+ - ext/nokogiri/xml_text.h
458
+ - ext/nokogiri/xml_xpath_context.c
459
+ - ext/nokogiri/xml_xpath_context.h
460
+ - ext/nokogiri/xslt_stylesheet.c
461
+ - ext/nokogiri/xslt_stylesheet.h
462
+ - lib/nokogiri.rb
463
+ - lib/nokogiri/2.5/nokogiri.bundle
464
+ - lib/nokogiri/2.6/nokogiri.bundle
465
+ - lib/nokogiri/2.7/nokogiri.bundle
466
+ - lib/nokogiri/3.0/nokogiri.bundle
467
+ - lib/nokogiri/css.rb
468
+ - lib/nokogiri/css/node.rb
469
+ - lib/nokogiri/css/parser.rb
470
+ - lib/nokogiri/css/parser.y
471
+ - lib/nokogiri/css/parser_extras.rb
472
+ - lib/nokogiri/css/syntax_error.rb
473
+ - lib/nokogiri/css/tokenizer.rb
474
+ - lib/nokogiri/css/tokenizer.rex
475
+ - lib/nokogiri/css/xpath_visitor.rb
476
+ - lib/nokogiri/decorators/slop.rb
477
+ - lib/nokogiri/html.rb
478
+ - lib/nokogiri/html/builder.rb
479
+ - lib/nokogiri/html/document.rb
480
+ - lib/nokogiri/html/document_fragment.rb
481
+ - lib/nokogiri/html/element_description.rb
482
+ - lib/nokogiri/html/element_description_defaults.rb
483
+ - lib/nokogiri/html/entity_lookup.rb
484
+ - lib/nokogiri/html/sax/parser.rb
485
+ - lib/nokogiri/html/sax/parser_context.rb
486
+ - lib/nokogiri/html/sax/push_parser.rb
487
+ - lib/nokogiri/jruby/dependencies.rb
488
+ - lib/nokogiri/syntax_error.rb
489
+ - lib/nokogiri/version.rb
490
+ - lib/nokogiri/version/constant.rb
491
+ - lib/nokogiri/version/info.rb
492
+ - lib/nokogiri/xml.rb
493
+ - lib/nokogiri/xml/attr.rb
494
+ - lib/nokogiri/xml/attribute_decl.rb
495
+ - lib/nokogiri/xml/builder.rb
496
+ - lib/nokogiri/xml/cdata.rb
497
+ - lib/nokogiri/xml/character_data.rb
498
+ - lib/nokogiri/xml/document.rb
499
+ - lib/nokogiri/xml/document_fragment.rb
500
+ - lib/nokogiri/xml/dtd.rb
501
+ - lib/nokogiri/xml/element_content.rb
502
+ - lib/nokogiri/xml/element_decl.rb
503
+ - lib/nokogiri/xml/entity_decl.rb
504
+ - lib/nokogiri/xml/entity_reference.rb
505
+ - lib/nokogiri/xml/namespace.rb
506
+ - lib/nokogiri/xml/node.rb
507
+ - lib/nokogiri/xml/node/save_options.rb
508
+ - lib/nokogiri/xml/node_set.rb
509
+ - lib/nokogiri/xml/notation.rb
510
+ - lib/nokogiri/xml/parse_options.rb
511
+ - lib/nokogiri/xml/pp.rb
512
+ - lib/nokogiri/xml/pp/character_data.rb
513
+ - lib/nokogiri/xml/pp/node.rb
514
+ - lib/nokogiri/xml/processing_instruction.rb
515
+ - lib/nokogiri/xml/reader.rb
516
+ - lib/nokogiri/xml/relax_ng.rb
517
+ - lib/nokogiri/xml/sax.rb
518
+ - lib/nokogiri/xml/sax/document.rb
519
+ - lib/nokogiri/xml/sax/parser.rb
520
+ - lib/nokogiri/xml/sax/parser_context.rb
521
+ - lib/nokogiri/xml/sax/push_parser.rb
522
+ - lib/nokogiri/xml/schema.rb
523
+ - lib/nokogiri/xml/searchable.rb
524
+ - lib/nokogiri/xml/syntax_error.rb
525
+ - lib/nokogiri/xml/text.rb
526
+ - lib/nokogiri/xml/xpath.rb
527
+ - lib/nokogiri/xml/xpath/syntax_error.rb
528
+ - lib/nokogiri/xml/xpath_context.rb
529
+ - lib/nokogiri/xslt.rb
530
+ - lib/nokogiri/xslt/stylesheet.rb
531
+ - lib/xsd/xmlparser/nokogiri.rb
532
+ homepage: https://nokogiri.org
533
+ licenses:
534
+ - MIT
535
+ metadata:
536
+ homepage_uri: https://nokogiri.org
537
+ bug_tracker_uri: https://github.com/sparklemotion/nokogiri/issues
538
+ documentation_uri: https://nokogiri.org/rdoc/index.html
539
+ changelog_uri: https://nokogiri.org/CHANGELOG.html
540
+ source_code_uri: https://github.com/sparklemotion/nokogiri
541
+ post_install_message:
542
+ rdoc_options:
543
+ - "--main"
544
+ - README.md
545
+ require_paths:
546
+ - lib
547
+ required_ruby_version: !ruby/object:Gem::Requirement
548
+ requirements:
549
+ - - ">="
550
+ - !ruby/object:Gem::Version
551
+ version: '2.5'
552
+ - - "<"
553
+ - !ruby/object:Gem::Version
554
+ version: 3.1.dev
555
+ required_rubygems_version: !ruby/object:Gem::Requirement
556
+ requirements:
557
+ - - ">"
558
+ - !ruby/object:Gem::Version
559
+ version: 1.3.1
560
+ requirements: []
561
+ rubygems_version: 3.2.3
562
+ signing_key:
563
+ specification_version: 4
564
+ summary: Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
565
+ test_files: []