[MacRuby-devel] [ANN] MacBacon 1.3

2011-03-12 Thread Eloy Duran
Hi, I’ve just released MacBacon 1.3. This release adds more NSRunLoop helpers: * you can now make the context a delegate and have spec execution pause until a delegate method has been called * pause spec execution until a KVO observable property of an object changes I forgot to email the list whe

Re: [MacRuby-devel] Help test a new MacRuby app

2011-03-12 Thread Eloy Duran
The app crashes on startup on my macbook: core 2 duo, osx 10.6.6 12-03-11 18:18:02 Redwood[22169] starting Redwood 12-03-11 18:18:04 [0x0-0x475475].com.highgroove.redwood[22169] dlopen(/System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFounda

[MacRuby-devel] "framework" method gotcha

2011-03-12 Thread Christian Niles
Hey All, I just spent a few hours banging my head against a gotcha with the `framework` method -- if there happens to be a file or directory in the current directory with the name of the framework, the method fails: $ touch Cocoa $ macruby -e 'framework "Cocoa"' -e:1:in `': framework at path `C

[MacRuby-devel] Proposal: splitting macrubyc UI from logic

2011-03-12 Thread Mark Rada
Hi, I have completed a proof of concept patch for MacRuby where I have split the UI of macrubyc from the underlying logic so that tools like macruby_deploy can make use of the compiler without having to spawn a new macruby process for each file that needs to be compiled. This should also be ben

Re: [MacRuby-devel] "framework" method gotcha

2011-03-12 Thread Matt Aimonetti
Hi Christian, As long as performance isn't affected, I think that making #framework smarter shouldn't be a problem. - Matt Sent from my iPhone On Mar 12, 2011, at 17:19, Christian Niles wrote: > Hey All, > > I just spent a few hours banging my head against a gotcha with the > `framework`

Re: [MacRuby-devel] "framework" method gotcha

2011-03-12 Thread Christian Niles
Cool. I've compiled MacRuby from source and discovered a test for the 'framework' method in test-macruby/cases/framework_test.rb. What's the best way to run the tests in this directory? It doesn't seem to be run by `rake spec` and I couldn't find another task that seemed to run these. On Mar 1