I've mentioned RubyScript2Exe previously. This tool allows you to 'compile' a script/application into a portable executable file (EXE) that you can easily provide to your users without requiring them to install Ruby and the required libraries. RubyScript2Exe traces and gathers all the necessary files, including the Ruby interpreter, and 'compiles' them into a single EXE file. You can easily embed images and icon files, and DLLs such as SQLite.
I put the word 'compile' in quotes above because RubyScript2Exe does not transform your code as a C compiler or .Net compiler would. Rather, it collects all the files necessary to run your application and bundles them into a single EXE file. When the user runs that EXE file, that bundle is quickly extracted to a temporary file and your Ruby code is executed.
Installing RubyScript2Exe is as easy as falling off a log, thanks to RubyGems. Just get to a command prompt and enter:
gem install rubyscript2exe
Include the following
require statement at the top of your script:
require 'rubyscript2exe'
Whenever possible, include all your
require statements at the top of your script. This ensures that RubyScript2Exe successfully traces and includes all the necessary files your application will need.
If you are compiling a non-console script and therefore want to use the rubyw.exe interpreter, rather than the ruby.exe interpreter, include the following module variable near the top of your script:
RUBYSCRIPT2EXE.rubyw = true
When I use the
NetBeans Ruby IDE, which defaults a new project's main script name to "main.rb", I include the above code to avoid renaming the script with a ".rbw" extension or providing command-line parameters to the RubyScript2Exe compiler. More on that later.
A Ruby Forum reader and RubyScript2Exe user recently mentioned "I want to be able to wrap the icon file along with the rest of the application." You can embed additional files such as icons or DLLs in the executable like this:
RUBYSCRIPT2EXE.bin = ["my_icon.ico", "sqlite3.dll"]
When you run your compiled executable, RubyScript2Exe extracts all the files from your executable into a temporary directory. But sometimes you need to know the location of the folder the executable was originally run from. Just call the
RUBYSCRIPT2EXE.exedir method:
APPLICATION_PATH = RUBYSCRIPT2EXE.exedir
Enough preparation! Let's compile our application. Go to a command prompt and enter:
rubyscript2exe my_script.rb
...or...
rubyscript2exe my_script.rbw
If your script has a filename extension of
.rb, RubyScript2Exe will include the ruby.exe interpreter and a console window. If your script has a filename extension of
.rbw, RubyScript2Exe will include the rubyw.exe interpreter and your app will therefore not have a console window; this is the same as if you had included
RUBYSCRIPT2EXE.rubyw = true in your code.
The size of your compiled executable can vary widely depending on what files are needed to be included. A simple console app may be 1mb in size, a wxRuby 0.6 GUI app may be 3-4mb, and a wxRuby 2 GUI app may be 6-8mb in size. Part of this size is due to a known 'bug' that may cause some files (the 8mb wxRuby2.so file, for example) to be included twice. This affects the size of the EXE file but not the performance.
There you have it. But this post just scratches the surface. RubyScript2Exe's creator, Erik Veenstra, has done a great job maintaining and documenting this tool, and you should take a few minutes and read the docs
here.
Questions? Comments? Suggestions?
Post a comment here or send me an email.
Thanks for stopping by!