nokogiri 1.4.3-x86-mswin32 → 1.4.3.1-x86-mswin32
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.
- data/Manifest.txt +2 -0
- data/ext/nokogiri/depend +32 -0
- data/lib/nokogiri/1.8/nokogiri.so +0 -0
- data/lib/nokogiri/1.9/nokogiri.so +0 -0
- data/lib/nokogiri/version.rb +1 -1
- data/lib/nokogiri/version_warning.rb +14 -0
- metadata +6 -3
data/Manifest.txt
CHANGED
@@ -7,6 +7,7 @@ README.rdoc
|
|
7
7
|
Rakefile
|
8
8
|
bin/nokogiri
|
9
9
|
deps.rip
|
10
|
+
ext/nokogiri/depend
|
10
11
|
ext/nokogiri/extconf.rb
|
11
12
|
ext/nokogiri/html_document.c
|
12
13
|
ext/nokogiri/html_document.h
|
@@ -159,6 +160,7 @@ lib/nokogiri/html/sax/parser.rb
|
|
159
160
|
lib/nokogiri/html/sax/parser_context.rb
|
160
161
|
lib/nokogiri/syntax_error.rb
|
161
162
|
lib/nokogiri/version.rb
|
163
|
+
lib/nokogiri/version_warning.rb
|
162
164
|
lib/nokogiri/xml.rb
|
163
165
|
lib/nokogiri/xml/attr.rb
|
164
166
|
lib/nokogiri/xml/attribute_decl.rb
|
data/ext/nokogiri/depend
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
html_document.o: html_document.c
|
2
|
+
html_element_description.o: html_element_description.c
|
3
|
+
html_entity_lookup.o: html_entity_lookup.c
|
4
|
+
html_sax_parser_context.o: html_sax_parser_context.c
|
5
|
+
nokogiri.o: nokogiri.c
|
6
|
+
xml_attr.o: xml_attr.c
|
7
|
+
xml_attribute_decl.o: xml_attribute_decl.c
|
8
|
+
xml_cdata.o: xml_cdata.c
|
9
|
+
xml_comment.o: xml_comment.c
|
10
|
+
xml_document.o: xml_document.c
|
11
|
+
xml_document_fragment.o: xml_document_fragment.c
|
12
|
+
xml_dtd.o: xml_dtd.c
|
13
|
+
xml_element_content.o: xml_element_content.c
|
14
|
+
xml_element_decl.o: xml_element_decl.c
|
15
|
+
xml_encoding_handler.o: xml_encoding_handler.c
|
16
|
+
xml_entity_decl.o: xml_entity_decl.c
|
17
|
+
xml_entity_reference.o: xml_entity_reference.c
|
18
|
+
xml_io.o: xml_io.c
|
19
|
+
xml_namespace.o: xml_namespace.c
|
20
|
+
xml_node.o: xml_node.c
|
21
|
+
xml_node_set.o: xml_node_set.c
|
22
|
+
xml_processing_instruction.o: xml_processing_instruction.c
|
23
|
+
xml_reader.o: xml_reader.c
|
24
|
+
xml_relax_ng.o: xml_relax_ng.c
|
25
|
+
xml_sax_parser.o: xml_sax_parser.c
|
26
|
+
xml_sax_parser_context.o: xml_sax_parser_context.c
|
27
|
+
xml_sax_push_parser.o: xml_sax_push_parser.c
|
28
|
+
xml_schema.o: xml_schema.c
|
29
|
+
xml_syntax_error.o: xml_syntax_error.c
|
30
|
+
xml_text.o: xml_text.c
|
31
|
+
xml_xpath_context.o: xml_xpath_context.c
|
32
|
+
xslt_stylesheet.o: xslt_stylesheet.c
|
Binary file
|
Binary file
|
data/lib/nokogiri/version.rb
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
module Nokogiri
|
2
|
+
if self.is_2_6_16?
|
3
|
+
VERSION_INFO['warnings'] << "libxml 2.6.16 is old and buggy."
|
4
|
+
if !defined?(I_KNOW_I_AM_USING_AN_OLD_AND_BUGGY_VERSION_OF_LIBXML2)
|
5
|
+
warn <<-eom
|
6
|
+
HI. You're using libxml2 version 2.6.16 which is over 4 years old and has
|
7
|
+
plenty of bugs. We suggest that for maximum HTML/XML parsing pleasure, you
|
8
|
+
upgrade your version of libxml2 and re-install nokogiri. If you like using
|
9
|
+
libxml2 version 2.6.16, but don't like this warning, please define the constant
|
10
|
+
I_KNOW_I_AM_USING_AN_OLD_AND_BUGGY_VERSION_OF_LIBXML2 before requring nokogiri.
|
11
|
+
eom
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 113
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
9
|
- 3
|
10
|
-
|
10
|
+
- 1
|
11
|
+
version: 1.4.3.1
|
11
12
|
platform: x86-mswin32
|
12
13
|
authors:
|
13
14
|
- Aaron Patterson
|
@@ -16,7 +17,7 @@ autorequire:
|
|
16
17
|
bindir: bin
|
17
18
|
cert_chain: []
|
18
19
|
|
19
|
-
date: 2010-07-
|
20
|
+
date: 2010-07-29 00:00:00 -07:00
|
20
21
|
default_executable:
|
21
22
|
dependencies:
|
22
23
|
- !ruby/object:Gem::Dependency
|
@@ -169,6 +170,7 @@ files:
|
|
169
170
|
- Rakefile
|
170
171
|
- bin/nokogiri
|
171
172
|
- deps.rip
|
173
|
+
- ext/nokogiri/depend
|
172
174
|
- ext/nokogiri/extconf.rb
|
173
175
|
- ext/nokogiri/html_document.c
|
174
176
|
- ext/nokogiri/html_document.h
|
@@ -321,6 +323,7 @@ files:
|
|
321
323
|
- lib/nokogiri/html/sax/parser_context.rb
|
322
324
|
- lib/nokogiri/syntax_error.rb
|
323
325
|
- lib/nokogiri/version.rb
|
326
|
+
- lib/nokogiri/version_warning.rb
|
324
327
|
- lib/nokogiri/xml.rb
|
325
328
|
- lib/nokogiri/xml/attr.rb
|
326
329
|
- lib/nokogiri/xml/attribute_decl.rb
|