mkrf 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. data/CHANGELOG +2 -0
  2. data/MIT-LICENSE +7 -0
  3. data/README +54 -0
  4. data/Rakefile +107 -0
  5. data/lib/mkrf.rb +4 -0
  6. data/lib/mkrf/availability.rb +219 -0
  7. data/lib/mkrf/generator.rb +146 -0
  8. data/test/abstract_unit.rb +4 -0
  9. data/test/fixtures/down_a_directory/header_down_a_directory.h +1 -0
  10. data/test/fixtures/stdmkrf.h +1 -0
  11. data/test/sample_files/libtrivial/Rakefile +31 -0
  12. data/test/sample_files/libtrivial/extconf.rb +3 -0
  13. data/test/sample_files/libtrivial/lib/libtrivial.c +5 -0
  14. data/test/sample_files/libtrivial/lib/libtrivial.o +0 -0
  15. data/test/sample_files/libtrivial/libtrivial_so.bundle +0 -0
  16. data/test/sample_files/libtrivial/mkrf.log +1 -0
  17. data/test/sample_files/libxml-ruby-0.3.8/CHANGELOG +74 -0
  18. data/test/sample_files/libxml-ruby-0.3.8/LICENSE +22 -0
  19. data/test/sample_files/libxml-ruby-0.3.8/README +144 -0
  20. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.c +76 -0
  21. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/extconf.rb +49 -0
  22. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.c +86 -0
  23. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.h +82 -0
  24. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.rb +107 -0
  25. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log +1 -0
  26. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/old_extconf.rb +95 -0
  27. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.c +372 -0
  28. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.h +21 -0
  29. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.c +224 -0
  30. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.h +21 -0
  31. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.c +1159 -0
  32. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.h +27 -0
  33. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c +168 -0
  34. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.h +17 -0
  35. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.c +167 -0
  36. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.h +21 -0
  37. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.c +2139 -0
  38. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.h +28 -0
  39. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.c +248 -0
  40. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.h +26 -0
  41. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.c +153 -0
  42. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.h +21 -0
  43. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.c +1417 -0
  44. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.h +31 -0
  45. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c +715 -0
  46. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.h +22 -0
  47. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.c +426 -0
  48. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.h +52 -0
  49. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.c +142 -0
  50. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h +16 -0
  51. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.c +43 -0
  52. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.h +12 -0
  53. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c +20 -0
  54. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.h +13 -0
  55. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.c +363 -0
  56. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.h +24 -0
  57. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.c +125 -0
  58. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.h +24 -0
  59. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.c +100 -0
  60. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.h +27 -0
  61. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.c +21 -0
  62. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.h +18 -0
  63. data/test/sample_files/libxml-ruby-0.3.8/ext/xml/sax_parser_callbacks.inc +202 -0
  64. data/test/sample_files/syck-0.55/CHANGELOG +186 -0
  65. data/test/sample_files/syck-0.55/COPYING +54 -0
  66. data/test/sample_files/syck-0.55/Makefile +582 -0
  67. data/test/sample_files/syck-0.55/Makefile.am +5 -0
  68. data/test/sample_files/syck-0.55/Makefile.in +582 -0
  69. data/test/sample_files/syck-0.55/README +105 -0
  70. data/test/sample_files/syck-0.55/README.BYTECODE +484 -0
  71. data/test/sample_files/syck-0.55/README.EXT +444 -0
  72. data/test/sample_files/syck-0.55/RELEASE +123 -0
  73. data/test/sample_files/syck-0.55/TODO +25 -0
  74. data/test/sample_files/syck-0.55/aclocal.m4 +883 -0
  75. data/test/sample_files/syck-0.55/bootstrap +7 -0
  76. data/test/sample_files/syck-0.55/config.h +79 -0
  77. data/test/sample_files/syck-0.55/config.h.in +78 -0
  78. data/test/sample_files/syck-0.55/config.status +1197 -0
  79. data/test/sample_files/syck-0.55/config/README +14 -0
  80. data/test/sample_files/syck-0.55/config/depcomp +529 -0
  81. data/test/sample_files/syck-0.55/config/install-sh +323 -0
  82. data/test/sample_files/syck-0.55/config/missing +357 -0
  83. data/test/sample_files/syck-0.55/configure +6728 -0
  84. data/test/sample_files/syck-0.55/configure.in +36 -0
  85. data/test/sample_files/syck-0.55/ext/ruby/CHANGELOG +303 -0
  86. data/test/sample_files/syck-0.55/ext/ruby/README +400 -0
  87. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/MANIFEST +1 -0
  88. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.c +1170 -0
  89. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.c +1224 -0
  90. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb +10 -0
  91. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.c +1894 -0
  92. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.h +79 -0
  93. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.c +174 -0
  94. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.c +2989 -0
  95. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log +1 -0
  96. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c +407 -0
  97. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.c +2385 -0
  98. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.c +504 -0
  99. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h +458 -0
  100. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/token.c +2707 -0
  101. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.c +250 -0
  102. data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yamlbyte.h +170 -0
  103. data/test/sample_files/syck-0.55/ext/ruby/install.rb +1022 -0
  104. data/test/sample_files/syck-0.55/ext/ruby/lib/okay.rb +161 -0
  105. data/test/sample_files/syck-0.55/ext/ruby/lib/okay/news.rb +69 -0
  106. data/test/sample_files/syck-0.55/ext/ruby/lib/okay/rpc.rb +434 -0
  107. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml.rb +436 -0
  108. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/baseemitter.rb +247 -0
  109. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/basenode.rb +216 -0
  110. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/compat.rb +26 -0
  111. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/constants.rb +45 -0
  112. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/dbm.rb +111 -0
  113. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/emitter.rb +107 -0
  114. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/encoding.rb +33 -0
  115. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb +34 -0
  116. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/rubytypes.rb +438 -0
  117. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/store.rb +29 -0
  118. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stream.rb +40 -0
  119. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stringio.rb +83 -0
  120. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/syck.rb +19 -0
  121. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/tag.rb +86 -0
  122. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/types.rb +188 -0
  123. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/yamlnode.rb +54 -0
  124. data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/ypath.rb +52 -0
  125. data/test/sample_files/syck-0.55/ext/ruby/lib/yod.rb +1168 -0
  126. data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-modules.rb +27 -0
  127. data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb +336 -0
  128. data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-validate.rb +341 -0
  129. data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-client.rb +51 -0
  130. data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-server.rb +85 -0
  131. data/test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb +128 -0
  132. data/test/sample_files/syck-0.55/ext/ruby/tests/basic.rb +1653 -0
  133. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsAnchorAlias.yml +51 -0
  134. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBasicTests.yml +282 -0
  135. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockMapping.yml +78 -0
  136. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockSequence.yml +0 -0
  137. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsDocumentSeparator.yml +102 -0
  138. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsErrorTests.yml +23 -0
  139. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFlowCollections.yml +73 -0
  140. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFoldedScalars.yml +215 -0
  141. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsMapInSeq.yml +0 -0
  142. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsNullsAndEmpties.yml +66 -0
  143. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsRubyTests.yml +182 -0
  144. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsSpecificationExamples.yml +2699 -0
  145. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsTypeTransfers.yml +265 -0
  146. data/test/sample_files/syck-0.55/ext/ruby/yts/YtsYpath.yml +221 -0
  147. data/test/sample_files/syck-0.55/ext/ruby/yts/cookbook.rb +159 -0
  148. data/test/sample_files/syck-0.55/ext/ruby/yts/index.yml +10 -0
  149. data/test/sample_files/syck-0.55/ext/ruby/yts/yts.rb +193 -0
  150. data/test/sample_files/syck-0.55/lib/Makefile +497 -0
  151. data/test/sample_files/syck-0.55/lib/Makefile.am +27 -0
  152. data/test/sample_files/syck-0.55/lib/Makefile.in +497 -0
  153. data/test/sample_files/syck-0.55/lib/bytecode.c +1170 -0
  154. data/test/sample_files/syck-0.55/lib/bytecode.re +525 -0
  155. data/test/sample_files/syck-0.55/lib/emitter.c +1224 -0
  156. data/test/sample_files/syck-0.55/lib/gram.c +1894 -0
  157. data/test/sample_files/syck-0.55/lib/gram.h +79 -0
  158. data/test/sample_files/syck-0.55/lib/gram.output +2005 -0
  159. data/test/sample_files/syck-0.55/lib/gram.y +481 -0
  160. data/test/sample_files/syck-0.55/lib/handler.c +174 -0
  161. data/test/sample_files/syck-0.55/lib/implicit.c +2989 -0
  162. data/test/sample_files/syck-0.55/lib/implicit.re +206 -0
  163. data/test/sample_files/syck-0.55/lib/node.c +407 -0
  164. data/test/sample_files/syck-0.55/lib/syck.c +504 -0
  165. data/test/sample_files/syck-0.55/lib/syck.h +458 -0
  166. data/test/sample_files/syck-0.55/lib/syck_st.c +577 -0
  167. data/test/sample_files/syck-0.55/lib/syck_st.h +46 -0
  168. data/test/sample_files/syck-0.55/lib/token.c +2707 -0
  169. data/test/sample_files/syck-0.55/lib/token.re +1139 -0
  170. data/test/sample_files/syck-0.55/lib/yaml2byte.c +250 -0
  171. data/test/sample_files/syck-0.55/lib/yamlbyte.h +170 -0
  172. data/test/sample_files/syck-0.55/stamp-h1 +1 -0
  173. data/test/sample_files/syck-0.55/tests/Basic.c +141 -0
  174. data/test/sample_files/syck-0.55/tests/CuTest.c +294 -0
  175. data/test/sample_files/syck-0.55/tests/CuTest.h +84 -0
  176. data/test/sample_files/syck-0.55/tests/Emit.c +87 -0
  177. data/test/sample_files/syck-0.55/tests/Makefile +480 -0
  178. data/test/sample_files/syck-0.55/tests/Makefile.am +13 -0
  179. data/test/sample_files/syck-0.55/tests/Makefile.in +480 -0
  180. data/test/sample_files/syck-0.55/tests/Parse.c +208 -0
  181. data/test/sample_files/syck-0.55/tests/YTS.c +2310 -0
  182. data/test/sample_files/syck-0.55/tests/YTS.c.erb +326 -0
  183. data/test/sample_files/syck-0.55/tests/YTS.c.rb +44 -0
  184. data/test/test_availability.rb +68 -0
  185. data/test/test_generator.rb +74 -0
  186. metadata +252 -0
metadata ADDED
@@ -0,0 +1,252 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.11
3
+ specification_version: 1
4
+ name: mkrf
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.1.0
7
+ date: 2006-06-28 00:00:00 -07:00
8
+ summary: Generate Rakefiles to Build C Extensions to Ruby
9
+ require_paths:
10
+ - lib
11
+ email: kevin.clark@gmail.com
12
+ homepage: http://glu.ttono.us
13
+ rubyforge_project: mkrf
14
+ description: This proposed replacement to mkmf generates Rakefiles to build C Extensions.
15
+ autorequire: mkrf
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ authors:
29
+ - Kevin Clark
30
+ files:
31
+ - Rakefile
32
+ - README
33
+ - CHANGELOG
34
+ - MIT-LICENSE
35
+ - lib/mkrf
36
+ - lib/mkrf.rb
37
+ - lib/mkrf/availability.rb
38
+ - lib/mkrf/generator.rb
39
+ - test/abstract_unit.rb
40
+ - test/fixtures
41
+ - test/sample_files
42
+ - test/test_availability.rb
43
+ - test/test_generator.rb
44
+ - test/fixtures/down_a_directory
45
+ - test/fixtures/stdmkrf.h
46
+ - test/fixtures/down_a_directory/header_down_a_directory.h
47
+ - test/sample_files/libtrivial
48
+ - test/sample_files/libxml-ruby-0.3.8
49
+ - test/sample_files/syck-0.55
50
+ - test/sample_files/libtrivial/extconf.rb
51
+ - test/sample_files/libtrivial/lib
52
+ - test/sample_files/libtrivial/libtrivial_so.bundle
53
+ - test/sample_files/libtrivial/mkrf.log
54
+ - test/sample_files/libtrivial/Rakefile
55
+ - test/sample_files/libtrivial/lib/libtrivial.c
56
+ - test/sample_files/libtrivial/lib/libtrivial.o
57
+ - test/sample_files/libxml-ruby-0.3.8/CHANGELOG
58
+ - test/sample_files/libxml-ruby-0.3.8/ext
59
+ - test/sample_files/libxml-ruby-0.3.8/LICENSE
60
+ - test/sample_files/libxml-ruby-0.3.8/README
61
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml
62
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.c
63
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/extconf.rb
64
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.c
65
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.h
66
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.rb
67
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log
68
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/old_extconf.rb
69
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.c
70
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.h
71
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.c
72
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.h
73
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.c
74
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.h
75
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c
76
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.h
77
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.c
78
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.h
79
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.c
80
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.h
81
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.c
82
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.h
83
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.c
84
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.h
85
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.c
86
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.h
87
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c
88
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.h
89
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.c
90
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.h
91
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.c
92
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h
93
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.c
94
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.h
95
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
96
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.h
97
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.c
98
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.h
99
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.c
100
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.h
101
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.c
102
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.h
103
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.c
104
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.h
105
+ - test/sample_files/libxml-ruby-0.3.8/ext/xml/sax_parser_callbacks.inc
106
+ - test/sample_files/syck-0.55/aclocal.m4
107
+ - test/sample_files/syck-0.55/bootstrap
108
+ - test/sample_files/syck-0.55/CHANGELOG
109
+ - test/sample_files/syck-0.55/config
110
+ - test/sample_files/syck-0.55/config.h
111
+ - test/sample_files/syck-0.55/config.h.in
112
+ - test/sample_files/syck-0.55/config.status
113
+ - test/sample_files/syck-0.55/configure
114
+ - test/sample_files/syck-0.55/configure.in
115
+ - test/sample_files/syck-0.55/COPYING
116
+ - test/sample_files/syck-0.55/ext
117
+ - test/sample_files/syck-0.55/lib
118
+ - test/sample_files/syck-0.55/Makefile
119
+ - test/sample_files/syck-0.55/Makefile.am
120
+ - test/sample_files/syck-0.55/Makefile.in
121
+ - test/sample_files/syck-0.55/README
122
+ - test/sample_files/syck-0.55/README.BYTECODE
123
+ - test/sample_files/syck-0.55/README.EXT
124
+ - test/sample_files/syck-0.55/RELEASE
125
+ - test/sample_files/syck-0.55/stamp-h1
126
+ - test/sample_files/syck-0.55/tests
127
+ - test/sample_files/syck-0.55/TODO
128
+ - test/sample_files/syck-0.55/config/depcomp
129
+ - test/sample_files/syck-0.55/config/install-sh
130
+ - test/sample_files/syck-0.55/config/missing
131
+ - test/sample_files/syck-0.55/config/README
132
+ - test/sample_files/syck-0.55/ext/ruby
133
+ - test/sample_files/syck-0.55/ext/ruby/CHANGELOG
134
+ - test/sample_files/syck-0.55/ext/ruby/ext
135
+ - test/sample_files/syck-0.55/ext/ruby/install.rb
136
+ - test/sample_files/syck-0.55/ext/ruby/lib
137
+ - test/sample_files/syck-0.55/ext/ruby/README
138
+ - test/sample_files/syck-0.55/ext/ruby/samples
139
+ - test/sample_files/syck-0.55/ext/ruby/tests
140
+ - test/sample_files/syck-0.55/ext/ruby/yts
141
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck
142
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.c
143
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.c
144
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb
145
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.c
146
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.h
147
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.c
148
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.c
149
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/MANIFEST
150
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log
151
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c
152
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.c
153
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.c
154
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h
155
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/token.c
156
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.c
157
+ - test/sample_files/syck-0.55/ext/ruby/ext/syck/yamlbyte.h
158
+ - test/sample_files/syck-0.55/ext/ruby/lib/okay
159
+ - test/sample_files/syck-0.55/ext/ruby/lib/okay.rb
160
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml
161
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml.rb
162
+ - test/sample_files/syck-0.55/ext/ruby/lib/yod.rb
163
+ - test/sample_files/syck-0.55/ext/ruby/lib/okay/news.rb
164
+ - test/sample_files/syck-0.55/ext/ruby/lib/okay/rpc.rb
165
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/baseemitter.rb
166
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/basenode.rb
167
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/compat.rb
168
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/constants.rb
169
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/dbm.rb
170
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/emitter.rb
171
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/encoding.rb
172
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
173
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/rubytypes.rb
174
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/store.rb
175
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/stream.rb
176
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/stringio.rb
177
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/syck.rb
178
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/tag.rb
179
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/types.rb
180
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/yamlnode.rb
181
+ - test/sample_files/syck-0.55/ext/ruby/lib/yaml/ypath.rb
182
+ - test/sample_files/syck-0.55/ext/ruby/samples/okayNews-modules.rb
183
+ - test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb
184
+ - test/sample_files/syck-0.55/ext/ruby/samples/okayNews-validate.rb
185
+ - test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-client.rb
186
+ - test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-server.rb
187
+ - test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb
188
+ - test/sample_files/syck-0.55/ext/ruby/tests/basic.rb
189
+ - test/sample_files/syck-0.55/ext/ruby/yts/cookbook.rb
190
+ - test/sample_files/syck-0.55/ext/ruby/yts/index.yml
191
+ - test/sample_files/syck-0.55/ext/ruby/yts/yts.rb
192
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsAnchorAlias.yml
193
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsBasicTests.yml
194
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockMapping.yml
195
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockSequence.yml
196
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsDocumentSeparator.yml
197
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsErrorTests.yml
198
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsFlowCollections.yml
199
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsFoldedScalars.yml
200
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsMapInSeq.yml
201
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsNullsAndEmpties.yml
202
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsRubyTests.yml
203
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsSpecificationExamples.yml
204
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsTypeTransfers.yml
205
+ - test/sample_files/syck-0.55/ext/ruby/yts/YtsYpath.yml
206
+ - test/sample_files/syck-0.55/lib/bytecode.c
207
+ - test/sample_files/syck-0.55/lib/bytecode.re
208
+ - test/sample_files/syck-0.55/lib/emitter.c
209
+ - test/sample_files/syck-0.55/lib/gram.c
210
+ - test/sample_files/syck-0.55/lib/gram.h
211
+ - test/sample_files/syck-0.55/lib/gram.output
212
+ - test/sample_files/syck-0.55/lib/gram.y
213
+ - test/sample_files/syck-0.55/lib/handler.c
214
+ - test/sample_files/syck-0.55/lib/implicit.c
215
+ - test/sample_files/syck-0.55/lib/implicit.re
216
+ - test/sample_files/syck-0.55/lib/Makefile
217
+ - test/sample_files/syck-0.55/lib/Makefile.am
218
+ - test/sample_files/syck-0.55/lib/Makefile.in
219
+ - test/sample_files/syck-0.55/lib/node.c
220
+ - test/sample_files/syck-0.55/lib/syck.c
221
+ - test/sample_files/syck-0.55/lib/syck.h
222
+ - test/sample_files/syck-0.55/lib/syck_st.c
223
+ - test/sample_files/syck-0.55/lib/syck_st.h
224
+ - test/sample_files/syck-0.55/lib/token.c
225
+ - test/sample_files/syck-0.55/lib/token.re
226
+ - test/sample_files/syck-0.55/lib/yaml2byte.c
227
+ - test/sample_files/syck-0.55/lib/yamlbyte.h
228
+ - test/sample_files/syck-0.55/tests/Basic.c
229
+ - test/sample_files/syck-0.55/tests/CuTest.c
230
+ - test/sample_files/syck-0.55/tests/CuTest.h
231
+ - test/sample_files/syck-0.55/tests/Emit.c
232
+ - test/sample_files/syck-0.55/tests/Makefile
233
+ - test/sample_files/syck-0.55/tests/Makefile.am
234
+ - test/sample_files/syck-0.55/tests/Makefile.in
235
+ - test/sample_files/syck-0.55/tests/Parse.c
236
+ - test/sample_files/syck-0.55/tests/YTS.c
237
+ - test/sample_files/syck-0.55/tests/YTS.c.erb
238
+ - test/sample_files/syck-0.55/tests/YTS.c.rb
239
+ test_files: []
240
+
241
+ rdoc_options: []
242
+
243
+ extra_rdoc_files: []
244
+
245
+ executables: []
246
+
247
+ extensions: []
248
+
249
+ requirements:
250
+ - rake
251
+ dependencies: []
252
+