2007-11-10 02:48:56 -05:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
|
|
|
require 'rubygems/ext/builder'
|
2009-06-09 17:38:59 -04:00
|
|
|
require 'rubygems/command'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
class Gem::Ext::RakeBuilder < Gem::Ext::Builder
|
|
|
|
|
|
|
|
def self.build(extension, directory, dest_path, results)
|
|
|
|
if File.basename(extension) =~ /mkrf_conf/i then
|
|
|
|
cmd = "#{Gem.ruby} #{File.basename extension}"
|
2009-06-09 17:38:59 -04:00
|
|
|
cmd << " #{Gem::Command.build_args.join " "}" unless Gem::Command.build_args.empty?
|
2007-11-10 02:48:56 -05:00
|
|
|
run cmd, results
|
|
|
|
end
|
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
# Deal with possible spaces in the path, e.g. C:/Program Files
|
|
|
|
dest_path = '"' + dest_path + '"' if dest_path.include?(' ')
|
|
|
|
|
|
|
|
cmd = ENV['rake'] || "#{Gem.ruby} -rubygems #{Gem.bin_path('rake')}" rescue Gem.default_exec_format % 'rake'
|
2008-06-25 22:06:00 -04:00
|
|
|
cmd += " RUBYARCHDIR=#{dest_path} RUBYLIBDIR=#{dest_path}" # ENV is frozen
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
run cmd, results
|
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|