Re: [MacRuby-devel] Compiled Ruby files

2010-11-09 Thread Robert Rice
Hi Laurent: Did you decide not to make this change? I just tested it and my subdirectory *.rb files did not compile. Thanks, Bob Rice On Nov 3, 2010, at 5:42 PM, Laurent Sansonetti wrote: > Hi Robert, > > At a glance, it will only compile .rb files in the Resources directory > itself, not s

Re: [MacRuby-devel] Compiled Ruby files

2010-11-05 Thread Robert Rice
Hi Laurent: Thanks. The other problem I ran into trying to use blue folders was that XCODE would not compile .XIB files into .NIB files for subdirectories of the Resources folder. Could I change this behavior? MacRuby has become stable and fast but if I have a program error that loops, it wil

Re: [MacRuby-devel] Compiled Ruby files

2010-11-03 Thread Laurent Sansonetti
Hi Robert, At a glance, it will only compile .rb files in the Resources directory itself, not subdirectories. def compile_files Dir.glob(File.join(@app_bundle, 'Contents/Resources/*.rb')) end I guess we could change it to Dir.glob(File.join(@app_bundle, 'Contents/Resources/**/*.rb'

Re: [MacRuby-devel] Compiled Ruby files

2010-11-03 Thread Robert Rice
Hi Laurent: Does macruby_deploy have an option to compile .rb files in subdirectories of the Resources directory? For a large project some of us may want to better organize our source files. Thanks, Bob Rice On Nov 2, 2010, at 4:25 AM, Laurent Sansonetti wrote: > Hi Larry, > > Indeed, the R

Re: [MacRuby-devel] Compiled Ruby files

2010-11-02 Thread Laurent Sansonetti
Hi Larry, Indeed, the Ruby standard library is not entirely compiled, so you will find .rb files if the MacRuby framework is embedded into the application's bundle. We don't compile the whole standard library for historical reasons, as the AOT compiler wasn't stable enough to work on everything