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/log/Changelog.txt DELETED
@@ -1,435 +0,0 @@
1
- = ChangeLog
2
-
3
- == 2008-02-01 transami
4
-
5
- * Update test scripts to reflect move to test/. (r261)
6
- * Moves tests/ to test/ which is more conventional. (r260)
7
- * Update config file. (r259)
8
- * Moved changelog.xml and changelog.xsl to doc/log/. (r258)
9
- * Added doc/log for xml-based changelog and notes. (r257)
10
-
11
- == 2008-01-31 transami
12
-
13
- * Minor update to a task description in Rakefile. (r256)
14
-
15
- == 2008-01-30 transami
16
-
17
- * Added memory test task. (r255)
18
- * Added work dir for "scrap" material. Modified Rakefile. (r254)
19
- * Fixed adding lib/ to $LOAD_PATH. (r253)
20
-
21
- == 2008-01-22 transami
22
-
23
- * Small fixes to task/make and task/test. (r252)
24
- * Changed all requires for 'libxml_test.rb' to 'libxml'. (r251)
25
- * Removed runner code from tests/. It is now in task/test. (r250)
26
- * Renamed compile to make. (r249)
27
- * Convert task/compile to pure ruby. (r248)
28
- * Moved svn task to admin. (r247)
29
- * Moved admin tasks to admin directory. (r246)
30
- * Added admin/ directory. (r245)
31
- * Remove task/tests. (r244)
32
- * Converted test task to pure ruby. (r243)
33
-
34
- == 2007-12-22 transami
35
-
36
- * Added distclean task. (r242)
37
- * Added svn tasks and metadata. (r241)
38
-
39
- == 2007-12-15 transami
40
-
41
- * Added svn/log task and backward compatability require (xml/libxml.rb). (r240)
42
- * Added doc/changelog.xsl. (r239)
43
- * Moved TODO up a directory level and updated meta/project.yaml. (r238)
44
- * Moved task/config.yaml to meta/config.yaml as required by Ratch 0.4.0. (r237)
45
- * Added packaging tasks. (r236)
46
-
47
- == 2007-12-11 danj
48
-
49
- * fix XML_TEXT_NODE add handling when libxml merges nodes (r235)
50
-
51
- == 2007-12-10 transami
52
-
53
- * Added lib/xml/libxml.rb for backward compatibility. (r234)
54
- * Moved ext/libxml/libxml.rb to lib/. (r233)
55
- * Removed compile prerequisite from test task for now. (r232)
56
- * Fixed extensions attribute inf project.yaml. (r231)
57
- * Added setup task. (r230)
58
- * Fixed tasks to "main". (r229)
59
-
60
- == 2007-12-07 transami
61
-
62
- * Added test and compile tasks. (r228)
63
- * Added version.h. (r227)
64
- * Moved header verison. (r226)
65
-
66
- == 2007-12-06 transami
67
-
68
- * Moved ext/xml to ext/libxml. (r225)
69
-
70
- == 2007-12-04 transami
71
-
72
- * Added meta dir and project.yaml file. (r224)
73
- * Added doc/.rsync-filter and .htaccess (r223)
74
- * Added some tasks. (r222)
75
-
76
- == 2007-12-03 danj
77
-
78
- * raise if parser string set to empty (r221)
79
-
80
- == 2007-11-27 danj
81
-
82
- * fix transposed ruby method mapping (r220)
83
- * apply patch to fix multiple namespaces for .find (submitted by keisukefukuda at gmail.com) (r219)
84
-
85
- == 2007-11-26 danj
86
-
87
- * add docs for to_s and encoding (r218)
88
- * take a step in the right direction with document encoding (r217)
89
- * fix variable reference in ruby_xml_parser_default_load_external_dtd_get (r216)
90
-
91
- == 2007-11-20 transami
92
-
93
- * Added project name. (r215)
94
- * Added log/history (for hand entries) and moved TODO to log/ too. (r214)
95
- * Added a log directory. (r213)
96
-
97
- == 2007-11-20 danj
98
-
99
- * deal with different .find return types, rev to 0.5.2.2 (r212)
100
-
101
- == 2007-11-14 danj
102
-
103
- * add Node#new_text (r211)
104
- * fix expand bug (r210)
105
- * move rwtest to test/ets... (r209)
106
- * add [] to XPath::Object and tests for it (r208)
107
- * full merge from MEM2 r.194 v0.5.2.1 (r207)
108
-
109
- == 2007-10-25 transami
110
-
111
- * Added task/ dir. (r205)
112
- * Further improvements on website. (r204)
113
- * Removed doc/web. (r203)
114
- * Moved doc/web files up one level. (r202)
115
-
116
- == 2007-10-20 transami
117
-
118
- * moved raze to web (r201)
119
- * added image (r200)
120
- * converted site to xml/xslt (r199)
121
- * updated stylesheet (r198)
122
- * removed pages (r197)
123
- * removed pages (r196)
124
- * these are about to be deleted (r195)
125
-
126
- == 2007-08-30 transami
127
-
128
- * remove .cvsignore (r162)
129
- * moved www/ to doc/ (r161)
130
- * removed www/Rakefile (not using Rote any longer) (r160)
131
- * moved www/doc to www/raze (r159)
132
- * removed rote logo (r158)
133
- * added raze logo (r157)
134
- * updated icon (r156)
135
- * added icon (r155)
136
- * website work (r154)
137
- * moved stylesheets to styles (r153)
138
-
139
- == 2007-08-29 transami
140
-
141
- * remove CVSROOT from trunk (r150)
142
- * continued work on website (r149)
143
- * removed res dir (r148)
144
- * continued work on converting website (r147)
145
- * converting website from rote to new system (r146)
146
- * removed libxslt (now in libxsl project) (r145)
147
- * removed libxml subdir (r144)
148
- * moved trunk/libxml/* to trunk/* (r143)
149
-
150
- == 2007-01-14 lrz
151
-
152
- * ===== 14.1.2007 Laurent Sansonetti <lrz at chopine.be>
153
- * Added some preliminary RDoc comments for XML::Reader. (r133)
154
-
155
- == 2006-12-23 roscopeco
156
-
157
- * Replaced RSTRING(str)->len with RSTRING_LEN(str) for future compatibility (r132)
158
-
159
- == 2006-12-05 roscopeco
160
-
161
- * Improved compatibility with MS Visual C:
162
- * Replace void* increment and decrement with char* arithmetic.
163
- * Predeclare all locals
164
- * Removed -Wall (Win32 platform sdk emits *lots* of warnings)
165
- * Fixed extconf for win32 libxml2 and dependencies from http://www.zlatkovic.com/pub/libxml/ (r131)
166
- * removed object file committed by mistake (r130)
167
-
168
- == 2006-12-04 lrz
169
-
170
- * ===== 5.12.2006 Laurent Sansonetti <lrz at chopine.be>
171
- * Added XML::Reader, a set of bindings to the xmlTextReader API. (r129)
172
-
173
- == 2006-12-02 roscopeco
174
-
175
- * Merged release task fix from 0.3.8.4 (r128)
176
-
177
- == 2006-11-30 roscopeco
178
-
179
- * Restore default config after tests to prevent wierd failures in other tests (r124)
180
-
181
- == 2006-11-27 roscopeco
182
-
183
- * Merged from 0.3.8.3:
184
- * Fixed a segfault on node.properties with empty props list (patch from Michael Koziarski)
185
- * Fixed version macros and release version handling (r123)
186
-
187
- == 2006-11-26 roscopeco
188
-
189
- * Merged contributed patches #6604, #6839, #6871
190
- Slight fix to sax error formatting patch (r120)
191
-
192
- == 2006-11-22 roscopeco
193
-
194
- * Fixed non-inclusion of Enumerable on Node::Set (r116)
195
- * Fixed parsing with errors bug (r113)
196
-
197
- == 2006-11-19 roscopeco
198
-
199
- * Merged non-backward-compatible DEV_0_4 changes:
200
-
201
- * Implemented new HTMLParser interface
202
- * Implemented new (faster) SAX callback strategy (r111)
203
- * Merged backward-compatible fixes down from DEV_0_4:
204
-
205
- * Tested fix of bug #4635
206
- * Reimplemented attribute memory handling
207
- * Fixed attribute list traversal (bug #4719)
208
- * Integrated Luc Van Deuren's cdata/comment node patch
209
- * Fixed test-naming bugs
210
- * Fixed doc build bug
211
- * Reimplemented XML::Node memory management
212
- * Reimplemented node copy handling
213
- * Fixed parser error handler proc early GC bug
214
- * include stdarg.h on ruby_xml_document (r107)
215
-
216
- == 2006-11-04 roscopeco
217
-
218
- * Merged stdarg fix (r106)
219
-
220
- == 2006-10-29 roscopeco
221
-
222
- * Remove nodoc from libxml.rb (r96)
223
- * Added benchmarks
224
- Updated project status (r93)
225
-
226
- == 2006-10-20 roscopeco
227
-
228
- * Fixed up new packaging to play nice with 'rake install' (r88)
229
- * Applied gem-build patch from Masashi Shimbo. See:
230
- http://rubyforge.org/pipermail/libxml-devel/2006-August/000205.html (r87)
231
- * Another failing test :( (r86)
232
- * Removed debugging printouts (r85)
233
-
234
- == 2006-08-15 roscopeco
235
-
236
- * Fixed nodelist handling
237
-
238
- Patches from Stephen Veit:
239
- Fixed for windows/visual C compliance
240
- Fixed extconf build for Windows
241
-
242
- (bug 5022, http://rubyforge.org/tracker/index.php?func=detail&aid=5022&group_id=494&atid=1971) (r84)
243
- * Fixed typo in reading example
244
- See: http://rubyforge.org/pipermail/libxml-devel/2006-June/000181.html (r83)
245
-
246
- == 2006-05-31 roscopeco
247
-
248
- * Bugfix: gc_mark both filename and str (r82)
249
- * Fixed a typo bug (r81)
250
-
251
- == 2006-05-28 roscopeco
252
-
253
- * Allow Node#[] and Node#[]= to handle symbol keys (See http://rubyforge.org/pipermail/libxml-devel/2006-May/000135.html) (r80)
254
- * Applied previous node fix (See bug #4497) (r79)
255
-
256
- == 2006-05-10 roscopeco
257
-
258
- * Implemented Node#next= and Node#prev= (r78)
259
- * Fixed incorrect class name (r77)
260
-
261
- == 2006-05-01 roscopeco
262
-
263
- * Removed a duplicate definition (and corresponding warning) (r76)
264
- * dev 0.3.9 (r75)
265
-
266
- == 2006-04-24 roscopeco
267
-
268
- * release 0.3.8 (r73)
269
- * Fixed a bug in release version update (r72)
270
- * changelog/readme update for release (r71)
271
- * Fixed tarball installation to site_ruby (added libxml.rb to install) (r70)
272
- * Check compiler supports -Wall before using it (r69)
273
- * Fixed rake testrunner bug (r68)
274
-
275
- == 2006-04-17 roscopeco
276
-
277
- * Switched .so to libxml_so and introduced libxml.rb to allow easier API prototype / update
278
- Fixed testcases for new require setup (use $LOADPATH rather than filename require) (r67)
279
- * Fixed rdoc build in gems (r66)
280
-
281
- == 2006-04-14 roscopeco
282
-
283
- * Fixed a struct initialization bug I introduced (r65)
284
- * Fixed a build bug I introduced (r64)
285
- * First cut of SAX callback API (r63)
286
- * Include Enumerable (r62)
287
-
288
- == 2006-04-12 roscopeco
289
-
290
- * Typos (r61)
291
- * Extended documentation
292
- Restyled things a little bit
293
- Removed standard Rote readme (r60)
294
- * From Mark Van Holstyn (mvette13 AT gmail DOT com):
295
- * Added XML::Node::Set#first
296
- * Added XML::Node::Set#empty?
297
- * Fixes to XML::Node::Set#to_a
298
- * Added XML::Node#find_first
299
- * Added XML::Node#remove!
300
-
301
- Also:
302
- * Tested the above
303
- * Defined node (hash) equality in terms of XML representation
304
- * Added comparable nodes to TODOs and updated changelog (r59)
305
- * XML::Node#content fix Tim Yamin <plasmaroo AT gentoo DOT org> (r58)
306
- * Added rubygems require to example code (r57)
307
-
308
- == 2006-03-27 roscopeco
309
-
310
- * Implemented & tested XML::Parser.register_error_handler
311
- Doc fixup (XML::DTD -> XML::Dtd) (r56)
312
- * development version roll (r55)
313
-
314
- == 2006-03-21 roscopeco
315
-
316
- * Added RDoc
317
- Updated gem build
318
- Updated instructions (r53)
319
- * Updated instructions (r52)
320
-
321
- == 2006-03-09 roscopeco
322
-
323
- * Implemented better version check (Added RUBY_LIBXSLT_VER_xxx defines)
324
- Updated release versioning in Rakefile (r51)
325
- * Added RUBY_LIBXML_VER_xxx defines for libxslt checking
326
- Updated release versioning in Rakefile
327
- Todo update (r50)
328
- * Fixed copy/paste errors in documentation (r49)
329
-
330
- == 2006-03-08 roscopeco
331
-
332
- * Rakefile bugfix, Readme update, cvs ignorance update (r48)
333
- * Initial revision (r43)
334
-
335
- == 2006-02-28 roscopeco
336
-
337
- * * Ignored vi .swp files
338
- * Updated Changelog
339
- * Updated copyright years
340
- * Removed done todos (r42)
341
-
342
- == 2006-02-27 roscopeco
343
-
344
- * * Fixed issues with -fno-common GCC flag
345
- * Removed OSX -fno-common workaround
346
- * Fixed a couple of typos (r41)
347
-
348
- == 2006-02-23 roscopeco
349
-
350
- * Release 0.3.6 (r40)
351
-
352
- == 2006-02-21 roscopeco
353
-
354
- * Rearranged source layout to suit RubyGems packaging
355
- Removed obsolete (Rubynet) utility scripts (r39)
356
- * Band-aid for OSX build probs (r38)
357
-
358
- == 2006-02-20 roscopeco
359
-
360
- * * Fixed attribute memory handling (http://rubyforge.org/pipermail/libxml-devel/2005-December/000030.html)
361
- * Removed a small leak in ruby_xml_node.
362
- * Fixed parser memory_debug_enabled doc
363
- * Updated shebang in test runner (r37)
364
-
365
- == 2006-01-02 roscopeco
366
-
367
- * Cleaned up casts for GCC 4.0
368
- Migrated from (obsolete) STR2CSTR to StringValuePtr (r36)
369
- * Fixed Make invocation (r35)
370
- * Cleaned up casts for GCC 4.0
371
- Migrated from (obsolete) STR2CSTR to StringValuePtr (r34)
372
-
373
- == 2005-12-29 bshow
374
-
375
- * Initial checkin (r33)
376
- * Added "doc" to cleanfiles; added new task "pubdoc" (r32)
377
- * Added "doc" (r31)
378
- * Prevent RDoc from wrapping copyright notices (r30)
379
-
380
- == 2005-12-19 roscopeco
381
-
382
- * Removed (forgotten) temporary notice for documentation set (r29)
383
- * MIT license (r28)
384
- * better ignorance (r27)
385
- * Initial import (r26)
386
-
387
- == 2004-12-28 tom
388
-
389
- * initial checkin (r25)
390
-
391
- == 2003-09-04 gforge
392
-
393
- * initial checkin (r22)
394
-
395
- == 2003-09-04 tom
396
-
397
- * Test (r24)
398
- * Test (r23)
399
-
400
- == 2003-04-25 tcarrico
401
-
402
- * Updating binary default types (r21)
403
-
404
- == 2003-04-24 tom
405
-
406
- * initial checkin (r20)
407
- * tweak (r19)
408
- * initial checkin (r18)
409
-
410
- == 2003-03-05 tom
411
-
412
- * *** empty log message *** (r17)
413
- * *** empty log message *** (r16)
414
-
415
- == 2003-02-28 (no author)
416
-
417
- * New repository initialized by cvs2svn. (r1)
418
-
419
- == 2003-02-28 tom
420
-
421
- * *** empty log message *** (r15)
422
- * *** empty log message *** (r14)
423
- * *** empty log message *** (r13)
424
- * *** empty log message *** (r12)
425
- * *** empty log message *** (r11)
426
- * *** empty log message *** (r10)
427
- * *** empty log message *** (r9)
428
- * *** empty log message *** (r8)
429
- * *** empty log message *** (r7)
430
- * *** empty log message *** (r6)
431
- * *** empty log message *** (r5)
432
- * *** empty log message *** (r4)
433
- * added newline (r3)
434
- * *** empty log message *** (r2)
435
-
data/meta/project.yaml DELETED
@@ -1,27 +0,0 @@
1
- ---
2
- project : libxml-ruby
3
- title : LibXML-Ruby
4
- summary : Ruby Bindings for GNU/LibXML2
5
- description :
6
- LibXML-Ruby provides bindings to the GNU LibXML2 library.
7
- homepage : "http://libxml.rubyforge.org"
8
- repository : "http://libxml.rubyforge.org/svn/"
9
- contact : Dan Janwoski <danj at 3skel.com>
10
- authors:
11
- - Dan Janwoski
12
- - Ross Bamform
13
- - Sean Chittenden
14
- creator : Sean Chittenden
15
- created : "2004-12-28"
16
-
17
- default : libxml.rb
18
- loadpath :
19
- - lib
20
- - ext/libxml
21
-
22
- # Packaging Information
23
-
24
- exclude : ['work', 'doc', 'ri']
25
- extensions :
26
- - ext/libxml/extconf.rb
27
-
data/meta/unixname DELETED
@@ -1 +0,0 @@
1
- libxml-ruby