Sha256: 9189a670eb133e4e9f4c93c4b162055f52f80e8e18ef15dd3600c8cac75074a8

Contents?: true

Size: 621 Bytes

Versions: 1

Compression:

Stored size: 621 Bytes

Contents

# This is a temporary rakefile to install the Microsoft v8 runtime
require 'rbconfig'
task :default do
  mv 'msvcp80.dll', Config::CONFIG['bindir']
  mv 'msvcr80.dll', Config::CONFIG['bindir']
  ruby_manifest = File.join(Config::CONFIG['bindir'], 'ruby.exe.manifest')
  if File.exists? ruby_manifest 
    mv ruby_manifest, ruby_manifest + ".old"
  end
  cp 'wxruby2.so.manifest', ruby_manifest
  rubyw_manifest = File.join(Config::CONFIG['bindir'], 'rubyw.exe.manifest')
  if File.exists? rubyw_manifest 
    mv rubyw_manifest, rubyw_manifest + ".old"
  end
  cp 'wxruby2.so.manifest', rubyw_manifest
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wxruby-1.9.7-x86-mswin32-60 temp/Rakefile