libxml-ruby 0.9.9-x86-mswin32-60 → 1.0.0-x86-mswin32-60
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.
- data/CHANGES +8 -0
- data/ext/libxml/extconf.rb +0 -8
- data/ext/libxml/libxml.c +76 -76
- data/ext/libxml/ruby_libxml.h +93 -93
- data/ext/libxml/ruby_xml_document.c +915 -915
- data/ext/libxml/ruby_xml_dtd.c +257 -257
- data/ext/libxml/ruby_xml_html_parser_context.c +290 -175
- data/ext/libxml/ruby_xml_node.c +1428 -1428
- data/ext/libxml/ruby_xml_parser_context.c +952 -952
- data/ext/libxml/ruby_xml_reader.c +1002 -1002
- data/ext/libxml/ruby_xml_version.h +5 -5
- data/ext/libxml/ruby_xml_xpath_context.c +387 -387
- data/ext/mingw/libxml_ruby.dll.a +0 -0
- data/ext/mingw/libxml_ruby.so +0 -0
- metadata +2 -3
- data/test/model/definition.dtd +0 -8
data/ext/mingw/libxml_ruby.dll.a
CHANGED
Binary file
|
data/ext/mingw/libxml_ruby.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxml-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: x86-mswin32-60
|
6
6
|
authors:
|
7
7
|
- Charlie Savage
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-03-
|
12
|
+
date: 2009-03-07 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -144,7 +144,6 @@ files:
|
|
144
144
|
- test/model/atom.xml
|
145
145
|
- test/model/bands.xml
|
146
146
|
- test/model/books.xml
|
147
|
-
- test/model/definition.dtd
|
148
147
|
- test/model/merge_bug_data.xml
|
149
148
|
- test/model/ruby-lang.html
|
150
149
|
- test/model/rubynet.xml
|
data/test/model/definition.dtd
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<!ELEMENT definition (primary_key|body|reasoning|products)* >
|
2
|
-
<!ATTLIST definition target_entity CDATA #REQUIRED>
|
3
|
-
<!ELEMENT primary_key (#PCDATA)>
|
4
|
-
<!ATTLIST primary_key name CDATA #REQUIRED>
|
5
|
-
<!ELEMENT body (#PCDATA)>
|
6
|
-
<!ELEMENT reasoning (#PCDATA)>
|
7
|
-
<!ELEMENT products (product*)>
|
8
|
-
<!ENTITY % product SYSTEM "lib/dtds/product.dtd"> %product;
|