Sha256: f66a8820ac8738dae2dfc626f8d6c1e520163126433da3729de3f4a6e7fdae30
Contents?: true
Size: 611 Bytes
Versions: 2
Compression:
Stored size: 611 Bytes
Contents
require 'rubygems' require 'rubygems/command.rb' require 'rubygems/dependency_installer.rb' STDERR.puts "Actually, there aren't any native extensions. I'm just dynamically installing dependencies based off of your operating system" begin Gem::Command.build_args = ARGV rescue NoMethodError end inst = Gem::DependencyInstaller.new begin inst.install "rake" inst.install "win32-process", "~> 0.6.1" if RUBY_PLATFORM =~ /mswin|mingw/ rescue exit(1) end f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w") # create dummy rakefile to indicate success f.write("task :default\n") f.close
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spork-0.8.1 | ext/mkrf_conf.rb |
spork-0.8.0 | ext/mkrf_conf.rb |