diff -ur rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/README rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/README
--- rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/README 2004-01-05 22:05:46.000000000 +0100
+++ rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/README 2004-04-28 23:33:16.000000000 +0200
@@ -1,4 +1,4 @@
-Usage: ruby init.rb application[.rb]
+Usage: ruby rubyscript2exe.rb application[.rb[w]] [--rubyscript2exe-rubyw|--rubyscript2exe-ruby] [--rubyscript2exe-msvcr71]
For more information, see
http://www.erikveen.dds.nl/rubyscript2tar/ .
diff -ur rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/init.rb rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/init.rb
--- rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/init.rb 2004-04-24 21:44:11.000000000 +0200
+++ rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/init.rb 2004-04-28 22:14:55.000000000 +0200
@@ -26,20 +26,22 @@
script = ARGV.shift
+msvcr71 = ARGV.include?("--rubyscript2exe-msvcr71")
+
rubyw = false
rubyw = true if script =~ /\.rbw$/
rubyw = false if ARGV.include?("--rubyscript2exe-ruby")
rubyw = true if ARGV.include?("--rubyscript2exe-rubyw")
-rubyexe = "ruby.exe"
-rubyexe = "rubyw.exe" if rubyw
-
ARGV.delete_if do |arg|
arg =~ /^--rubyscript2exe-/
end
bindir = Config::CONFIG["bindir"]
+rubyexe = "ruby.exe"
+rubyexe = "rubyw.exe" if rubyw
libruby = Config::CONFIG["LIBRUBY_SO"]
+msvcr71 = "msvcr71.dll" if msvcr71
if not script.nil?
script = "#{script}.rb" if not script =~ /\.rbw?$/
@@ -60,6 +62,7 @@
copy("#{bindir}/#{rubyexe}", rubyexe)
copy("#{bindir}/#{libruby}", libruby)
+ copy("#{bindir}/#{msvcr71}", msvcr71) if msvcr71
move("#{oldlocation("rubyrequired.tar")}", "rubyrequired.tar")
copy("#{oldlocation(script)}", "app.rb")
@@ -72,6 +75,7 @@
File.open("app.eee", "w") do |f|
f.puts "f #{rubyexe}"
f.puts "f #{libruby}"
+ f.puts "f #{msvcr71}" if msvcr71
f.puts "f rubyrequired.rb"
f.puts "f app.rb"
Binary files rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/eee.exe and rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/eee.exe differ
Binary files rubyscript2exe-0.1.12.tar.gz/rubyscript2exe/eeew.exe and rubyscript2exe-0.1.13.tar.gz/rubyscript2exe/eeew.exe differ