2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
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.
|
|
|
|
#++
|
|
|
|
|
|
|
|
class Gem::Ext::RakeBuilder < Gem::Ext::Builder
|
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
def self.build(extension, directory, dest_path, results, args=[], lib_dir=nil)
|
2007-11-10 02:48:56 -05:00
|
|
|
if File.basename(extension) =~ /mkrf_conf/i then
|
|
|
|
cmd = "#{Gem.ruby} #{File.basename extension}"
|
2012-11-29 01:52:18 -05:00
|
|
|
cmd << " #{args.join " "}" unless 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
|
2011-05-31 23:45:05 -04:00
|
|
|
dest_path = '"' + dest_path.to_s + '"' if dest_path.to_s.include?(' ')
|
2009-06-09 17:38:59 -04:00
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
rake = ENV['rake']
|
|
|
|
|
|
|
|
rake ||= begin
|
2013-11-30 18:27:52 -05:00
|
|
|
"#{Gem.ruby} -rubygems #{Gem.bin_path('rake', 'rake')}"
|
2011-01-28 18:46:47 -05:00
|
|
|
rescue Gem::Exception
|
|
|
|
end
|
|
|
|
|
|
|
|
rake ||= Gem.default_exec_format % 'rake'
|
|
|
|
|
|
|
|
cmd = "#{rake} RUBYARCHDIR=#{dest_path} RUBYLIBDIR=#{dest_path}" # ENV is frozen
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
run cmd, results
|
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|