mkrf 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +8 -2
- data/lib/mkrf.rb +1 -1
- data/lib/mkrf/generator.rb +8 -2
- data/test/sample_files/cpp_bang/ext/bang.cpp +15 -0
- data/test/sample_files/cpp_bang/ext/mkrf_config.rb +6 -0
- data/test/sample_files/libtrivial/ext/Rakefile +43 -0
- data/test/sample_files/libtrivial/ext/libtrivial.o +0 -0
- data/test/sample_files/libtrivial/ext/libtrivial.so +0 -0
- data/test/sample_files/libtrivial/ext/mkrf.log +3 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/Rakefile +43 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml_so.so +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log +47 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.o +0 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/Rakefile +43 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log +5 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/node.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.so +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/token.o +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.o +0 -0
- metadata +46 -2
data/Rakefile
CHANGED
@@ -43,13 +43,14 @@ namespace :test do
|
|
43
43
|
SAMPLE_DIRS = {
|
44
44
|
:trivial => BASE_DIR + '/libtrivial/ext/',
|
45
45
|
:syck => BASE_DIR + '/syck-0.55/ext/ruby/ext/syck/',
|
46
|
-
:libxml => BASE_DIR + '/libxml-ruby-0.3.8/ext/xml/'
|
46
|
+
:libxml => BASE_DIR + '/libxml-ruby-0.3.8/ext/xml/',
|
47
|
+
:cpp_bang => BASE_DIR + '/cpp_bang/ext/'
|
47
48
|
}
|
48
49
|
|
49
50
|
task :default => [:all]
|
50
51
|
|
51
52
|
desc "Try to compile all of the sample extensions"
|
52
|
-
task :all => [:trivial, :libxml, :syck]
|
53
|
+
task :all => [:trivial, :libxml, :syck, :cpp_bang]
|
53
54
|
|
54
55
|
desc "Try to compile a trivial extension"
|
55
56
|
task :trivial do
|
@@ -66,6 +67,11 @@ namespace :test do
|
|
66
67
|
sh "cd #{SAMPLE_DIRS[:syck]}; ruby extconf.rb; rake"
|
67
68
|
end
|
68
69
|
|
70
|
+
desc "Try to compile cpp_bang"
|
71
|
+
task :cpp_bang do
|
72
|
+
sh "cd #{SAMPLE_DIRS[:cpp_bang]}; ruby mkrf_config.rb; rake"
|
73
|
+
end
|
74
|
+
|
69
75
|
desc "Clean up after sample tests"
|
70
76
|
task :clobber do
|
71
77
|
if ENV['PROJECT']
|
data/lib/mkrf.rb
CHANGED
data/lib/mkrf/generator.rb
CHANGED
@@ -75,7 +75,13 @@ module Mkrf
|
|
75
75
|
@extension_name = extension_name + ".#{CONFIG['DLEXT']}"
|
76
76
|
@available = Mkrf::Availability.new(availability_options)
|
77
77
|
@defines = []
|
78
|
-
@
|
78
|
+
if @sources[0] =~ /cpp/
|
79
|
+
@cc = 'g++' # should be in CONFIG['C++'] but is not.
|
80
|
+
@source_extension = 'cpp'
|
81
|
+
else
|
82
|
+
@cc = CONFIG['CC']
|
83
|
+
@source_extension = 'c'
|
84
|
+
end
|
79
85
|
|
80
86
|
@objects = ''
|
81
87
|
@ldshared = ''
|
@@ -193,7 +199,7 @@ LIBRUBYARG_SHARED = "#{CONFIG['LIBRUBYARG_SHARED']}"
|
|
193
199
|
|
194
200
|
task :default => ['#{@extension_name}']
|
195
201
|
|
196
|
-
rule '.#{objext}' => '
|
202
|
+
rule '.#{objext}' => '.#{@source_extension}' do |t|
|
197
203
|
sh "\#{CC} \#{CFLAGS} \#{INCLUDES} -c \#{t.source}"
|
198
204
|
end
|
199
205
|
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
#include <ruby.h>
|
3
|
+
|
4
|
+
VALUE rk_mBang;
|
5
|
+
|
6
|
+
static VALUE t_bang(VALUE self) {
|
7
|
+
return rb_str_new2("Bang !");
|
8
|
+
}
|
9
|
+
|
10
|
+
extern "C" void Init_bang() {
|
11
|
+
// define the class 'Hello'
|
12
|
+
rk_mBang = rb_define_module("Bang");
|
13
|
+
rb_define_singleton_method(rk_mBang, "bang", (VALUE(*)(...))t_bang, 0);
|
14
|
+
}
|
15
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Generated by mkrf
|
2
|
+
require 'rake/clean'
|
3
|
+
|
4
|
+
CLEAN.include('*.o')
|
5
|
+
CLOBBER.include('libtrivial.so', 'mkrf.log')
|
6
|
+
|
7
|
+
SRC = FileList['*.c']
|
8
|
+
OBJ = SRC.ext('o')
|
9
|
+
CC = 'gcc'
|
10
|
+
|
11
|
+
ADDITIONAL_OBJECTS = ''
|
12
|
+
|
13
|
+
LDSHARED = "gcc -shared "
|
14
|
+
|
15
|
+
LIBPATH = "-L/usr/lib "
|
16
|
+
|
17
|
+
INCLUDES = "-I/usr/include -I/usr/lib/ruby/1.8/i486-linux -I/usr/local/lib/site_ruby/1.8 -I."
|
18
|
+
|
19
|
+
LIBS = "-lpthread -ldl -lcrypt -lm"
|
20
|
+
|
21
|
+
CFLAGS = " -fPIC -Wall -g -fno-strict-aliasing -O2 -fPIC "
|
22
|
+
|
23
|
+
RUBYARCHDIR = "#{ENV["RUBYARCHDIR"]}"
|
24
|
+
LIBRUBYARG_SHARED = "-lruby1.8"
|
25
|
+
|
26
|
+
task :default => ['libtrivial.so']
|
27
|
+
|
28
|
+
rule '.o' => '.c' do |t|
|
29
|
+
sh "#{CC} #{CFLAGS} #{INCLUDES} -c #{t.source}"
|
30
|
+
end
|
31
|
+
|
32
|
+
desc "Build this extension"
|
33
|
+
file 'libtrivial.so' => OBJ do
|
34
|
+
sh "#{LDSHARED} #{LIBPATH} -o libtrivial.so #{OBJ} #{ADDITIONAL_OBJECTS} #{LIBS} #{LIBRUBYARG_SHARED}"
|
35
|
+
end
|
36
|
+
|
37
|
+
desc "Install this extension"
|
38
|
+
task :install => 'libtrivial.so' do
|
39
|
+
makedirs "#{RUBYARCHDIR}"
|
40
|
+
install "libtrivial.so", "#{RUBYARCHDIR}"
|
41
|
+
end
|
42
|
+
|
43
|
+
|
Binary file
|
Binary file
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Generated by mkrf
|
2
|
+
require 'rake/clean'
|
3
|
+
|
4
|
+
CLEAN.include('*.o')
|
5
|
+
CLOBBER.include('libxml_so.so', 'mkrf.log')
|
6
|
+
|
7
|
+
SRC = FileList['*.c']
|
8
|
+
OBJ = SRC.ext('o')
|
9
|
+
CC = 'gcc'
|
10
|
+
|
11
|
+
ADDITIONAL_OBJECTS = ''
|
12
|
+
|
13
|
+
LDSHARED = "gcc -shared "
|
14
|
+
|
15
|
+
LIBPATH = "-L/usr/lib "
|
16
|
+
|
17
|
+
INCLUDES = "-I/usr/include -I/usr/lib/ruby/1.8/i486-linux -I/usr/local/lib/site_ruby/1.8 -I. -I/usr/include/libxml2"
|
18
|
+
|
19
|
+
LIBS = "-lpthread -ldl -lcrypt -lm -lnsl -lz -lc -lxml2 -lxml2"
|
20
|
+
|
21
|
+
CFLAGS = " -fPIC -Wall -g -fno-strict-aliasing -O2 -fPIC -DHAVE_ZLIB_H -DHAVE_LIBXML_XMLVERSION_H"
|
22
|
+
|
23
|
+
RUBYARCHDIR = "#{ENV["RUBYARCHDIR"]}"
|
24
|
+
LIBRUBYARG_SHARED = "-lruby1.8"
|
25
|
+
|
26
|
+
task :default => ['libxml_so.so']
|
27
|
+
|
28
|
+
rule '.o' => '.c' do |t|
|
29
|
+
sh "#{CC} #{CFLAGS} #{INCLUDES} -c #{t.source}"
|
30
|
+
end
|
31
|
+
|
32
|
+
desc "Build this extension"
|
33
|
+
file 'libxml_so.so' => OBJ do
|
34
|
+
sh "#{LDSHARED} #{LIBPATH} -o libxml_so.so #{OBJ} #{ADDITIONAL_OBJECTS} #{LIBS} #{LIBRUBYARG_SHARED}"
|
35
|
+
end
|
36
|
+
|
37
|
+
desc "Install this extension"
|
38
|
+
task :install => 'libxml_so.so' do
|
39
|
+
makedirs "#{RUBYARCHDIR}"
|
40
|
+
install "libxml_so.so", "#{RUBYARCHDIR}"
|
41
|
+
end
|
42
|
+
|
43
|
+
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# Logfile created on Wed Jul 18 08:51:58 +0900 2007 by logger.rb/1.5.2.9
|
2
|
+
I, [2007-07-18T08:51:58.965489 #26069] INFO -- : Checking for library: socket
|
3
|
+
W, [2007-07-18T08:51:59.005838 #26069] WARN -- : Function not found: socket()
|
4
|
+
W, [2007-07-18T08:51:59.005977 #26069] WARN -- : Library not found: socket
|
5
|
+
I, [2007-07-18T08:51:59.006065 #26069] INFO -- : Checking for library: nsl
|
6
|
+
I, [2007-07-18T08:51:59.071232 #26069] INFO -- : Function found: gethostbyname()
|
7
|
+
I, [2007-07-18T08:51:59.071373 #26069] INFO -- : Library found: nsl
|
8
|
+
I, [2007-07-18T08:51:59.071460 #26069] INFO -- : Checking for library: z
|
9
|
+
I, [2007-07-18T08:51:59.128352 #26069] INFO -- : Function found: inflate()
|
10
|
+
I, [2007-07-18T08:51:59.128495 #26069] INFO -- : Library found: z
|
11
|
+
I, [2007-07-18T08:51:59.128580 #26069] INFO -- : Checking for library: iconv
|
12
|
+
W, [2007-07-18T08:51:59.184066 #26069] WARN -- : Function not found: iconv_open()
|
13
|
+
W, [2007-07-18T08:51:59.184258 #26069] WARN -- : Library not found: iconv
|
14
|
+
I, [2007-07-18T08:51:59.184346 #26069] INFO -- : Checking for library: c
|
15
|
+
I, [2007-07-18T08:51:59.248856 #26069] INFO -- : Function found: iconv_open()
|
16
|
+
I, [2007-07-18T08:51:59.249016 #26069] INFO -- : Library found: c
|
17
|
+
I, [2007-07-18T08:51:59.249223 #26069] INFO -- : Checking for library: xml2
|
18
|
+
I, [2007-07-18T08:51:59.319904 #26069] INFO -- : Function found: xmlParseDoc()
|
19
|
+
I, [2007-07-18T08:51:59.320072 #26069] INFO -- : Library found: xml2
|
20
|
+
I, [2007-07-18T08:51:59.430908 #26069] INFO -- : Header found: libxml/xmlversion.h
|
21
|
+
I, [2007-07-18T08:51:59.431078 #26069] INFO -- : Checking for library: xml2
|
22
|
+
I, [2007-07-18T08:51:59.431142 #26069] INFO -- : Library already loaded: xml2
|
23
|
+
I, [2007-07-18T08:51:59.495697 #26069] INFO -- : Function found: docbCreateFileParserCtxt()
|
24
|
+
I, [2007-07-18T08:51:59.496539 #26069] INFO -- : Rakefile written
|
25
|
+
I, [2007-07-18T08:52:30.900937 #26373] INFO -- : Checking for library: socket
|
26
|
+
W, [2007-07-18T08:52:30.939047 #26373] WARN -- : Function not found: socket()
|
27
|
+
W, [2007-07-18T08:52:30.939167 #26373] WARN -- : Library not found: socket
|
28
|
+
I, [2007-07-18T08:52:30.939238 #26373] INFO -- : Checking for library: nsl
|
29
|
+
I, [2007-07-18T08:52:30.989344 #26373] INFO -- : Function found: gethostbyname()
|
30
|
+
I, [2007-07-18T08:52:30.989468 #26373] INFO -- : Library found: nsl
|
31
|
+
I, [2007-07-18T08:52:30.989541 #26373] INFO -- : Checking for library: z
|
32
|
+
I, [2007-07-18T08:52:31.041133 #26373] INFO -- : Function found: inflate()
|
33
|
+
I, [2007-07-18T08:52:31.041259 #26373] INFO -- : Library found: z
|
34
|
+
I, [2007-07-18T08:52:31.041335 #26373] INFO -- : Checking for library: iconv
|
35
|
+
W, [2007-07-18T08:52:31.081884 #26373] WARN -- : Function not found: iconv_open()
|
36
|
+
W, [2007-07-18T08:52:31.093045 #26373] WARN -- : Library not found: iconv
|
37
|
+
I, [2007-07-18T08:52:31.093128 #26373] INFO -- : Checking for library: c
|
38
|
+
I, [2007-07-18T08:52:31.151068 #26373] INFO -- : Function found: iconv_open()
|
39
|
+
I, [2007-07-18T08:52:31.151204 #26373] INFO -- : Library found: c
|
40
|
+
I, [2007-07-18T08:52:31.151279 #26373] INFO -- : Checking for library: xml2
|
41
|
+
I, [2007-07-18T08:52:31.215566 #26373] INFO -- : Function found: xmlParseDoc()
|
42
|
+
I, [2007-07-18T08:52:31.215708 #26373] INFO -- : Library found: xml2
|
43
|
+
I, [2007-07-18T08:52:31.321932 #26373] INFO -- : Header found: libxml/xmlversion.h
|
44
|
+
I, [2007-07-18T08:52:31.322115 #26373] INFO -- : Checking for library: xml2
|
45
|
+
I, [2007-07-18T08:52:31.322176 #26373] INFO -- : Library already loaded: xml2
|
46
|
+
I, [2007-07-18T08:52:31.385246 #26373] INFO -- : Function found: docbCreateFileParserCtxt()
|
47
|
+
I, [2007-07-18T08:52:31.386239 #26373] INFO -- : Rakefile written
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Generated by mkrf
|
2
|
+
require 'rake/clean'
|
3
|
+
|
4
|
+
CLEAN.include('*.o')
|
5
|
+
CLOBBER.include('syck.so', 'mkrf.log')
|
6
|
+
|
7
|
+
SRC = FileList['*.c']
|
8
|
+
OBJ = SRC.ext('o')
|
9
|
+
CC = 'gcc'
|
10
|
+
|
11
|
+
ADDITIONAL_OBJECTS = ''
|
12
|
+
|
13
|
+
LDSHARED = "gcc -shared "
|
14
|
+
|
15
|
+
LIBPATH = "-L/usr/lib "
|
16
|
+
|
17
|
+
INCLUDES = "-I/usr/include -I/usr/lib/ruby/1.8/i486-linux -I/usr/local/lib/site_ruby/1.8 -I."
|
18
|
+
|
19
|
+
LIBS = "-lpthread -ldl -lcrypt -lm"
|
20
|
+
|
21
|
+
CFLAGS = " -fPIC -Wall -g -fno-strict-aliasing -O2 -fPIC -DHAVE_ST_H"
|
22
|
+
|
23
|
+
RUBYARCHDIR = "#{ENV["RUBYARCHDIR"]}"
|
24
|
+
LIBRUBYARG_SHARED = "-lruby1.8"
|
25
|
+
|
26
|
+
task :default => ['syck.so']
|
27
|
+
|
28
|
+
rule '.o' => '.c' do |t|
|
29
|
+
sh "#{CC} #{CFLAGS} #{INCLUDES} -c #{t.source}"
|
30
|
+
end
|
31
|
+
|
32
|
+
desc "Build this extension"
|
33
|
+
file 'syck.so' => OBJ do
|
34
|
+
sh "#{LDSHARED} #{LIBPATH} -o syck.so #{OBJ} #{ADDITIONAL_OBJECTS} #{LIBS} #{LIBRUBYARG_SHARED}"
|
35
|
+
end
|
36
|
+
|
37
|
+
desc "Install this extension"
|
38
|
+
task :install => 'syck.so' do
|
39
|
+
makedirs "#{RUBYARCHDIR}"
|
40
|
+
install "syck.so", "#{RUBYARCHDIR}"
|
41
|
+
end
|
42
|
+
|
43
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,5 @@
|
|
1
|
+
# Logfile created on Wed Jul 18 08:52:04 +0900 2007 by logger.rb/1.5.2.9
|
2
|
+
I, [2007-07-18T08:52:04.386804 #26187] INFO -- : Header found: st.h
|
3
|
+
I, [2007-07-18T08:52:04.387435 #26187] INFO -- : Rakefile written
|
4
|
+
I, [2007-07-18T08:52:31.793730 #26426] INFO -- : Header found: st.h
|
5
|
+
I, [2007-07-18T08:52:31.798322 #26426] INFO -- : Rakefile written
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: mkrf
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.2.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.2.2
|
7
|
+
date: 2007-07-18 00:00:00 +09:00
|
8
8
|
summary: Generate Rakefiles to Build C Extensions to Ruby
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -47,6 +47,7 @@ files:
|
|
47
47
|
- test/sample_files/libxml-ruby-0.3.8
|
48
48
|
- test/sample_files/syck-0.55
|
49
49
|
- test/sample_files/libtrivial
|
50
|
+
- test/sample_files/cpp_bang
|
50
51
|
- test/sample_files/libxml-ruby-0.3.8/ext
|
51
52
|
- test/sample_files/libxml-ruby-0.3.8/CHANGELOG
|
52
53
|
- test/sample_files/libxml-ruby-0.3.8/README
|
@@ -95,6 +96,29 @@ files:
|
|
95
96
|
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c
|
96
97
|
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h
|
97
98
|
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c
|
99
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log
|
100
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/Rakefile
|
101
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.o
|
102
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.o
|
103
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.o
|
104
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.o
|
105
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.o
|
106
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.o
|
107
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.o
|
108
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.o
|
109
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.o
|
110
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.o
|
111
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.o
|
112
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.o
|
113
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.o
|
114
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.o
|
115
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.o
|
116
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.o
|
117
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.o
|
118
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.o
|
119
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.o
|
120
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.o
|
121
|
+
- test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml_so.so
|
98
122
|
- test/sample_files/syck-0.55/ext
|
99
123
|
- test/sample_files/syck-0.55/tests
|
100
124
|
- test/sample_files/syck-0.55/config
|
@@ -142,6 +166,19 @@ files:
|
|
142
166
|
- test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb
|
143
167
|
- test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c
|
144
168
|
- test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h
|
169
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log
|
170
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/Rakefile
|
171
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.o
|
172
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.o
|
173
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.o
|
174
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.o
|
175
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.o
|
176
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.o
|
177
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.o
|
178
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/token.o
|
179
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.o
|
180
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/node.o
|
181
|
+
- test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.so
|
145
182
|
- test/sample_files/syck-0.55/ext/ruby/tests/basic.rb
|
146
183
|
- test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb
|
147
184
|
- test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb
|
@@ -230,6 +267,13 @@ files:
|
|
230
267
|
- test/sample_files/libtrivial/ext
|
231
268
|
- test/sample_files/libtrivial/ext/libtrivial.c
|
232
269
|
- test/sample_files/libtrivial/ext/extconf.rb
|
270
|
+
- test/sample_files/libtrivial/ext/mkrf.log
|
271
|
+
- test/sample_files/libtrivial/ext/Rakefile
|
272
|
+
- test/sample_files/libtrivial/ext/libtrivial.o
|
273
|
+
- test/sample_files/libtrivial/ext/libtrivial.so
|
274
|
+
- test/sample_files/cpp_bang/ext
|
275
|
+
- test/sample_files/cpp_bang/ext/bang.cpp
|
276
|
+
- test/sample_files/cpp_bang/ext/mkrf_config.rb
|
233
277
|
- test/fixtures/down_a_directory
|
234
278
|
- test/fixtures/stdmkrf.h
|
235
279
|
- test/fixtures/some_binary
|