Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Perry E. Metzger
On Thu, 07 Nov 2013 20:09:49 +0100 Matthias Neeracher wrote: > Thanks for your detailed explanation. > > On Nov 7, 2013, at 15:07, Joshua Ballanco > wrote: > > I had planed on writing a longer message to the list but, having > > just started a new gig, time is severely lacking. Also, it seems >

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Matthias Neeracher
Thanks for your detailed explanation. On Nov 7, 2013, at 15:07, Joshua Ballanco wrote: > I had planed on writing a longer message to the list but, having just started > a new gig, time is severely lacking. Also, it seems it'll be at least 2-3 > weeks (thank Apple store ship times) before I get

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Perry E. Metzger
On Thu, 07 Nov 2013 09:52:44 -0500 Robert Carl Rice wrote: > Hi David, > > The implementation of Grand Central Dispatch in MacRuby works great > and I converted all of calls to NSTimer to GCD. It probably has > enough functionality to avoid any Kludgy solution, e.g., calling > Unix fork directly

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Robert Carl Rice
Hi David, The implementation of Grand Central Dispatch in MacRuby works great and I converted all of calls to NSTimer to GCD. It probably has enough functionality to avoid any Kludgy solution, e.g., calling Unix fork directly or AppleScript. Bob Rice On Nov 7, 2013, at 4:20 AM, david kramf wr

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Joshua Ballanco
Hey Rob, I had planed on writing a longer message to the list but, having just started a new gig, time is severely lacking. Also, it seems it'll be at least 2-3 weeks (thank Apple store ship times) before I get a chance to test anything on Mavericks. Here's what I can tell you so far: * MacRub

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread Perry E. Metzger
On Thu, 07 Nov 2013 11:20:13 +0200 david kramf wrote: > I have a project that written in MacRuby but I can split the code > to logic in Ruby and the UI which I can translate to Objective-C . > So My problem is how to run a pure Ruby from my app. I was thinking > of opening an AppleScript terminal

Re: [MacRuby-devel] Standard Ruby for desktop apps?

2013-11-07 Thread Kevin Walzer
On 11/6/13, 10:17 PM, Robert Carl Rice wrote: I don't think many app developers would want to publish their source code through the iTunes store. Another developer would quickly "swallow it up" into a larger application. I wouldn't be interested in any solution that doesn't compile the code.

Re: [MacRuby-devel] Standard Ruby for desktop apps?

2013-11-07 Thread Perry E. Metzger
On Wed, 06 Nov 2013 22:17:24 -0500 Robert Carl Rice wrote: > I don't think many app developers would want to publish their > source code through the iTunes store. Another developer would > quickly "swallow it up" into a larger application. I wouldn't be > interested in any solution that doesn't co

Re: [MacRuby-devel] MacRuby on Mavericks

2013-11-07 Thread david kramf
Hi Guys, I have a project that written in MacRuby but I can split the code to logic in Ruby and the UI which I can translate to Objective-C . So My problem is how to run a pure Ruby from my app. I was thinking of opening an AppleScript terminal and running IRB there . Has anyone tried it? Do