/tools/Ruby/lib/ruby/site_ruby/1.8/rubygems/ext/rake_builder.rb
http://github.com/agross/netopenspace · Ruby · 39 lines · 21 code · 12 blank · 6 comment · 2 complexity · 383037b3202044d333fe699dc6508fcc MD5 · raw file
- #--
- # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
- # All rights reserved.
- # See LICENSE.txt for permissions.
- #++
- require 'rubygems/ext/builder'
- require 'rubygems/command'
- 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}"
- cmd << " #{Gem::Command.build_args.join " "}" unless Gem::Command.build_args.empty?
- run cmd, results
- end
- # Deal with possible spaces in the path, e.g. C:/Program Files
- dest_path = '"' + dest_path + '"' if dest_path.include?(' ')
- rake = ENV['rake']
- rake ||= begin
- "\"#{Gem.ruby}\" -rubygems #{Gem.bin_path('rake', 'rake')}"
- rescue Gem::Exception
- end
- rake ||= Gem.default_exec_format % 'rake'
- cmd = "#{rake} RUBYARCHDIR=#{dest_path} RUBYLIBDIR=#{dest_path}" # ENV is frozen
- run cmd, results
- results
- end
- end