libxml-ruby 0.5.4 → 0.6.0

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.
Files changed (139) hide show
  1. data/LICENSE +23 -23
  2. data/README +144 -144
  3. data/ext/libxml/extconf.rb +26 -27
  4. data/ext/libxml/libxml.c +7 -37
  5. data/ext/libxml/{libxml.h → ruby_libxml.h} +93 -98
  6. data/ext/libxml/ruby_xml_attr.c +405 -387
  7. data/ext/libxml/ruby_xml_attr.h +19 -18
  8. data/ext/libxml/ruby_xml_document.c +1111 -1115
  9. data/ext/libxml/ruby_xml_document.h +27 -24
  10. data/ext/libxml/ruby_xml_dtd.c +168 -168
  11. data/ext/libxml/ruby_xml_html_parser.c +449 -450
  12. data/ext/libxml/ruby_xml_html_parser.h +1 -1
  13. data/ext/libxml/ruby_xml_input_cbg.c +158 -158
  14. data/ext/libxml/ruby_xml_node.c +2410 -2395
  15. data/ext/libxml/ruby_xml_node.h +1 -1
  16. data/ext/libxml/ruby_xml_node_set.c +170 -170
  17. data/ext/libxml/ruby_xml_node_set.h +1 -1
  18. data/ext/libxml/ruby_xml_ns.c +153 -153
  19. data/ext/libxml/ruby_xml_ns.h +1 -1
  20. data/ext/libxml/ruby_xml_parser.c +1425 -1422
  21. data/ext/libxml/ruby_xml_parser.h +1 -1
  22. data/ext/libxml/ruby_xml_parser_context.c +750 -716
  23. data/ext/libxml/ruby_xml_parser_context.h +1 -1
  24. data/ext/libxml/ruby_xml_reader.c +900 -896
  25. data/ext/libxml/ruby_xml_sax_parser.c +485 -485
  26. data/ext/libxml/ruby_xml_sax_parser.h +1 -1
  27. data/ext/libxml/ruby_xml_schema.c +146 -142
  28. data/ext/libxml/ruby_xml_state.c +5 -6
  29. data/ext/libxml/ruby_xml_state.h +1 -0
  30. data/ext/libxml/ruby_xml_tree.c +43 -43
  31. data/ext/libxml/ruby_xml_tree.h +1 -1
  32. data/ext/libxml/ruby_xml_xinclude.c +20 -20
  33. data/ext/libxml/ruby_xml_xinclude.h +1 -1
  34. data/ext/libxml/ruby_xml_xpath.c +243 -252
  35. data/ext/libxml/ruby_xml_xpath.h +1 -1
  36. data/ext/libxml/ruby_xml_xpath_context.c +118 -118
  37. data/ext/libxml/ruby_xml_xpath_context.h +1 -1
  38. data/ext/libxml/ruby_xml_xpath_object.c +43 -29
  39. data/ext/libxml/ruby_xml_xpath_object.h +0 -1
  40. data/ext/libxml/ruby_xml_xpointer.c +100 -100
  41. data/ext/libxml/ruby_xml_xpointer.h +1 -1
  42. data/ext/libxml/ruby_xml_xpointer_context.c +21 -21
  43. data/ext/libxml/ruby_xml_xpointer_context.h +1 -1
  44. data/ext/libxml/sax_parser_callbacks.inc +213 -213
  45. data/ext/libxml/version.h +9 -9
  46. data/lib/libxml.rb +24 -3
  47. data/mingw/libiconv-2.dll +0 -0
  48. data/mingw/libxml2-2.dll +0 -0
  49. data/mingw/libxml_ruby.so +0 -0
  50. data/mingw/mingw.rake +36 -0
  51. data/test/dtd-test.rb +24 -24
  52. data/test/etc_doc_to_s.rb +1 -3
  53. data/test/ets_copy_bug.rb +21 -21
  54. data/test/ets_copy_bug2.rb +32 -32
  55. data/test/ets_copy_bug3.rb +38 -0
  56. data/test/ets_doc_file.rb +1 -0
  57. data/test/{model/default_validation_bug.rb → gc.log} +0 -0
  58. data/test/merge_bug.rb +55 -55
  59. data/test/schema-test.rb +74 -74
  60. data/test/tc_well_formed.rb +11 -0
  61. data/test/tc_xml_document.rb +52 -52
  62. data/test/tc_xml_document_write.rb +24 -24
  63. data/test/tc_xml_document_write2.rb +54 -54
  64. data/test/tc_xml_document_write3.rb +96 -96
  65. data/test/tc_xml_html_parser.rb +63 -63
  66. data/test/tc_xml_node.rb +59 -59
  67. data/test/tc_xml_node2.rb +25 -25
  68. data/test/tc_xml_node3.rb +27 -27
  69. data/test/tc_xml_node4.rb +86 -86
  70. data/test/tc_xml_node5.rb +52 -52
  71. data/test/tc_xml_node6.rb +27 -27
  72. data/test/tc_xml_node7.rb +35 -35
  73. data/test/tc_xml_node8.rb +32 -32
  74. data/test/tc_xml_node9.rb +32 -32
  75. data/test/tc_xml_node_set.rb +24 -24
  76. data/test/tc_xml_node_set2.rb +37 -37
  77. data/test/tc_xml_node_xlink.rb +28 -28
  78. data/test/tc_xml_parser.rb +190 -178
  79. data/test/tc_xml_parser2.rb +16 -17
  80. data/test/tc_xml_parser3.rb +23 -23
  81. data/test/tc_xml_parser4.rb +33 -33
  82. data/test/tc_xml_parser5.rb +27 -27
  83. data/test/tc_xml_parser6.rb +23 -23
  84. data/test/tc_xml_parser7.rb +28 -28
  85. data/test/tc_xml_parser8.rb +32 -32
  86. data/test/tc_xml_parser9.rb +11 -0
  87. data/test/tc_xml_parser_context.rb +88 -88
  88. data/test/tc_xml_reader.rb +112 -109
  89. data/test/tc_xml_sax_parser.rb +104 -94
  90. data/test/tc_xml_sax_parser2.rb +51 -0
  91. data/test/tc_xml_xinclude.rb +30 -30
  92. data/test/tc_xml_xpath.rb +38 -38
  93. data/test/tc_xml_xpath2.rb +14 -0
  94. data/test/tc_xml_xpointer.rb +78 -78
  95. data/vc/libxml.sln +20 -0
  96. data/vc/libxml.vcproj +389 -0
  97. data/work/Rakefile +247 -0
  98. data/work/task/make +26 -0
  99. data/work/task/memory +37 -0
  100. data/work/task/rdoc +39 -0
  101. data/work/task/setup +1616 -0
  102. data/work/task/test +29 -0
  103. data/work/test/ets_runner.rb +33 -0
  104. data/work/test/libxml_test.rb +3 -0
  105. data/work/test/runner.rb +0 -0
  106. data/work/test/runner_ets.rb +33 -0
  107. data/work/vc/debug/libxml.exp +0 -0
  108. data/work/vc/debug/libxml.ilk +0 -0
  109. data/work/vc/debug/libxml.lib +0 -0
  110. data/work/vc/debug/libxml.pdb +0 -0
  111. data/work/vc/debug/libxml.so +0 -0
  112. metadata +158 -189
  113. data/MANIFEST +0 -138
  114. data/NOTES +0 -9
  115. data/Rakefile +0 -38
  116. data/TODO +0 -75
  117. data/VERSION +0 -1
  118. data/log/Changelog-0.txt +0 -426
  119. data/log/Changelog.txt +0 -435
  120. data/meta/project.yaml +0 -27
  121. data/meta/unixname +0 -1
  122. data/setup.rb +0 -1472
  123. data/site/css/normal.css +0 -182
  124. data/site/img/raze-tiny.png +0 -0
  125. data/site/img/red-cube.jpg +0 -0
  126. data/site/img/xml-ruby.png +0 -0
  127. data/site/index.xml +0 -43
  128. data/site/install.xml +0 -77
  129. data/site/layout.rhtml +0 -38
  130. data/site/layout.xsl +0 -67
  131. data/site/license.xml +0 -32
  132. data/site/log/changelog.xml +0 -1324
  133. data/site/log/changelog.xsl +0 -42
  134. data/test/model/merge_bug_data.xml +0 -58
  135. data/test/model/rubynet.xml +0 -78
  136. data/test/model/rubynet_project +0 -13
  137. data/test/model/saxtest.xml +0 -5
  138. data/test/model/simple.xml +0 -7
  139. data/test/model/xinclude.xml +0 -5
data/work/task/test ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # TODO: Ensure compile first (but only if needed)
4
+ # system "task/make"
5
+
6
+ # Run unit tests
7
+
8
+ live = ARGV.include?('--live')
9
+
10
+ unless live
11
+ $LOAD_PATH.unshift(File.expand_path('ext/libxml'))
12
+ $LOAD_PATH.unshift(File.expand_path('lib'))
13
+ end
14
+ $LOAD_PATH.unshift('test') # NEEDED?
15
+
16
+ unless glob = ARGV.select{ |a| a !~ /^[-]/ }[0]
17
+ glob = 'test/tc_*.rb'
18
+ end
19
+
20
+ Dir[glob].each do |file|
21
+ next if File.directory?(file)
22
+ begin
23
+ puts "Loading: #{file}" if $DEBUG
24
+ load(file)
25
+ rescue LoadError
26
+ puts "Error loading: #{file}"
27
+ end
28
+ end
29
+
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Allsuite for Eclipse and GEM.
4
+ $LOAD_PATH.unshift File.dirname(__FILE__)
5
+ require "tests/libxml_test"
6
+
7
+ ALL_TESTS = true
8
+ TESTS = File.expand_path(File.dirname(__FILE__))
9
+
10
+ puts ARGV[0]
11
+ if ARGV[0].nil? or ARGV[0]=="rwtest/runner.rb"
12
+ glob = File.join(TESTS, ENV['TESTS'] || '*.rb')
13
+ else
14
+ glob = ARGV[0]
15
+ end
16
+
17
+ Dir[glob].each { |fn|
18
+ next if fn =~ %r{runner.rb$}
19
+ puts "test #{fn}"
20
+ f=Process.fork
21
+ if f.nil?
22
+ require fn
23
+ exit
24
+ end
25
+ rss_k=0
26
+ while (px=Process.wait2(f,Process::WNOHANG)).nil?
27
+ sleep 2
28
+ rss_k2=`ps -o rss= -p #{f}`.to_i
29
+ rss_k=(rss_k2>rss_k) ? rss_k2 : rss_k
30
+ end
31
+ pid,status=px
32
+ puts "\nProcess #{pid} exited status #{status.exitstatus}, max rss(k) #{rss_k}"
33
+ }
@@ -0,0 +1,3 @@
1
+ $LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../ext")
2
+ require "xml/libxml" unless defined?(XML)
3
+ puts "VERSION: #{XML::Parser::VERSION}"
File without changes
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Allsuite for Eclipse and GEM.
4
+ $LOAD_PATH.unshift File.dirname(__FILE__)
5
+ require "tests/libxml_test"
6
+
7
+ ALL_TESTS = true
8
+ TESTS = File.expand_path(File.dirname(__FILE__))
9
+
10
+ puts ARGV[0]
11
+ if ARGV[0].nil? or ARGV[0]=="tests/runner_ets.rb"
12
+ glob = File.join(TESTS, ENV['TESTS'] || 'ets_*.rb')
13
+ else
14
+ glob = ARGV[0]
15
+ end
16
+
17
+ Dir[glob].each { |fn|
18
+ next if fn =~ %r{runner.rb$}
19
+ puts "test #{fn}"
20
+ f=Process.fork
21
+ if f.nil?
22
+ require fn
23
+ exit
24
+ end
25
+ rss_k=0
26
+ while (px=Process.wait2(f,Process::WNOHANG)).nil?
27
+ sleep 2
28
+ rss_k2=`ps -o rss= -p #{f}`.to_i
29
+ rss_k=(rss_k2>rss_k) ? rss_k2 : rss_k
30
+ end
31
+ pid,status=px
32
+ puts "\nProcess #{pid} exited status #{status.exitstatus}, max rss(k) #{rss_k}"
33
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,189 +1,174 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libxml-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
- - Dan Janwoski <danj at 3skel.com>
7
+ - Charlie Savage
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-03-26 00:00:00 -04:00
12
+ date: 2008-07-02 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: LibXML-Ruby provides bindings to the GNU LibXML2 library.
17
- email: danj at 3skel.com
16
+ description: The Libxml-Ruby project provides Ruby language bindings for the GNOME Libxml2 XML toolkit. It is free software, released under the MIT License. Libxml-ruby's primary advantage over REXML is performance - if speed is your need, these are good libraries to consider, as demonstrated by the informal benchmark below.
17
+ email:
18
18
  executables: []
19
19
 
20
20
  extensions:
21
21
  - ext/libxml/extconf.rb
22
- extra_rdoc_files:
22
+ extra_rdoc_files: []
23
+
24
+ files:
23
25
  - README
24
- - Rakefile
25
- - MANIFEST
26
- - NOTES
27
- - CHANGES
28
- - TODO
29
26
  - LICENSE
30
- - VERSION
31
- files:
32
- - Rakefile
33
- - MANIFEST
34
- - test
35
- - test/tc_xml_parser.rb
36
- - test/tc_xml_html_parser.rb
37
- - test/ets_doc_to_s.rb
38
- - test/tc_xml_document_write3.rb
39
- - test/model
40
- - test/model/merge_bug_data.xml
41
- - test/model/xinclude.xml
42
- - test/model/saxtest.xml
43
- - test/model/rubynet.xml
44
- - test/model/simple.xml
45
- - test/model/default_validation_bug.rb
46
- - test/model/rubynet_project
47
- - test/tc_xml_xpath.rb
48
- - test/tc_xml_document_write2.rb
49
- - test/tc_xml_parser_context.rb
50
- - test/ets_test.xml
51
- - test/tc_xml_document.rb
52
- - test/tc_xml_node_text.rb
53
- - test/ets_copy_bug.rb
54
- - test/tc_xml_node.rb
55
- - test/ets_gpx.rb
56
- - test/merge_bug.rb
57
- - test/ets_doc_file.rb
58
- - test/etc_doc_to_s.rb
59
- - test/tc_xml_sax_parser.rb
60
- - test/tc_xml_parser3.rb
61
- - test/dtd-test.rb
62
- - test/tc_xml_parser2.rb
63
- - test/tc_xml_node7.rb
64
- - test/ets_node_gc.rb
65
- - test/tc_xml_node4.rb
66
- - test/tc_xml_xinclude.rb
67
- - test/tc_xml_parser8.rb
68
- - test/tc_xml_document_write.rb
69
- - test/tc_xml_node2.rb
70
- - test/tc_xml_node_xlink.rb
71
- - test/tc_xml_node3.rb
72
- - test/tc_xml_reader.rb
73
- - test/tc_xml_xpointer.rb
74
- - test/tc_xml_node8.rb
75
- - test/schema-test.rb
76
- - test/tc_xml_node9.rb
77
- - test/ets_copy_bug2.rb
78
- - test/tc_xml_parser7.rb
79
- - test/tc_xml_node_set.rb
80
- - test/tc_xml_parser4.rb
81
- - test/tc_xml_parser6.rb
82
- - test/tc_xml_node5.rb
83
- - test/tc_xml_node_copy.rb
84
- - test/ets_tsr.rb
85
- - test/tc_xml_parser5.rb
86
- - test/tc_xml_node6.rb
87
- - test/tc_xml_node_set2.rb
88
- - NOTES
89
27
  - CHANGES
90
- - TODO
91
- - LICENSE
92
- - README
93
- - ext
94
28
  - ext/libxml
95
- - ext/libxml/ruby_xml_xpointer_context.c
96
- - ext/libxml/ruby_xml_reader.h
97
- - ext/libxml/ruby_xml_dtd.h
98
- - ext/libxml/ruby_xml_xpointer.h
99
- - ext/libxml/ruby_xml_tree.h
100
- - ext/libxml/ruby_xml_xpath_context.c
101
- - ext/libxml/ruby_xml_schema.c
102
- - ext/libxml/ruby_xml_parser.c
103
- - ext/libxml/ruby_xml_parser.h
104
- - ext/libxml/ruby_xml_html_parser.c
105
- - ext/libxml/ruby_xml_node_set.c
106
- - ext/libxml/ruby_xml_xpath_object.h
107
- - ext/libxml/ruby_xml_tree.c
108
- - ext/libxml/libxml.h
109
- - ext/libxml/ruby_xml_attr.h
29
+ - ext/libxml/cbg.c
30
+ - ext/libxml/extconf.rb
110
31
  - ext/libxml/libxml.c
32
+ - ext/libxml/ruby_libxml.h
111
33
  - ext/libxml/ruby_xml_attr.c
112
- - ext/libxml/ruby_xml_input_cbg.h
113
- - ext/libxml/ruby_xml_schema.h
114
- - ext/libxml/cbg.c
115
- - ext/libxml/ruby_xml_xpath.h
116
- - ext/libxml/ruby_xml_ns.c
34
+ - ext/libxml/ruby_xml_attr.h
117
35
  - ext/libxml/ruby_xml_document.c
118
- - ext/libxml/ruby_xml_xpath_context.h
119
- - ext/libxml/ruby_xml_reader.c
120
- - ext/libxml/ruby_xml_xpointer_context.h
36
+ - ext/libxml/ruby_xml_document.h
37
+ - ext/libxml/ruby_xml_dtd.c
38
+ - ext/libxml/ruby_xml_dtd.h
39
+ - ext/libxml/ruby_xml_html_parser.c
40
+ - ext/libxml/ruby_xml_html_parser.h
41
+ - ext/libxml/ruby_xml_input_cbg.c
42
+ - ext/libxml/ruby_xml_input_cbg.h
121
43
  - ext/libxml/ruby_xml_node.c
44
+ - ext/libxml/ruby_xml_node.h
45
+ - ext/libxml/ruby_xml_node_set.c
46
+ - ext/libxml/ruby_xml_node_set.h
47
+ - ext/libxml/ruby_xml_ns.c
122
48
  - ext/libxml/ruby_xml_ns.h
123
- - ext/libxml/version.h
124
- - ext/libxml/sax_parser_callbacks.inc
49
+ - ext/libxml/ruby_xml_parser.c
50
+ - ext/libxml/ruby_xml_parser.h
125
51
  - ext/libxml/ruby_xml_parser_context.c
126
52
  - ext/libxml/ruby_xml_parser_context.h
127
- - ext/libxml/ruby_xml_sax_parser.h
53
+ - ext/libxml/ruby_xml_reader.c
54
+ - ext/libxml/ruby_xml_reader.h
128
55
  - ext/libxml/ruby_xml_sax_parser.c
129
- - ext/libxml/ruby_xml_xpointer.c
130
- - ext/libxml/ruby_xml_xpath_object.c
56
+ - ext/libxml/ruby_xml_sax_parser.h
57
+ - ext/libxml/ruby_xml_schema.c
58
+ - ext/libxml/ruby_xml_schema.h
131
59
  - ext/libxml/ruby_xml_state.c
132
- - ext/libxml/ruby_xml_xpath.c
133
- - ext/libxml/extconf.rb
134
- - ext/libxml/ruby_xml_input_cbg.c
135
- - ext/libxml/ruby_xml_xinclude.h
136
- - ext/libxml/ruby_xml_xinclude.c
137
60
  - ext/libxml/ruby_xml_state.h
138
- - ext/libxml/ruby_xml_document.h
139
- - ext/libxml/ruby_xml_dtd.c
140
- - ext/libxml/ruby_xml_node_set.h
141
- - ext/libxml/ruby_xml_node.h
142
- - ext/libxml/ruby_xml_html_parser.h
143
- - setup.rb
144
- - meta
145
- - meta/project.yaml
146
- - meta/unixname
147
- - site
148
- - site/img
149
- - site/img/xml-ruby.png
150
- - site/img/red-cube.jpg
151
- - site/img/raze-tiny.png
152
- - site/layout.rhtml
153
- - site/license.xml
154
- - site/layout.xsl
155
- - site/index.xml
156
- - site/install.xml
157
- - site/css
158
- - site/css/normal.css
159
- - site/log
160
- - site/log/changelog.xml
161
- - site/log/changelog.xsl
162
- - lib
61
+ - ext/libxml/ruby_xml_tree.c
62
+ - ext/libxml/ruby_xml_tree.h
63
+ - ext/libxml/ruby_xml_xinclude.c
64
+ - ext/libxml/ruby_xml_xinclude.h
65
+ - ext/libxml/ruby_xml_xpath.c
66
+ - ext/libxml/ruby_xml_xpath.h
67
+ - ext/libxml/ruby_xml_xpath_context.c
68
+ - ext/libxml/ruby_xml_xpath_context.h
69
+ - ext/libxml/ruby_xml_xpath_object.c
70
+ - ext/libxml/ruby_xml_xpath_object.h
71
+ - ext/libxml/ruby_xml_xpointer.c
72
+ - ext/libxml/ruby_xml_xpointer.h
73
+ - ext/libxml/ruby_xml_xpointer_context.c
74
+ - ext/libxml/ruby_xml_xpointer_context.h
75
+ - ext/libxml/sax_parser_callbacks.inc
76
+ - ext/libxml/version.h
163
77
  - lib/libxml.rb
164
78
  - lib/xml
165
79
  - lib/xml/libxml.rb
166
- - VERSION
167
- - log
168
- - log/Changelog.txt
169
- - log/Changelog-0.txt
80
+ - mingw/mingw.rake
81
+ - mingw/libiconv-2.dll
82
+ - mingw/libxml2-2.dll
83
+ - mingw/libxml_ruby.so
84
+ - test/dtd-test.rb
85
+ - test/etc_doc_to_s.rb
86
+ - test/ets_copy_bug.rb
87
+ - test/ets_copy_bug2.rb
88
+ - test/ets_copy_bug3.rb
89
+ - test/ets_doc_file.rb
90
+ - test/ets_doc_to_s.rb
91
+ - test/ets_gpx.rb
92
+ - test/ets_node_gc.rb
93
+ - test/ets_test.xml
94
+ - test/ets_tsr.rb
95
+ - test/gc.log
96
+ - test/merge_bug.rb
97
+ - test/model
98
+ - test/schema-test.rb
99
+ - test/tc_well_formed.rb
100
+ - test/tc_xml_document.rb
101
+ - test/tc_xml_document_write.rb
102
+ - test/tc_xml_document_write2.rb
103
+ - test/tc_xml_document_write3.rb
104
+ - test/tc_xml_html_parser.rb
105
+ - test/tc_xml_node.rb
106
+ - test/tc_xml_node2.rb
107
+ - test/tc_xml_node3.rb
108
+ - test/tc_xml_node4.rb
109
+ - test/tc_xml_node5.rb
110
+ - test/tc_xml_node6.rb
111
+ - test/tc_xml_node7.rb
112
+ - test/tc_xml_node8.rb
113
+ - test/tc_xml_node9.rb
114
+ - test/tc_xml_node_copy.rb
115
+ - test/tc_xml_node_set.rb
116
+ - test/tc_xml_node_set2.rb
117
+ - test/tc_xml_node_text.rb
118
+ - test/tc_xml_node_xlink.rb
119
+ - test/tc_xml_parser.rb
120
+ - test/tc_xml_parser2.rb
121
+ - test/tc_xml_parser3.rb
122
+ - test/tc_xml_parser4.rb
123
+ - test/tc_xml_parser5.rb
124
+ - test/tc_xml_parser6.rb
125
+ - test/tc_xml_parser7.rb
126
+ - test/tc_xml_parser8.rb
127
+ - test/tc_xml_parser9.rb
128
+ - test/tc_xml_parser_context.rb
129
+ - test/tc_xml_reader.rb
130
+ - test/tc_xml_sax_parser.rb
131
+ - test/tc_xml_sax_parser2.rb
132
+ - test/tc_xml_xinclude.rb
133
+ - test/tc_xml_xpath.rb
134
+ - test/tc_xml_xpath2.rb
135
+ - test/tc_xml_xpointer.rb
136
+ - vc/libxml.sln
137
+ - vc/libxml.vcproj
138
+ - work/Rakefile
139
+ - work/task
140
+ - work/test
141
+ - work/vc
142
+ - work/task/make
143
+ - work/task/memory
144
+ - work/task/rdoc
145
+ - work/task/setup
146
+ - work/task/test
147
+ - work/test/ets_runner.rb
148
+ - work/test/libxml_test.rb
149
+ - work/test/runner.rb
150
+ - work/test/runner_ets.rb
151
+ - work/vc/debug
152
+ - work/vc/debug/libxml.exp
153
+ - work/vc/debug/libxml.ilk
154
+ - work/vc/debug/libxml.lib
155
+ - work/vc/debug/libxml.pdb
156
+ - work/vc/debug/libxml.so
170
157
  has_rdoc: true
171
- homepage: http://libxml.rubyforge.org
158
+ homepage: http://libxml.rubyforge.org/
172
159
  post_install_message:
173
160
  rdoc_options:
174
- - --inline-source
175
161
  - --title
176
- - LibXML-Ruby
177
- - --main
178
- - README
162
+ - libxml-ruby
163
+ - --inline-source
164
+ - --line-numbers
179
165
  require_paths:
180
166
  - lib
181
- - ext/libxml
182
167
  required_ruby_version: !ruby/object:Gem::Requirement
183
168
  requirements:
184
169
  - - ">="
185
170
  - !ruby/object:Gem::Version
186
- version: "0"
171
+ version: 1.8.4
187
172
  version:
188
173
  required_rubygems_version: !ruby/object:Gem::Requirement
189
174
  requirements:
@@ -193,62 +178,46 @@ required_rubygems_version: !ruby/object:Gem::Requirement
193
178
  version:
194
179
  requirements: []
195
180
 
196
- rubyforge_project: libxml
181
+ rubyforge_project: libxml-ruby
197
182
  rubygems_version: 1.0.1
198
183
  signing_key:
199
184
  specification_version: 2
200
- summary: Ruby Bindings for GNU/LibXML2
185
+ summary: Ruby libxml bindings
201
186
  test_files:
202
- - test/tc_xml_parser.rb
203
- - test/tc_xml_html_parser.rb
204
- - test/ets_doc_to_s.rb
205
- - test/tc_xml_document_write3.rb
206
- - test/model
207
- - test/model/merge_bug_data.xml
208
- - test/model/xinclude.xml
209
- - test/model/saxtest.xml
210
- - test/model/rubynet.xml
211
- - test/model/simple.xml
212
- - test/model/default_validation_bug.rb
213
- - test/model/rubynet_project
214
- - test/tc_xml_xpath.rb
215
- - test/tc_xml_document_write2.rb
216
- - test/tc_xml_parser_context.rb
217
- - test/ets_test.xml
187
+ - test/tc_well_formed.rb
218
188
  - test/tc_xml_document.rb
219
- - test/tc_xml_node_text.rb
220
- - test/ets_copy_bug.rb
221
- - test/tc_xml_node.rb
222
- - test/ets_gpx.rb
223
- - test/merge_bug.rb
224
- - test/ets_doc_file.rb
225
- - test/etc_doc_to_s.rb
226
- - test/tc_xml_sax_parser.rb
227
- - test/tc_xml_parser3.rb
228
- - test/dtd-test.rb
229
- - test/tc_xml_parser2.rb
230
- - test/tc_xml_node7.rb
231
- - test/ets_node_gc.rb
232
- - test/tc_xml_node4.rb
233
- - test/tc_xml_xinclude.rb
234
- - test/tc_xml_parser8.rb
235
189
  - test/tc_xml_document_write.rb
190
+ - test/tc_xml_document_write2.rb
191
+ - test/tc_xml_document_write3.rb
192
+ - test/tc_xml_html_parser.rb
193
+ - test/tc_xml_node.rb
236
194
  - test/tc_xml_node2.rb
237
- - test/tc_xml_node_xlink.rb
238
195
  - test/tc_xml_node3.rb
239
- - test/tc_xml_reader.rb
240
- - test/tc_xml_xpointer.rb
196
+ - test/tc_xml_node4.rb
197
+ - test/tc_xml_node5.rb
198
+ - test/tc_xml_node6.rb
199
+ - test/tc_xml_node7.rb
241
200
  - test/tc_xml_node8.rb
242
- - test/schema-test.rb
243
201
  - test/tc_xml_node9.rb
244
- - test/ets_copy_bug2.rb
245
- - test/tc_xml_parser7.rb
202
+ - test/tc_xml_node_copy.rb
246
203
  - test/tc_xml_node_set.rb
204
+ - test/tc_xml_node_set2.rb
205
+ - test/tc_xml_node_text.rb
206
+ - test/tc_xml_node_xlink.rb
207
+ - test/tc_xml_parser.rb
208
+ - test/tc_xml_parser2.rb
209
+ - test/tc_xml_parser3.rb
247
210
  - test/tc_xml_parser4.rb
248
- - test/tc_xml_parser6.rb
249
- - test/tc_xml_node5.rb
250
- - test/tc_xml_node_copy.rb
251
- - test/ets_tsr.rb
252
211
  - test/tc_xml_parser5.rb
253
- - test/tc_xml_node6.rb
254
- - test/tc_xml_node_set2.rb
212
+ - test/tc_xml_parser6.rb
213
+ - test/tc_xml_parser7.rb
214
+ - test/tc_xml_parser8.rb
215
+ - test/tc_xml_parser9.rb
216
+ - test/tc_xml_parser_context.rb
217
+ - test/tc_xml_reader.rb
218
+ - test/tc_xml_sax_parser.rb
219
+ - test/tc_xml_sax_parser2.rb
220
+ - test/tc_xml_xinclude.rb
221
+ - test/tc_xml_xpath.rb
222
+ - test/tc_xml_xpath2.rb
223
+ - test/tc_xml_xpointer.rb
data/MANIFEST DELETED
@@ -1,138 +0,0 @@
1
- Rakefile
2
- MANIFEST
3
- test
4
- test/tc_xml_parser.rb
5
- test/tc_xml_html_parser.rb
6
- test/ets_doc_to_s.rb
7
- test/tc_xml_document_write3.rb
8
- test/model
9
- test/model/merge_bug_data.xml
10
- test/model/xinclude.xml
11
- test/model/saxtest.xml
12
- test/model/rubynet.xml
13
- test/model/simple.xml
14
- test/model/default_validation_bug.rb
15
- test/model/rubynet_project
16
- test/tc_xml_xpath.rb
17
- test/tc_xml_document_write2.rb
18
- test/tc_xml_parser_context.rb
19
- test/ets_test.xml
20
- test/tc_xml_document.rb
21
- test/tc_xml_node_text.rb
22
- test/ets_copy_bug.rb
23
- test/tc_xml_node.rb
24
- test/ets_gpx.rb
25
- test/merge_bug.rb
26
- test/ets_doc_file.rb
27
- test/etc_doc_to_s.rb
28
- test/tc_xml_sax_parser.rb
29
- test/tc_xml_parser3.rb
30
- test/dtd-test.rb
31
- test/tc_xml_parser2.rb
32
- test/tc_xml_node7.rb
33
- test/ets_node_gc.rb
34
- test/tc_xml_node4.rb
35
- test/tc_xml_xinclude.rb
36
- test/tc_xml_parser8.rb
37
- test/tc_xml_document_write.rb
38
- test/tc_xml_node2.rb
39
- test/tc_xml_node_xlink.rb
40
- test/tc_xml_node3.rb
41
- test/tc_xml_reader.rb
42
- test/tc_xml_xpointer.rb
43
- test/tc_xml_node8.rb
44
- test/schema-test.rb
45
- test/tc_xml_node9.rb
46
- test/ets_copy_bug2.rb
47
- test/tc_xml_parser7.rb
48
- test/tc_xml_node_set.rb
49
- test/tc_xml_parser4.rb
50
- test/tc_xml_parser6.rb
51
- test/tc_xml_node5.rb
52
- test/tc_xml_node_copy.rb
53
- test/ets_tsr.rb
54
- test/tc_xml_parser5.rb
55
- test/tc_xml_node6.rb
56
- test/tc_xml_node_set2.rb
57
- NOTES
58
- CHANGES
59
- TODO
60
- LICENSE
61
- README
62
- ext
63
- ext/libxml
64
- ext/libxml/ruby_xml_xpointer_context.c
65
- ext/libxml/ruby_xml_reader.h
66
- ext/libxml/ruby_xml_dtd.h
67
- ext/libxml/ruby_xml_xpointer.h
68
- ext/libxml/ruby_xml_tree.h
69
- ext/libxml/ruby_xml_xpath_context.c
70
- ext/libxml/ruby_xml_schema.c
71
- ext/libxml/ruby_xml_parser.c
72
- ext/libxml/ruby_xml_parser.h
73
- ext/libxml/ruby_xml_html_parser.c
74
- ext/libxml/ruby_xml_node_set.c
75
- ext/libxml/ruby_xml_xpath_object.h
76
- ext/libxml/ruby_xml_tree.c
77
- ext/libxml/libxml.h
78
- ext/libxml/ruby_xml_attr.h
79
- ext/libxml/libxml.c
80
- ext/libxml/ruby_xml_attr.c
81
- ext/libxml/ruby_xml_input_cbg.h
82
- ext/libxml/ruby_xml_schema.h
83
- ext/libxml/cbg.c
84
- ext/libxml/ruby_xml_xpath.h
85
- ext/libxml/ruby_xml_ns.c
86
- ext/libxml/ruby_xml_document.c
87
- ext/libxml/ruby_xml_xpath_context.h
88
- ext/libxml/ruby_xml_reader.c
89
- ext/libxml/ruby_xml_xpointer_context.h
90
- ext/libxml/ruby_xml_node.c
91
- ext/libxml/ruby_xml_ns.h
92
- ext/libxml/version.h
93
- ext/libxml/sax_parser_callbacks.inc
94
- ext/libxml/ruby_xml_parser_context.c
95
- ext/libxml/ruby_xml_parser_context.h
96
- ext/libxml/ruby_xml_sax_parser.h
97
- ext/libxml/ruby_xml_sax_parser.c
98
- ext/libxml/ruby_xml_xpointer.c
99
- ext/libxml/ruby_xml_xpath_object.c
100
- ext/libxml/ruby_xml_state.c
101
- ext/libxml/ruby_xml_xpath.c
102
- ext/libxml/extconf.rb
103
- ext/libxml/ruby_xml_input_cbg.c
104
- ext/libxml/ruby_xml_xinclude.h
105
- ext/libxml/ruby_xml_xinclude.c
106
- ext/libxml/ruby_xml_state.h
107
- ext/libxml/ruby_xml_document.h
108
- ext/libxml/ruby_xml_dtd.c
109
- ext/libxml/ruby_xml_node_set.h
110
- ext/libxml/ruby_xml_node.h
111
- ext/libxml/ruby_xml_html_parser.h
112
- setup.rb
113
- meta
114
- meta/project.yaml
115
- meta/unixname
116
- site
117
- site/img
118
- site/img/xml-ruby.png
119
- site/img/red-cube.jpg
120
- site/img/raze-tiny.png
121
- site/layout.rhtml
122
- site/license.xml
123
- site/layout.xsl
124
- site/index.xml
125
- site/install.xml
126
- site/css
127
- site/css/normal.css
128
- site/log
129
- site/log/changelog.xml
130
- site/log/changelog.xsl
131
- lib
132
- lib/libxml.rb
133
- lib/xml
134
- lib/xml/libxml.rb
135
- VERSION
136
- log
137
- log/Changelog.txt
138
- log/Changelog-0.txt
data/NOTES DELETED
@@ -1,9 +0,0 @@
1
-
2
- [Put Current Release Notes here]
3
-
4
- ==== BUGS
5
-
6
- * Some C funcs need more NULL checking, they're throwing wierd
7
- ArgumentErrors into RubyLand. See TODOs in source.
8
-
9
-