Sha256: aba0596b5a4b2e2bc1e3c90ff4d2456298a1f4b143060773a7dfae23605b5454
Contents?: true
Size: 575 Bytes
Versions: 31
Compression:
Stored size: 575 Bytes
Contents
# We can't use Ruby's standard build procedures # on Windows because the Ruby executable is # built with VC++ while here we want to build # with MingW. So just roll our own... require 'fileutils' require 'rbconfig' EXTENSION_NAME = "ruby_prof.#{Config::CONFIG["DLEXT"]}" # This is called when the Windows GEM is installed! task :install do # Gems will pass these two environment variables: # RUBYARCHDIR=#{dest_path} # RUBYLIBDIR=#{dest_path} dest_path = ENV['RUBYLIBDIR'] # Copy the extension cp(EXTENSION_NAME, dest_path) end task :default => :install
Version data entries
31 entries across 31 versions & 6 rubygems