ruby编程问题:如何将调用了外部exe文件的ruby脚本生成可执行文件,使能在别的机器上运行?
ruby编程问题:我编写了一个ruby脚本,在代码中调用了另外一个命令行工具,代码如下:require'find'require'fileutils'rootpath=F...
ruby编程问题:我编写了一个ruby脚本,在代码中调用了另外一个命令行工具,代码如下:
require 'find'
require 'fileutils'
rootpath = File.dirname(__FILE__)
puts rootpath
Find.find(rootpath) do |file|
if(!File.directory?(file) && File.extname(file) == ".png")
path = File.dirname(file)
IO.popen(rootpath + "/" + "pngout.exe " + file) { |f| puts "converting..." + file}
end
end
请问如何将我这个脚本文件生成可执行文件,是它能在别的没有ruby编译环境的机器上运行? 展开
require 'find'
require 'fileutils'
rootpath = File.dirname(__FILE__)
puts rootpath
Find.find(rootpath) do |file|
if(!File.directory?(file) && File.extname(file) == ".png")
path = File.dirname(file)
IO.popen(rootpath + "/" + "pngout.exe " + file) { |f| puts "converting..." + file}
end
end
请问如何将我这个脚本文件生成可执行文件,是它能在别的没有ruby编译环境的机器上运行? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询