Re: [MacRuby-devel] Threading Problems

2010-05-18 Thread Caius Durling
efab has my crash report. I'm running 0.6 stable installed from the .pkg. HTH, C --- Caius Durling ca...@caius.name +44 (0) 7960 268 100 http://caius.name/ ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosf

Re: [MacRuby-devel] Presenting on MacRuby this evening

2010-07-14 Thread Caius Durling
On 13 Jul 2010, at 19:23, Michael Jackson wrote: > I'll be giving a presentation on MacRuby tonight at the Utah Ruby > User's Group. Must be the week for it, I'm presenting on MacRuby tomorrow (well, tonight) at NWRUG in Manchester, UK. :) http://nwrug.org/events/july10/

Re: [MacRuby-devel] Could we have…

2010-08-08 Thread Caius Durling
sy for people to follow only one of the lists if they wish. C --- Caius Durling ca...@caius.name +44 (0) 7960 268 100 http://caius.name/ ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/m

Re: [MacRuby-devel] super method

2010-09-08 Thread Caius Durling
hy to the superclass and check there for the method there, calling it if it's found. So a method that just contains 'super' [although not 'super()' as that calls super with no arguments] is doing the same job as the method not being defined in the subclass. C --- Cai

Re: [MacRuby-devel] backtrace in cocoa callbacks ...

2010-09-17 Thread Caius Durling
idea on the MacRuby roadmap? MacRuby is already using LLVM, from the homepage: "MacRuby is an implementation of Ruby 1.9 directly on top of Mac OS X core technologies such as the Objective-C runtime and garbage collector, the LLVM compiler infrastructure and the Foundation and ICU framewor

Re: [MacRuby-devel] Method calls with variable unnamed arguments after the pseudo-hash part of the selector

2010-10-10 Thread Caius Durling
the interesting part here is the ", ..." at the end. It takes variable > arguments at the end that work as formatting arguments for informativeText, > eg. sprintf(informativeText, ...). Does it work if you pass an array in as the last argument? That's my assumption u