faster_rubygems 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/mkrf_conf.rb +6 -6
- metadata +1 -1
data/ext/mkrf_conf.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
puts 'in mkrf'
|
2
1
|
require 'rubygems'
|
3
|
-
|
4
|
-
#
|
2
|
+
|
3
|
+
# stolen from http://wiki.github.com/rdp/ruby_tutorials_core/gem
|
4
|
+
|
5
5
|
puts File.dirname(__FILE__)
|
6
6
|
a = File.expand_path(File.dirname(__FILE__)) + "/../install.rb" # install it for them
|
7
7
|
load a
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w") # create dummy rakefile to indicate success
|
10
|
+
f.write("task :default\n")
|
11
|
+
f.close
|