From: Eloy D. <elo...@gm...> - 2008-06-11 14:46:28
|
> ruby standalonify.rb -d ScriptWindow_.app ScriptWindow.app > ruby: No such file or directory -- standalonify.rb (LoadError) > > I am in the directory where the app resides before running above code. The problem is that standaloneify.rb is not in your load path so you need to specify the full path: $ ruby /System/Library/Frameworks/RubyCocoa.framework/Versions/Current/ Tools/standalonify.rb -d ScriptWindow_.app ScriptWindow.app Eloy |