nokogiri 1.6.2.rc3-java → 1.6.2.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.ja.rdoc +63 -44
- data/CHANGELOG.rdoc +63 -60
- data/Gemfile +1 -1
- data/Manifest.txt +6 -0
- data/README.ja.rdoc +3 -4
- data/README.rdoc +2 -2
- data/Rakefile +5 -1
- data/ext/nokogiri/extconf.rb +100 -53
- data/lib/nokogiri/nokogiri.jar +0 -0
- data/lib/nokogiri/version.rb +1 -1
- data/ports/patches/libxml2/0010-Keep-non-significant-blanks-node-in-HTML-parser.patch +2006 -0
- data/ports/patches/libxml2/0011-Do-not-fetch-external-parameter-entities.patch +39 -0
- data/test/files/slow-xpath.xml +25509 -0
- metadata +7 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nokogiri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.2.
|
|
4
|
+
version: 1.6.2.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron Patterson
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2014-05-
|
|
15
|
+
date: 2014-05-14 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: rdoc
|
|
@@ -480,6 +480,8 @@ files:
|
|
|
480
480
|
- ports/patches/libxml2/0007-Enforce-XML_PARSER_EOF-state-handling-through-the-pa.patch
|
|
481
481
|
- ports/patches/libxml2/0008-Improve-handling-of-xmlStopParser.patch
|
|
482
482
|
- ports/patches/libxml2/0009-Fix-a-couple-of-return-without-value.patch
|
|
483
|
+
- ports/patches/libxml2/0010-Keep-non-significant-blanks-node-in-HTML-parser.patch
|
|
484
|
+
- ports/patches/libxml2/0011-Do-not-fetch-external-parameter-entities.patch
|
|
483
485
|
- ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
|
|
484
486
|
- ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
|
|
485
487
|
- ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
|
|
@@ -527,6 +529,7 @@ files:
|
|
|
527
529
|
- test/files/shift_jis.html
|
|
528
530
|
- test/files/shift_jis.xml
|
|
529
531
|
- test/files/shift_jis_no_charset.html
|
|
532
|
+
- test/files/slow-xpath.xml
|
|
530
533
|
- test/files/snuggles.xml
|
|
531
534
|
- test/files/staff.dtd
|
|
532
535
|
- test/files/staff.xml
|
|
@@ -621,9 +624,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
621
624
|
version: '0'
|
|
622
625
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
623
626
|
requirements:
|
|
624
|
-
- - '
|
|
627
|
+
- - '>='
|
|
625
628
|
- !ruby/object:Gem::Version
|
|
626
|
-
version:
|
|
629
|
+
version: '0'
|
|
627
630
|
requirements: []
|
|
628
631
|
rubyforge_project: nokogiri
|
|
629
632
|
rubygems_version: 2.2.2
|