mkrf 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/MIT-LICENSE +7 -0
- data/README +54 -0
- data/Rakefile +107 -0
- data/lib/mkrf.rb +4 -0
- data/lib/mkrf/availability.rb +219 -0
- data/lib/mkrf/generator.rb +146 -0
- data/test/abstract_unit.rb +4 -0
- data/test/fixtures/down_a_directory/header_down_a_directory.h +1 -0
- data/test/fixtures/stdmkrf.h +1 -0
- data/test/sample_files/libtrivial/Rakefile +31 -0
- data/test/sample_files/libtrivial/extconf.rb +3 -0
- data/test/sample_files/libtrivial/lib/libtrivial.c +5 -0
- data/test/sample_files/libtrivial/lib/libtrivial.o +0 -0
- data/test/sample_files/libtrivial/libtrivial_so.bundle +0 -0
- data/test/sample_files/libtrivial/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/CHANGELOG +74 -0
- data/test/sample_files/libxml-ruby-0.3.8/LICENSE +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/README +144 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.c +76 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/extconf.rb +49 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.c +86 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.h +82 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.rb +107 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/old_extconf.rb +95 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.c +372 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.c +224 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.c +1159 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c +168 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.h +17 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.c +167 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.c +2139 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.h +28 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.c +248 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.h +26 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.c +153 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.c +1417 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.h +31 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c +715 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.h +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.c +426 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.h +52 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.c +142 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h +16 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.c +43 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.h +12 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c +20 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.h +13 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.c +363 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.c +125 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.c +100 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.c +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.h +18 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/sax_parser_callbacks.inc +202 -0
- data/test/sample_files/syck-0.55/CHANGELOG +186 -0
- data/test/sample_files/syck-0.55/COPYING +54 -0
- data/test/sample_files/syck-0.55/Makefile +582 -0
- data/test/sample_files/syck-0.55/Makefile.am +5 -0
- data/test/sample_files/syck-0.55/Makefile.in +582 -0
- data/test/sample_files/syck-0.55/README +105 -0
- data/test/sample_files/syck-0.55/README.BYTECODE +484 -0
- data/test/sample_files/syck-0.55/README.EXT +444 -0
- data/test/sample_files/syck-0.55/RELEASE +123 -0
- data/test/sample_files/syck-0.55/TODO +25 -0
- data/test/sample_files/syck-0.55/aclocal.m4 +883 -0
- data/test/sample_files/syck-0.55/bootstrap +7 -0
- data/test/sample_files/syck-0.55/config.h +79 -0
- data/test/sample_files/syck-0.55/config.h.in +78 -0
- data/test/sample_files/syck-0.55/config.status +1197 -0
- data/test/sample_files/syck-0.55/config/README +14 -0
- data/test/sample_files/syck-0.55/config/depcomp +529 -0
- data/test/sample_files/syck-0.55/config/install-sh +323 -0
- data/test/sample_files/syck-0.55/config/missing +357 -0
- data/test/sample_files/syck-0.55/configure +6728 -0
- data/test/sample_files/syck-0.55/configure.in +36 -0
- data/test/sample_files/syck-0.55/ext/ruby/CHANGELOG +303 -0
- data/test/sample_files/syck-0.55/ext/ruby/README +400 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/MANIFEST +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.c +1894 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.h +79 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.c +174 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c +407 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.c +2385 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.c +504 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h +458 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/token.c +2707 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/ext/ruby/install.rb +1022 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay.rb +161 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/news.rb +69 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/rpc.rb +434 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml.rb +436 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/baseemitter.rb +247 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/basenode.rb +216 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/compat.rb +26 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/constants.rb +45 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/dbm.rb +111 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/emitter.rb +107 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/encoding.rb +33 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb +34 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/rubytypes.rb +438 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/store.rb +29 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stream.rb +40 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stringio.rb +83 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/syck.rb +19 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/tag.rb +86 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/types.rb +188 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/yamlnode.rb +54 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/ypath.rb +52 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yod.rb +1168 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-modules.rb +27 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb +336 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-validate.rb +341 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-client.rb +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-server.rb +85 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb +128 -0
- data/test/sample_files/syck-0.55/ext/ruby/tests/basic.rb +1653 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsAnchorAlias.yml +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBasicTests.yml +282 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockMapping.yml +78 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockSequence.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsDocumentSeparator.yml +102 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsErrorTests.yml +23 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFlowCollections.yml +73 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFoldedScalars.yml +215 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsMapInSeq.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsNullsAndEmpties.yml +66 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsRubyTests.yml +182 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsSpecificationExamples.yml +2699 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsTypeTransfers.yml +265 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsYpath.yml +221 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/cookbook.rb +159 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/index.yml +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/yts.rb +193 -0
- data/test/sample_files/syck-0.55/lib/Makefile +497 -0
- data/test/sample_files/syck-0.55/lib/Makefile.am +27 -0
- data/test/sample_files/syck-0.55/lib/Makefile.in +497 -0
- data/test/sample_files/syck-0.55/lib/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/lib/bytecode.re +525 -0
- data/test/sample_files/syck-0.55/lib/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/lib/gram.c +1894 -0
- data/test/sample_files/syck-0.55/lib/gram.h +79 -0
- data/test/sample_files/syck-0.55/lib/gram.output +2005 -0
- data/test/sample_files/syck-0.55/lib/gram.y +481 -0
- data/test/sample_files/syck-0.55/lib/handler.c +174 -0
- data/test/sample_files/syck-0.55/lib/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/lib/implicit.re +206 -0
- data/test/sample_files/syck-0.55/lib/node.c +407 -0
- data/test/sample_files/syck-0.55/lib/syck.c +504 -0
- data/test/sample_files/syck-0.55/lib/syck.h +458 -0
- data/test/sample_files/syck-0.55/lib/syck_st.c +577 -0
- data/test/sample_files/syck-0.55/lib/syck_st.h +46 -0
- data/test/sample_files/syck-0.55/lib/token.c +2707 -0
- data/test/sample_files/syck-0.55/lib/token.re +1139 -0
- data/test/sample_files/syck-0.55/lib/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/lib/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/stamp-h1 +1 -0
- data/test/sample_files/syck-0.55/tests/Basic.c +141 -0
- data/test/sample_files/syck-0.55/tests/CuTest.c +294 -0
- data/test/sample_files/syck-0.55/tests/CuTest.h +84 -0
- data/test/sample_files/syck-0.55/tests/Emit.c +87 -0
- data/test/sample_files/syck-0.55/tests/Makefile +480 -0
- data/test/sample_files/syck-0.55/tests/Makefile.am +13 -0
- data/test/sample_files/syck-0.55/tests/Makefile.in +480 -0
- data/test/sample_files/syck-0.55/tests/Parse.c +208 -0
- data/test/sample_files/syck-0.55/tests/YTS.c +2310 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.erb +326 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.rb +44 -0
- data/test/test_availability.rb +68 -0
- data/test/test_generator.rb +74 -0
- 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
|
+
|