ruby ファイルをウィンドウ実行可能ファイルに変換するために ocra を使用していますが、fxruby や green_shoes などの ruby GUI を使用すると、非常に時間がかかることに気付きました。プログラムがポップアップするまでの時間を短縮する方法はありますか? 私の現在の fxruby と green_shoes ファイルは非常に単純ですが、コンパイルされた exe ファイルの実行には約 1 分かかります。
ここに私の fxruby.rb ファイルがあります:
require 'fox16'
include Fox
theApp = FXApp.new
theMainWindow = FXMainWindow.new(theApp, "Hello")
theButton = FXButton.new(theMainWindow, "Hello, world!")
theButton.connect(SEL_COMMAND) do |sender, selector, data|
exit
end
theApp.create
theMainWindow.show
theApp.run
ここに私の green_shoes.rb があります:
require 'green_shoes'
Shoes.app do
button "OK!"
button "Are you sure?"
end
これらをより速く実行するための戦略はありますか? それとも、より高速な別の Ruby GUI オプションでしょうか? ありがとうございました!!