Kevin Brown
1/4/2006 12:15:00 AM
On Tuesday 03 January 2006 18:03, Alex Fenton wrote:
> Dirk Meijer wrote:
> > i was wondering if i can pack applications with GUI's using exerb, and
> > which GUI's, and how..
>
> You can pack wxruby using Exerb. You'd use a line in your .exr recipe like
>
> add_extension_library wxruby.so C:/path/to/wxruby.so
>
> As mentioned, you probably should look at rubyscript2exe for creating ruby
> executables. It's newer and superior to exerb in almost all respects. It
> should work with most ruby GUIs (fox, wx, tk). Maybe slightly more
> complicated for GUIs built with external dependencies (GTK?), but still
> do-able.
Uh, seems less complicated from what you're saying about recipies? All I do
to package my Korundum app is:
tar2rubyscript directoryname
rubyscript2exe directoryname.rb
And I have an executable called directoryname_linux. That's it. The only
thing you have to do to your code is have a file called init.rb that actually
makes it go. It packages all the dependencies, etc.
So no, it's not more complicated. :-)
> alex